/* ===== DESIGN TOKENS ===== */
:root {
  --orange: #F5A623;
  --orange-deep: #E0911A;
  --yellow: #FFD93D;
  --brown: #5C3A1E;
  --cream: #FBF6E5;
  --cream-deep: #F5F0DD;
  --ink: #2C2C2C;
  --ink-soft: #5A5A5A;
  --white: #FFFFFF;

  --max-width: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 4px 12px rgba(92, 58, 30, .06);
  --shadow-md: 0 4px 16px rgba(92, 58, 30, .10), 0 12px 40px rgba(92, 58, 30, .08);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--gutter);
  background: rgba(251, 246, 229, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(92, 58, 30, 0.06);
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { width: 56px; height: 56px; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-weight: 500;
}
.nav__menu a {
  position: relative;
  color: var(--ink);
  padding: 0.5rem 0;
  transition: color .2s ease;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__menu a:hover { color: var(--orange-deep); }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--orange-deep); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: calc(0.95rem - 2px) calc(1.6rem - 2px);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--orange-deep);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { box-shadow: var(--shadow-md); color: var(--orange-deep); }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 217, 61, 0.35), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(245, 166, 35, 0.18), transparent 45%),
    var(--cream);
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(3rem, 7vw, 6rem);
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(245, 166, 35, 0.12);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__title-accent {
  color: var(--orange-deep);
  font-style: italic;
  font-weight: 500;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo {
  width: min(100%, 420px);
  filter: drop-shadow(0 12px 30px rgba(245, 166, 35, 0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--gutter);
}
.section--cream { background: var(--cream); }
.section--orange {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A1C 100%);
  color: var(--white);
}
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section__inner--center {
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.85rem;
}
.section__eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2.5rem;
  max-width: 720px;
}
.section__title--light {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

/* ===== MISSION ===== */
.mission__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.mission__text p {
  font-size: 1.075rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.mission__text strong { color: var(--ink); font-weight: 600; }
.values {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.1rem;
  align-items: start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--orange-deep);
  grid-row: span 2;
}
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.975rem;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.step {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(92, 58, 30, 0.08);
  transition: transform .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-3px); border-color: var(--orange); }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.step p {
  color: var(--ink-soft);
  font-size: 1rem;
}
.step a {
  color: var(--orange-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(224, 145, 26, 0.4);
  transition: border-color .2s ease;
}
.step a:hover { border-color: var(--orange-deep); }

.cta-row {
  display: flex;
  justify-content: center;
}

/* ===== DON ===== */
.don__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* ===== CONTACT ===== */
.contact__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.35rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--orange-deep);
  margin-bottom: 0.75rem;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
}
.contact__location {
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem var(--gutter);
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__logo {
  width: 56px; height: 56px;
  filter: brightness(1.05);
}
.footer__text {
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer__links a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo { width: min(70%, 280px); }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__lead { margin-left: auto; margin-right: auto; }

  .mission__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 1rem var(--gutter) 1.25rem;
    border-bottom: 1px solid rgba(92, 58, 30, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav__menu a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(92, 58, 30, 0.06);
  }
  .nav__menu a:last-child { border-bottom: none; }
  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__burger { display: flex; }

  .footer__inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero__cta { width: 100%; }
}
