/* ═══════════════════════════════════════════════════════════
   NATURAL HOLISTIC WELL-BEING — Design System
   Palette: deep forest · sage · warm cream · antique gold
   Type:    Fraunces (display) · Outfit (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --green-950: #12241d;
  --green-900: #1e3a2f;
  --green-800: #27493c;
  --green-600: #3f6b57;
  --sage-400:  #8fae9c;
  --sage-200:  #cfe0d6;
  --cream-50:  #fbf8f1;
  --cream-100: #f6f0e4;
  --cream-200: #ede3cf;
  --gold-500:  #c9a84c;
  --gold-600:  #b3923a;
  --gold-300:  #e3cc8f;
  --ink:       #22302a;
  --ink-soft:  #55655d;
  --white:     #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 12px rgba(18, 36, 29, 0.08);
  --shadow-md: 0 10px 40px rgba(18, 36, 29, 0.12);
  --shadow-lg: 0 24px 70px rgba(18, 36, 29, 0.18);

  --radius: 20px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }

::selection { background: var(--gold-300); color: var(--green-950); }

/* ── Scroll progress bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1001;
}

/* ── Typography helpers ──────────────────────────────────── */
.section-eyebrow {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-600); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ""; width: 34px; height: 1.5px; background: var(--gold-500);
  display: inline-block;
}
.section-eyebrow--light { color: var(--gold-300); justify-content: center; }
.section-eyebrow--light::before { background: var(--gold-300); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 500; line-height: 1.12;
  color: var(--green-950);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic; font-weight: 400; color: var(--green-600);
}
.section--dark .section-title { color: var(--cream-50); }
.section--dark .section-title em { color: var(--gold-300); }

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head .section-eyebrow { justify-content: center; }
.section-head .section-eyebrow::after {
  content: ""; width: 34px; height: 1.5px; background: var(--gold-500);
}
.section-sub { margin-top: 18px; color: var(--ink-soft); font-size: 18px; }
.section--dark .section-sub { color: var(--sage-200); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; letter-spacing: 0.01em;
  position: relative; overflow: hidden; white-space: nowrap;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn--gold  { background: var(--gold-500); color: var(--green-950); box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35); }
.btn--gold:hover { background: var(--gold-600); box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45); }
.btn--green { background: var(--green-900); color: var(--cream-50); box-shadow: 0 6px 24px rgba(30, 58, 47, 0.28); }
.btn--green:hover { background: var(--green-800); box-shadow: 0 12px 32px rgba(30, 58, 47, 0.36); }
.btn--ghost {
  background: transparent; color: var(--cream-50);
  border: 1.5px solid rgba(251, 248, 241, 0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold-300); color: var(--gold-300); }
.btn--lg { padding: 16px 34px; font-size: 16.5px; }
.btn--xl { padding: 19px 44px; font-size: 18px; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav--scrolled {
  padding: 12px 0;
  background: rgba(18, 36, 29, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(18, 36, 29, 0.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark { width: 42px; height: 42px; flex-shrink: 0; transition: transform 0.5s var(--ease-spring); }
.nav__logo:hover .nav__logo-mark { transform: rotate(180deg); }
.logo-circle { fill: var(--gold-500); }
.logo-leaf { fill: var(--green-950); }
.nav__logo-text {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--cream-50); line-height: 1.15; display: flex; flex-direction: column;
}
.nav__logo-text em { font-style: italic; font-weight: 400; color: var(--gold-300); font-size: 15px; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  color: rgba(251, 248, 241, 0.85); font-weight: 500; font-size: 15.5px;
  position: relative; padding: 4px 0;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--gold-300); }
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); transform-origin: left; }
.nav__link--active { color: var(--gold-300); }
.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002;
}
.nav__burger span {
  width: 26px; height: 2.5px; background: var(--cream-50); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
.nav__burger--open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  position: relative; overflow: hidden;
  padding: 140px 0 90px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
  animation: blobDrift 18s ease-in-out infinite alternate;
}
.blob--1 { width: 520px; height: 520px; background: #2f5a47; top: -12%; left: -8%; }
.blob--2 { width: 440px; height: 440px; background: #3c6b53; bottom: -18%; right: -6%; animation-delay: -6s; animation-duration: 22s; }
.blob--3 { width: 300px; height: 300px; background: rgba(201, 168, 76, 0.35); top: 30%; right: 22%; animation-delay: -12s; animation-duration: 26s; }
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, -35px) scale(1.12); }
  100% { transform: translate(-35px, 45px) scale(0.94); }
}

.leaf {
  position: absolute; color: rgba(201, 168, 76, 0.16); width: 60px;
  animation: leafFloat 14s ease-in-out infinite;
}
.leaf--1 { top: 18%; left: 8%; width: 50px; }
.leaf--2 { top: 62%; left: 42%; width: 34px; animation-delay: -5s; animation-duration: 17s; }
.leaf--3 { top: 24%; right: 10%; width: 70px; animation-delay: -9s; animation-duration: 21s; }
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-30px) rotate(14deg); }
}

.hero__grain {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero__grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 60px; align-items: center; position: relative;
}

.hero__eyebrow span {
  display: inline-block;
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-300);
  padding: 8px 18px; border: 1px solid rgba(227, 204, 143, 0.35);
  border-radius: 999px; margin-bottom: 26px;
  background: rgba(201, 168, 76, 0.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 500; line-height: 1.06; color: var(--cream-50);
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero__title-accent {
  font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.hero__sub {
  color: rgba(251, 248, 241, 0.82); font-size: 18.5px; max-width: 520px;
  margin-bottom: 36px; font-weight: 300;
}
.hero__sub strong { color: var(--gold-300); font-weight: 500; }

.hero__actions span { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__trust { margin-top: 52px; }
.hero__trust > .hero__stats {
  display: flex; align-items: stretch;
  padding-top: 30px; max-width: 520px;
  border-top: 1px solid rgba(251, 248, 241, 0.16);
}
.stat { flex: 1; }
.stat + .stat {
  padding-left: 34px; margin-left: 34px;
  border-left: 1px solid rgba(251, 248, 241, 0.14);
}
.stat strong {
  font-family: var(--font-display); font-size: 34px; font-weight: 500;
  color: var(--cream-50); line-height: 1; letter-spacing: -0.01em;
}
.stat strong i { font-style: normal; font-size: 22px; color: var(--gold-300); margin-left: 1px; }
.stat small {
  display: block; margin-top: 8px;
  color: rgba(251, 248, 241, 0.55);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* Hero staggered line reveal */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span, .reveal-line > strong { display: inline-block; }
.hero .reveal-line > span {
  transform: translateY(110%); opacity: 0;
  animation: lineUp 1s var(--ease-out) forwards;
}
.hero .reveal-line:nth-child(1) > span { animation-delay: 0.15s; }
.hero__title .reveal-line:nth-child(1) > span { animation-delay: 0.3s; }
.hero__title .reveal-line:nth-child(2) > span { animation-delay: 0.42s; }
.hero__title .reveal-line:nth-child(3) > span { animation-delay: 0.54s; }
.hero__sub.reveal-line > span { animation-delay: 0.72s; }
.hero__actions.reveal-line > span { animation-delay: 0.88s; }
.hero__trust.reveal-line > span { animation-delay: 1.05s; }
@keyframes lineUp {
  to { transform: translateY(0); opacity: 1; }
}

/* Hero visual */
.hero__visual { position: relative; height: 560px; }
.hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.hero__ring--outer {
  width: 480px; height: 480px; top: 40px; left: 50%;
  transform: translateX(-50%);
  animation: spinSlow 40s linear infinite;
  border-style: dashed;
}
.hero__ring--inner {
  width: 380px; height: 380px; top: 90px; left: 50%;
  transform: translateX(-50%);
  animation: spinSlow 30s linear infinite reverse;
}
@keyframes spinSlow {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

.hero__photo-stack { position: relative; height: 100%; animation: fadeScaleIn 1.2s 0.5s var(--ease-out) both; }
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero__photo {
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid rgba(251, 248, 241, 0.12);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main {
  position: absolute; width: 320px; height: 420px;
  top: 60px; left: 50%; transform: translateX(-58%);
  border-radius: 170px 170px 24px 24px;
  animation: gentleBob 7s ease-in-out infinite;
}
.hero__photo--small {
  position: absolute; width: 190px; height: 190px;
  bottom: 30px; right: 6%;
  border-radius: 50%;
  animation: gentleBob 7s -3.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes gentleBob {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -14px; }
}

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 13px;
  background: rgba(18, 36, 29, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 13px 20px 13px 14px; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: gentleBob 6s ease-in-out infinite;
}
.float-card--1 { top: 96px; left: 0; animation-delay: -2s; }
.float-card--2 { bottom: 96px; left: 4%; animation-delay: -4s; }
.float-card__icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-300);
}
.float-card__icon svg { width: 22px; height: 22px; }
.float-card span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.float-card strong { font-size: 14px; color: var(--cream-50); letter-spacing: 0.01em; }
.float-card small { font-size: 11.5px; color: rgba(207, 224, 214, 0.75); letter-spacing: 0.05em; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(251, 248, 241, 0.4);
  border-radius: 999px; display: flex; justify-content: center; padding-top: 8px;
  opacity: 0; animation: fadeIn 1s 1.6s ease forwards;
}
.hero__scroll-dot {
  width: 4px; height: 8px; border-radius: 4px; background: var(--gold-300);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  background: var(--green-950); overflow: hidden;
  padding: 22px 0; border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.marquee__track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; color: var(--cream-100); white-space: nowrap; opacity: 0.85;
}
.marquee__track i { color: var(--gold-500); font-style: normal; font-size: 13px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll reveal (JS adds .reveal--visible) ────────────── */
.reveal {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ── About ───────────────────────────────────────────────── */
.about { background: var(--cream-50); overflow: hidden; }
.about__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 80px; align-items: center;
}
.about__photo-frame { position: relative; }
.about__photo-frame::before {
  content: ""; position: absolute; inset: -18px 18px 18px -18px;
  border: 1.5px solid var(--gold-500); border-radius: 200px 200px 28px 28px;
  z-index: 0;
}
.about__photo {
  position: relative; z-index: 1; overflow: hidden;
  border-radius: 200px 200px 24px 24px;
  box-shadow: var(--shadow-lg);
}
.about__photo img { width: 100%; height: 540px; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about__photo:hover img { transform: scale(1.05); }
.about__badge {
  position: absolute; z-index: 2; bottom: 34px; right: -26px;
  background: var(--green-900); color: var(--cream-50);
  border-radius: 18px; padding: 20px 24px; max-width: 200px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.about__badge-num, .about__badge-plus {
  font-family: var(--font-display); font-size: 42px; font-weight: 600;
  color: var(--gold-300); line-height: 1;
}
.about__badge small { display: block; margin-top: 6px; color: var(--sage-200); font-size: 13px; line-height: 1.4; }

.about__lead {
  font-family: var(--font-display); font-style: italic;
  font-size: 21px; color: var(--green-600); line-height: 1.5;
  margin: 22px 0 18px;
  padding-left: 20px; border-left: 3px solid var(--gold-500);
}
.about__content > p:not(.about__lead):not(.section-eyebrow) { color: var(--ink-soft); margin-bottom: 26px; }

.about__creds { list-style: none; margin-bottom: 34px; display: grid; gap: 13px; }
.about__creds li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; }
.cred-icon { color: var(--gold-600); font-size: 14px; flex-shrink: 0; }

/* ── Services ────────────────────────────────────────────── */
.section--dark {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(63, 107, 87, 0.5), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(201, 168, 76, 0.12), transparent 55%),
    var(--green-950);
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.service-card {
  position: relative; overflow: hidden;
  background: rgba(251, 248, 241, 0.045);
  border: 1px solid rgba(251, 248, 241, 0.1);
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  transition: transform 0.5s var(--ease-out), background 0.4s ease, border-color 0.4s ease, box-shadow 0.5s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(140deg, rgba(201, 168, 76, 0.14), transparent 45%);
  opacity: 0; transition: opacity 0.5s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(251, 248, 241, 0.07);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(143, 174, 156, 0.14));
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-300);
  transition: transform 0.5s var(--ease-spring), background 0.4s ease;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.35), rgba(143, 174, 156, 0.2));
}
.service-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--cream-50); margin-bottom: 12px; position: relative;
}
.service-card p { color: rgba(207, 224, 214, 0.8); font-size: 15.5px; position: relative; }
.service-card__num {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--font-display); font-size: 15px; font-style: italic;
  color: rgba(201, 168, 76, 0.5);
}

/* ── Process ─────────────────────────────────────────────── */
.process { background: var(--cream-100); overflow: hidden; }
.process__steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative; margin-top: 20px;
}
.process__line {
  position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: var(--cream-200); border-radius: 2px;
}
.process__line-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  border-radius: inherit;
  transition: width 1.6s 0.3s var(--ease-out);
}
.process__line--active .process__line-fill { width: 100%; }

.step { text-align: center; padding: 0 10px; position: relative; }
.step__num {
  width: 88px; height: 88px; margin: 0 auto 26px;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 32px; font-weight: 600;
  background: var(--white); color: var(--green-900);
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-sm), 0 0 0 10px var(--cream-100);
  position: relative; z-index: 1;
  transition: transform 0.5s var(--ease-spring), background 0.4s ease, color 0.4s ease;
}
.step:hover .step__num {
  transform: scale(1.12) rotate(6deg);
  background: var(--green-900); color: var(--gold-300);
}
.step h3 { font-family: var(--font-display); font-size: 23px; font-weight: 500; color: var(--green-950); margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15.5px; max-width: 300px; margin: 0 auto; }
.process__cta { text-align: center; margin-top: 64px; }

/* ── Testimonials ────────────────────────────────────────── */
.section--cream { background: var(--cream-50); }
.slider { max-width: 820px; margin: 0 auto; }
.slider__viewport { overflow: hidden; border-radius: var(--radius); }
.slider__track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}
.t-card {
  flex: 0 0 100%; padding: 54px 58px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  text-align: center;
}
.t-card__stars { color: var(--gold-500); font-size: 19px; letter-spacing: 6px; margin-bottom: 22px; }
.t-card p {
  font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 400; font-style: italic; line-height: 1.5;
  color: var(--green-950); margin-bottom: 28px;
}
.t-card footer strong { display: block; font-size: 17px; color: var(--green-900); font-weight: 600; }
.t-card footer span { font-size: 14px; color: var(--gold-600); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

.slider__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; margin-top: 34px;
}
.slider__btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--sage-400); color: var(--green-900);
  display: grid; place-items: center;
  transition: all 0.35s ease;
}
.slider__btn svg { width: 20px; height: 20px; }
.slider__btn:hover { background: var(--green-900); color: var(--gold-300); border-color: var(--green-900); transform: scale(1.08); }
.slider__dots { display: flex; gap: 9px; }
.slider__dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--sage-200); transition: all 0.4s var(--ease-out);
}
.slider__dot--active { width: 30px; background: var(--gold-500); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--cream-100); }
.faq__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro p:not(.section-eyebrow) { color: var(--ink-soft); margin: 18px 0 28px; }

.faq__list { display: grid; gap: 16px; }
.faq-item {
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--cream-200);
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 18px; padding: 22px 26px; cursor: pointer;
  font-weight: 600; font-size: 17px; color: var(--green-950);
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-600); }
.faq-item__chev {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--sage-400); position: relative;
  transition: transform 0.45s var(--ease-out), background 0.3s ease, border-color 0.3s ease;
}
.faq-item__chev::before, .faq-item__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.8px; background: var(--green-900);
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease-out), background 0.3s ease;
}
.faq-item__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__chev { transform: rotate(135deg); background: var(--green-900); border-color: var(--green-900); }
.faq-item[open] .faq-item__chev::before, .faq-item[open] .faq-item__chev::after { background: var(--gold-300); }
.faq-item__body { padding: 0 26px; overflow: hidden; }
.faq-item__body p { color: var(--ink-soft); padding-bottom: 24px; max-width: 560px; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(150deg, var(--green-950), var(--green-900));
  overflow: hidden; text-align: center;
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.blob--cta1 { width: 460px; height: 460px; background: rgba(201, 168, 76, 0.16); top: -30%; left: -10%; }
.blob--cta2 { width: 400px; height: 400px; background: #3c6b53; bottom: -35%; right: -8%; animation-delay: -8s; }
.cta__inner { position: relative; max-width: 720px; }
.cta h2 {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 56px);
  color: var(--cream-50); font-weight: 500; line-height: 1.15; margin-bottom: 22px;
}
.cta h2 em { font-style: italic; color: var(--gold-300); font-weight: 400; }
.cta__sub { color: rgba(251, 248, 241, 0.8); font-size: 18px; margin-bottom: 38px; }
.cta__note { margin-top: 22px; color: rgba(251, 248, 241, 0.55); font-size: 14px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--green-950); color: var(--sage-200); padding: 70px 0 30px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 248, 241, 0.1);
}
.footer__brand p { margin-top: 18px; font-size: 15px; opacity: 0.8; max-width: 340px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 {
  font-family: var(--font-display); color: var(--gold-300);
  font-size: 17px; font-weight: 500; margin-bottom: 6px;
}
.footer__col a { font-size: 15px; opacity: 0.8; transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease; width: fit-content; }
.footer__col a:hover { opacity: 1; color: var(--gold-300); transform: translateX(4px); }
.footer__small { font-size: 13.5px; opacity: 0.6; margin-top: 4px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 26px;
  font-size: 13.5px; opacity: 0.65;
}
.footer__disclaimer { font-style: italic; }

/* ── Back to top ─────────────────────────────────────────── */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-900); color: var(--gold-300);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.45s var(--ease-spring);
}
.to-top svg { width: 22px; height: 22px; }
.to-top--visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--gold-500); color: var(--green-950); transform: translateY(-4px); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 480px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero { padding-top: 120px; }
  .about__grid { grid-template-columns: 1fr; gap: 70px; }
  .about__visual { max-width: 440px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }

  .nav__links {
    position: fixed; inset: 0;
    background: rgba(18, 36, 29, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center;
    gap: 30px; font-size: 22px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav__links--open { opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 20px; }
  .nav__burger { display: flex; }
  .nav__cta { margin: 10px 0 0; }

  .hero { padding: 110px 0 70px; min-height: auto; }
  .hero__stats { padding-top: 24px; }
  .stat + .stat { padding-left: 18px; margin-left: 18px; }
  .stat strong { font-size: 25px; }
  .stat strong i { font-size: 17px; }
  .stat small { font-size: 9.5px; letter-spacing: 0.1em; margin-top: 6px; }
  .hero__visual { height: 420px; }
  .hero__photo--main { width: 250px; height: 340px; }
  .hero__photo--small { width: 140px; height: 140px; right: 2%; }
  .hero__ring--outer { width: 360px; height: 360px; }
  .hero__ring--inner { width: 280px; height: 280px; }
  .float-card { padding: 10px 14px; }
  .float-card strong { font-size: 13px; }
  .float-card small { font-size: 11px; }
  .hero__scroll { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 48px; }
  .process__line { display: none; }
  .t-card { padding: 40px 26px; }
  .about__badge { right: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero .reveal-line > span { transform: none; opacity: 1; }
}
