/* =========================================================================
   Nourish with Priyanjali — styles.css
   Pure CSS, mobile-first, designed for Lighthouse 95+.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --sage: #7A9B76;
  --sage-dark: #5F7F5C;
  --forest: #2C3E2E;
  --cream: #FAF6F0;
  --cream-2: #F2ECE1;
  --terracotta: #C87D5A;
  --terracotta-dark: #B0684A;
  --ink: #1F2A20;
  --ink-2: #495249;
  --muted: #8A8F88;
  --line: #E6DFD1;
  --white: #FFFFFF;

  /* Typography */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-xs:    0.8125rem;
  --fs-sm:    0.9375rem;
  --fs-base:  1rem;
  --fs-md:    1.125rem;
  --fs-lg:    clamp(1.125rem, 0.9rem + 0.8vw, 1.375rem);
  --fs-h3:    clamp(1.25rem, 1rem + 1vw, 1.625rem);
  --fs-h2:    clamp(1.875rem, 1.4rem + 2.2vw, 3rem);
  --fs-h1:    clamp(2.25rem, 1.6rem + 3.6vw, 4.25rem);

  /* Spacing / layout */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(44, 62, 46, 0.06), 0 2px 6px rgba(44, 62, 46, 0.04);
  --shadow:    0 6px 18px rgba(44, 62, 46, 0.08), 0 2px 4px rgba(44, 62, 46, 0.04);
  --shadow-lg: 0 24px 48px rgba(44, 62, 46, 0.14), 0 6px 12px rgba(44, 62, 46, 0.06);

  --container: 1200px;
  --container-narrow: 820px;
  --nav-h: 72px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--forest);
}

/* Accessibility: honour reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus ring — visible everywhere without harming hover state */
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: var(--container-narrow); }

.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

.muted { color: var(--muted); font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 0.75rem;
}
.section-lead {
  color: var(--ink-2);
  font-size: var(--fs-md);
  max-width: 52ch;
}
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-heading .section-lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn--cta {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(200, 125, 90, 0.28);
}
.btn--cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(200, 125, 90, 0.32); }
.btn--cta:active { transform: translateY(0); }
.btn--lg  { padding: 1rem 1.75rem; font-size: var(--fs-md); }
.btn--block { width: 100%; }
.btn--on-sage { background: var(--cream); color: var(--forest); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.btn--on-sage:hover { background: var(--white); }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--forest);
}
.logo__mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  font-size: 1.1rem;
}
.logo__text { font-size: 1.0625rem; letter-spacing: -0.01em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
}
.nav__links {
  display: none;
  gap: 1.75rem;
}
.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--forest); }

.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--forest);
  padding: 0.5rem 0;
}

@media (min-width: 880px) {
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(122, 155, 118, 0.18), transparent 55%),
    radial-gradient(ellipse at 0% 80%, rgba(200, 125, 90, 0.12), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}
.hero__sub {
  color: var(--ink-2);
  font-size: var(--fs-lg);
  max-width: 56ch;
  margin-bottom: 1.75rem;
}
.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.hero__secondary {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.hero__secondary:hover { border-bottom-color: var(--forest); }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.hero__trust span { color: var(--sage-dark); font-weight: 700; margin-right: 0.25rem; }

/* Hero portrait — circular, warm-glow halo, floating credential badge */
.hero__portrait {
  position: relative;
  margin: 0 auto;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero__portrait-halo {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 125, 90, 0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(122, 155, 118, 0.28), transparent 60%);
  filter: blur(36px);
  z-index: -1;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 8px solid var(--cream);
  box-shadow:
    0 30px 60px rgba(44, 62, 46, 0.18),
    0 0 0 1px var(--line);
  background: var(--cream-2);
  filter: saturate(1.06) contrast(1.03) brightness(1.02);
}
.hero__badge {
  position: absolute;
  right: -0.25rem;
  bottom: 0.75rem;
  background: var(--white);
  padding: 0.75rem 1.125rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin: 0;
  z-index: 1;
}
.hero__badge strong {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--forest);
  font-weight: 600;
}
.hero__badge span {
  font-size: var(--fs-xs);
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

/* Hero social row */
.hero__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero__social-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.hero__social-icon {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero__social-icon svg { width: 18px; height: 18px; }
.hero__social-icon:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
  transform: translateY(-2px);
}
.hero__social-icon--wa:hover { background: #25D366; border-color: #25D366; }
.hero__social-icon--li:hover { background: #0A66C2; border-color: #0A66C2; }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; }
  .hero__badge { right: -1.25rem; }
}

/* ---------- About (single-column, text-first) ---------- */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.about__solo .section-heading { text-align: center; margin-bottom: 2.5rem; }
.about__copy { max-width: 68ch; margin: 0 auto; }

.about__bio {
  color: var(--ink-2);
  font-size: var(--fs-md);
  margin: 0 0 1.25rem;
}
.about__subtitle {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 2rem 0 0.875rem;
}

/* Credential pills — badge style with sage check dot */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0 0 1.75rem;
  padding: 0;
}
.pills li {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--forest);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.pills--badge li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.6rem;
}
.pills--badge li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF6F0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/70% no-repeat,
    var(--sage);
  flex-shrink: 0;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
}

.about__quote {
  border-left: 3px solid var(--sage);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 1.5rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--forest);
}

/* ---------- WhatsApp floating pill ---------- */
.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.875rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  box-shadow:
    0 12px 28px rgba(37, 211, 102, 0.36),
    0 2px 6px rgba(37, 211, 102, 0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(37, 211, 102, 0.42),
    0 4px 10px rgba(37, 211, 102, 0.26);
}
.wa-fab:active { transform: translateY(0); }
.wa-fab__icon {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
}
.wa-fab__icon svg { width: 22px; height: 22px; }
.wa-fab__text { display: none; padding-right: 0.25rem; }

@media (min-width: 640px) {
  .wa-fab { right: 1.5rem; bottom: 1.5rem; padding: 0.875rem 1.25rem 0.875rem 1rem; }
  .wa-fab__text { display: inline; }
}

/* Hide FAB while the booking modal is open (body lock state) */
body.is-locked .wa-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* ---------- Services ---------- */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.services__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .services__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(122,155,118, 0.4); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(122, 155, 118, 0.14);
  color: var(--sage-dark);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--fs-h3); }
.card p { color: var(--ink-2); font-size: var(--fs-sm); flex: 1; }
.card__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--terracotta);
  padding: 0;
  text-align: left;
  align-self: flex-start;
  transition: gap 0.2s var(--ease);
}
.card__link:hover { color: var(--terracotta-dark); }
.card__link span { transition: transform 0.2s var(--ease); display: inline-block; }
.card__link:hover span { transform: translateX(4px); }

/* ---------- Approach / Steps ---------- */
.approach {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 620px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(122,155,118, 0.35);
}
.step h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.step p { color: var(--ink-2); font-size: var(--fs-sm); }

/* ---------- Stats ---------- */
.stats {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--forest);
  color: var(--cream);
}
.stats__grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stats__grid li { display: flex; flex-direction: column; gap: 0.25rem; }
.stats__grid strong {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.stats__grid span {
  font-size: var(--fs-sm);
  color: rgba(250, 246, 240, 0.82);
  letter-spacing: 0.04em;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.testimonials__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__stars {
  color: var(--terracotta);
  letter-spacing: 0.15em;
  font-size: 1rem;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--forest);
  line-height: 1.45;
  flex: 1;
}
.testimonial__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.testimonial__meta strong { font-weight: 600; color: var(--forest); }
.tag {
  font-size: var(--fs-xs);
  color: var(--sage-dark);
  background: rgba(122, 155, 118, 0.14);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 8vw, 7rem) 0; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease);
}
.faq__item[open] { border-color: var(--sage); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--forest);
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }

.faq__body {
  padding: 0 0 1.25rem;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  max-width: 70ch;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
}
.final-cta__inner {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.14), transparent 55%),
    linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.final-cta h2 {
  color: var(--cream);
  font-size: var(--fs-h2);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.final-cta p {
  color: rgba(250, 246, 240, 0.9);
  font-size: var(--fs-md);
  margin: 0 auto 1.75rem;
  max-width: 46ch;
}
.final-cta small {
  display: block;
  margin-top: 1rem;
  font-size: var(--fs-xs);
  color: rgba(250, 246, 240, 0.75);
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream-2);
  color: var(--ink-2);
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer__brand p { margin-top: 0.75rem; font-size: var(--fs-sm); max-width: 34ch; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.875rem;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a { font-size: var(--fs-sm); transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--forest); }

.footer__contact a[href^="mailto:"] {
  display: inline-block;
  font-size: var(--fs-sm);
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 1rem;
  word-break: break-all;
}
.footer__socials { display: flex; gap: 0.75rem; }
.footer__socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__socials svg { width: 18px; height: 18px; }
.footer__socials a:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fade-in 0.2s var(--ease);
}
.modal__dialog {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: rise-in 0.28s var(--ease);
}
.modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.2s var(--ease);
}
.modal__close:hover { background: rgba(0,0,0,0.05); }
.modal__close svg { width: 20px; height: 20px; }

.modal__title {
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2rem);
  margin: 0.5rem 0 0.5rem;
}
.modal__sub { color: var(--ink-2); font-size: var(--fs-sm); margin-bottom: 1.5rem; }

.modal__form { display: flex; flex-direction: column; gap: 0.875rem; }
.form-row { display: flex; flex-direction: column; gap: 0.375rem; }
.form-row label { font-size: var(--fs-sm); font-weight: 600; color: var(--forest); }
.form-row input, .form-row select, .form-row textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.875rem;
  font-size: var(--fs-base);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,155,118, 0.22);
}
.form-row textarea { resize: vertical; min-height: 72px; }

.modal__small {
  font-size: var(--fs-xs);
  color: var(--muted);
  text-align: center;
  margin-top: 0.25rem;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Lock body scroll when modal open */
body.is-locked { overflow: hidden; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Small-screen polish ---------- */
@media (max-width: 540px) {
  .hero__media-badge { left: 0.75rem; bottom: 0.75rem; padding: 0.625rem 0.875rem; }
  .about__quote { padding-left: 1rem; }
  .final-cta__inner { border-radius: var(--radius); }
}
