/* ============================================================
   Anubha Gulati Sabharwal — Wellness Coaching
   Global design system
   ============================================================ */

:root {
  /* Brand palette */
  --white:        #FFFFFF;
  --mint-white:   #F5F9F6;
  --tint:         #E8F2EB;
  --forest:       #2D5A3D;
  --sage:         #5A8A6A;
  --deep:         #1E3D2A;
  --ink:          #1A1A1A;
  --muted:        #6B7B6E;

  /* Tweakable accent (defaults to sage / forest family) */
  --accent:       var(--sage);
  --accent-deep:  var(--forest);

  /* Type */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Shape */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 10vw, 132px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-radius="sharp"] { --radius: 2px;  --radius-sm: 2px;  --radius-lg: 3px; }
[data-radius="soft"]  { --radius: 14px; --radius-sm: 10px; --radius-lg: 22px; }
[data-radius="round"] { --radius: 26px; --radius-sm: 18px; --radius-lg: 36px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--forest);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

em.accent { font-style: italic; color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.centered { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--deep);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 1.02em 1.7em;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              box-shadow 0.4s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(30,61,42,0.7); }
.btn:hover .arrow { transform: translateX(4px); }

.btn.ghost {
  --btn-bg: transparent;
  --btn-fg: var(--forest);
  border-color: color-mix(in srgb, var(--forest) 26%, transparent);
}
.btn.ghost:hover { background: var(--tint); border-color: var(--forest); transform: translateY(-2px); box-shadow: none; }

.btn.on-dark { --btn-bg: #fff; --btn-fg: var(--deep); }
.btn.on-dark:hover { background: var(--tint); color: var(--deep); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--forest);
}
.textlink .arrow { transition: transform 0.35s var(--ease); }
.textlink:hover .arrow { transform: translateX(5px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--white) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: color-mix(in srgb, var(--forest) 12%, transparent);
  background: color-mix(in srgb, var(--white) 94%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 450;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--forest); display: block; }
}

/* ---------- Hero shared ---------- */
.hero { position: relative; overflow: clip; }
body[data-hero="a"] .hero-b { display: none; }
body[data-hero="b"] .hero-a { display: none; }

/* Hero A — editorial split */
.hero-a { padding-block: clamp(48px, 7vw, 96px) var(--section-y); }
.hero-a .grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero-a h1 {
  font-size: clamp(2.5rem, 4.7vw, 4rem);
  margin-block: 22px 0;
  text-wrap: balance;
  max-width: 13ch;
}
.hero-a .lead { margin-top: 26px; }
.hero-a .hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-a .hero-note {
  margin-top: 30px; font-size: 0.86rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero-a .hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero-media { position: relative; }
.hero-media image-slot, .hero-media .slot-img { width: 100%; height: auto; aspect-ratio: 5 / 5.2; background: var(--tint); border-radius: var(--radius-lg); }
image-slot { background: var(--tint); }
.slot-img { display: block; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: -26px; bottom: 30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 24px 60px -28px rgba(30,61,42,0.5);
  max-width: 220px;
}
.hero-badge .num { font-family: var(--font-head); font-size: 1.9rem; color: var(--forest); line-height: 1; }
.hero-badge .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }

/* Hero B — centered immersive */
.hero-b { position: relative; min-height: min(92vh, 880px); display: grid; }
.hero-b image-slot, .hero-b .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-b .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,40,28,0.34) 0%, rgba(20,40,28,0.18) 38%, rgba(20,40,28,0.66) 100%);
  z-index: 1;
}
.hero-b .hero-b-content {
  position: relative; z-index: 2;
  align-self: center;
  text-align: center;
  padding-block: clamp(120px, 18vh, 220px);
  max-width: 860px; margin-inline: auto;
}
.hero-b .eyebrow { color: #dfeee4; }
.hero-b h1 { color: #fff; font-size: clamp(2.7rem, 6vw, 5rem); text-wrap: balance; max-width: 16ch; margin-inline: auto; }
.hero-b em.accent { color: #cfe6d6; }
.hero-b .lead { color: rgba(255,255,255,0.86); margin: 26px auto 0; text-align: center; }
.hero-b .hero-actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust {
  border-block: 1px solid var(--tint);
  background: var(--mint-white);
}
.trust .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trust .item {
  padding: clamp(26px, 3.4vw, 44px) clamp(20px, 2.6vw, 38px);
  border-left: 1px solid var(--tint);
  display: flex; flex-direction: column; gap: 8px;
}
.trust .item:first-child { border-left: 0; }
.trust .item .k {
  font-family: var(--font-head); font-size: 1.32rem; color: var(--forest);
}
.trust .item .v { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section-y); }
.section.tinted { background: var(--mint-white); }
.section.tint-strong { background: var(--tint); }
.section-head { max-width: 720px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-top: 18px;
}
.section-head .lead { margin-top: 20px; }
.section-head.centered .lead { margin-inline: auto; }

/* ---------- Who this is for ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 5vw, 64px);
}
.who-card {
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.who-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -32px rgba(30,61,42,0.45); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.who-card .idx {
  font-family: var(--font-head); font-size: 1.1rem; color: var(--accent);
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint);
  margin-bottom: 22px;
}
.who-card h3 { font-size: 1.32rem; }
.who-card p { margin-top: 12px; font-size: 0.95rem; color: var(--muted); }

/* ---------- Services preview ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius-lg);
  padding: 38px 34px 34px;
  display: flex; flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(30,61,42,0.5); }
.svc-card:hover::after { transform: scaleY(1); }
.svc-card .num {
  font-family: var(--font-head); font-size: 2.4rem; color: color-mix(in srgb, var(--accent) 75%, var(--forest));
  line-height: 1;
}
.svc-card h3 { font-size: 1.6rem; margin-top: 18px; }
.svc-card p { margin-top: 14px; color: var(--muted); font-size: 0.97rem; flex: 1; }
.svc-card .textlink { margin-top: 22px; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: clamp(44px, 5vw, 70px);
  position: relative;
}
.step { position: relative; }
.step .n {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  color: var(--forest);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--forest) 30%, transparent);
  display: grid; place-items: center;
  background: var(--white);
  position: relative; z-index: 2;
}
.step::before {
  content: "";
  position: absolute; top: 27px; left: 54px; right: -28px; height: 1px;
  background: color-mix(in srgb, var(--forest) 22%, transparent);
  z-index: 1;
}
.step:last-child::before { display: none; }
.step h3 { font-size: 1.22rem; margin-top: 24px; }
.step p { margin-top: 10px; font-size: 0.93rem; color: var(--muted); }

/* ---------- Testimonials (video + photo) ---------- */
.testi {
  background: var(--deep);
  color: #fff;
}
.testi .container { padding-block: clamp(48px, 6vw, 80px); }
.testi .section-head h2 { color: #fff; }
.testi .section-head .eyebrow { color: #cfe6d6; }
.testi .section-head .lead { color: rgba(255,255,255,0.78); }

.testi-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  margin-top: clamp(40px, 5vw, 60px);
  align-items: stretch;
}

/* Solo featured video — centered portrait */
.testi-feature-solo {
  grid-template-columns: 1fr;
  justify-items: center;
}
.testi-feature-solo .video-card { width: 100%; max-width: 360px; }
.testi-feature-solo .video-poster { aspect-ratio: 9 / 16; }
.testi-feature-solo .video-card figcaption { text-align: center; }

/* Split: heading + quote left, portrait video right */
.testi-split {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(24px, 3vw, 40px);
}
.testi-split-text { text-align: left; }
.testi-split-text .section-head { text-align: left; max-width: none; margin: 0 0 28px; }
.testi-split-text .quote-card { margin: 0; }
.testi-split-text .quote-card blockquote {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.5; letter-spacing: 0; text-wrap: pretty;
}
.testi-split .video-poster { aspect-ratio: 9 / 16; }
@media (max-width: 860px) {
  .testi-split { grid-template-columns: 1fr; }
  .testi-split .video-card { max-width: 360px; }
}

/* Featured portrait video left + quote right */
.testi-feature-portrait {
  grid-template-columns: 0.62fr 1fr;
  align-items: center;
}
.testi-feature-portrait .video-poster { aspect-ratio: 9 / 16; }

/* Video card */
.video-card { margin: 0; }
.video-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #15281c;
}
.video-poster image-slot,
.video-poster .slot-img,
.video-poster .testi-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-poster .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,0.92);
  color: var(--forest);
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  z-index: 2;
}
.video-poster .play svg { width: 30px; height: 30px; margin-left: 3px; }
.video-poster .play:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.video-poster .play::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  animation: pulse 2.6s var(--ease) infinite;
}
@media (prefers-reduced-motion: reduce) { .video-poster .play::after { animation: none; } }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.7; } 70% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }
.video-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(20,40,28,0.7); backdrop-filter: blur(6px);
  color: #eaf4ec; font-size: 0.78rem; letter-spacing: 0.04em;
  padding: 7px 12px; border-radius: 999px;
}
.video-card figcaption,
.photo-card figcaption,
.quote-card figcaption {
  margin-top: 18px; font-family: var(--font-body);
  font-size: 0.9rem; color: #b8ccbe;
}
.video-card figcaption strong,
.photo-card figcaption strong,
.quote-card figcaption strong { color: #fff; font-weight: 600; }

/* Featured quote card */
.quote-card {
  margin: 0;
  background: color-mix(in srgb, #fff 6%, transparent);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 3.4vw, 46px);
  display: flex; flex-direction: column; justify-content: center;
}
.quote-card .mark { font-family: var(--font-head); font-size: 3.4rem; line-height: 0.5; color: var(--accent); height: 26px; display: block; }
.quote-card blockquote {
  font-family: var(--font-head); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.34; letter-spacing: -0.01em;
  margin: 26px 0 0; color: #f3f8f4;
}

/* Photo story cards */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 24px;
}
.photo-card {
  margin: 0;
  background: color-mix(in srgb, #fff 5%, transparent);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 16px 16px 26px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.photo-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.photo-card image-slot { width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: var(--radius); display: block; background: #15281c; }
.photo-card blockquote {
  margin: 20px 4px 0; font-family: var(--font-head); font-style: italic;
  font-size: 1.08rem; line-height: 1.45; color: #eaf4ec;
}
.photo-card figcaption { margin-left: 4px; }

.testi-foot { margin-top: clamp(36px, 4vw, 52px); }
.testi-foot .textlink { color: #fff; }
.testi-foot .textlink:hover { color: #cfe6d6; }

@media (max-width: 980px) {
  .testi-feature { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA band ---------- */
.cta-band { background: var(--tint); }
.cta-band .inner {
  display: grid; grid-template-columns: 1.2fr auto; gap: 40px;
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
}
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.cta-band .lead { margin-top: 16px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--white); border-top: 1px solid var(--tint); }
.footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-block: clamp(56px, 7vw, 84px) 44px;
}
.footer .brand { font-size: 1.5rem; }
.footer .tagline { margin-top: 18px; color: var(--muted); max-width: 34ch; font-size: 0.98rem; }
.footer .serving { margin-top: 22px; font-size: 0.84rem; letter-spacing: 0.04em; color: var(--forest); font-weight: 500; }
.footer h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.footer ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.95rem; color: var(--ink); transition: color 0.3s var(--ease); }
.footer ul a:hover { color: var(--forest); }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--tint);
  display: grid; place-items: center; color: var(--forest);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.footer .socials a:hover { background: var(--tint); transform: translateY(-3px); border-color: var(--accent); }
.footer .socials svg { width: 18px; height: 18px; }
.footer .bottom {
  border-top: 1px solid var(--tint);
  padding-block: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: var(--muted);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--deep); color: #fff;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(30,61,42,0.7);
  font-size: 0.9rem; font-weight: 500;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); background: var(--forest); }
.wa-float .ic { width: 26px; height: 26px; display: grid; place-items: center; }
.wa-float .ic svg { width: 22px; height: 22px; }
.wa-float .lbl-collapse { display: inline; }
@media (max-width: 560px) {
  .wa-float { padding: 14px; }
  .wa-float .lbl-collapse { display: none; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.snap { transition: none !important; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
[data-motion="off"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-a .grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 520px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .step::before { display: none; }
  .trust .grid { grid-template-columns: repeat(2, 1fr); }
  .trust .item:nth-child(-n+2) { border-bottom: 1px solid var(--tint); }
  .trust .item:nth-child(odd) { border-left: 0; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr 1fr; }
  .footer .brandcol { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .who-grid { grid-template-columns: 1fr; }
  .trust .grid { grid-template-columns: 1fr; }
  .trust .item { border-left: 0 !important; border-top: 1px solid var(--tint); }
  .trust .item:first-child { border-top: 0; }
  .footer .top { grid-template-columns: 1fr; }
}

/* ============================================================
   Consultation modal + form
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(20,40,28,0.5);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 600px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -30px rgba(20,40,28,0.6);
  transform: translateY(20px) scale(0.985);
  transition: transform 0.5s var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal-head {
  position: relative;
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 40px) 0;
}
.modal-head .eyebrow { color: var(--accent); }
.modal-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 14px; }
.modal-head p { margin-top: 12px; color: var(--muted); font-size: 0.97rem; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--tint); background: var(--white);
  cursor: pointer; color: var(--forest);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal-close:hover { background: var(--tint); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

.consult-form {
  padding: clamp(22px, 3vw, 32px) clamp(28px, 4vw, 40px) clamp(28px, 4vw, 40px);
  display: grid; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--forest);
}
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--forest) 18%, transparent);
  border-radius: var(--radius-sm);
  background: var(--mint-white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232D5A3D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.consult-form .btn { justify-content: center; width: 100%; margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; line-height: 1.5; }
.form-note a { color: var(--forest); text-decoration: underline; }

.form-success { display: none; padding: clamp(34px, 5vw, 52px); text-align: center; }
.consult-form.sent { display: none; }
.consult-form.sent + .form-success { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--tint); color: var(--forest);
  display: grid; place-items: center; margin: 0 auto 22px;
}
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.6rem; }
.form-success p { margin-top: 12px; color: var(--muted); }
.form-success .actions { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) {
  .field.row2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Services page
   ============================================================ */
.page-header { padding-block: clamp(56px, 8vw, 104px) clamp(40px, 5vw, 64px); }
.page-header .inner { max-width: 760px; }
.page-header h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); margin-top: 20px; text-wrap: balance; }
.page-header .lead { margin-top: 24px; max-width: 56ch; }

.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
.feature + .feature { margin-top: clamp(72px, 9vw, 120px); }
.feature .media image-slot, .feature .media .slot-img {
  width: 100%; height: auto; aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg); background: var(--tint); display: block;
}
.feature.flip .media { order: 2; }
.feature .kicker { font-family: var(--font-head); font-size: 3rem; color: color-mix(in srgb, var(--accent) 70%, var(--forest)); line-height: 1; }
.feature h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-top: 14px; }
.feature .lead { margin-top: 20px; }
.feature .incl {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; gap: 13px;
}
.feature .incl li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.98rem; color: var(--ink);
}
.feature .incl svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Ways to work together */
.ways-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: clamp(40px, 5vw, 60px);
}
.way-card {
  background: var(--white); border: 1px solid var(--tint);
  border-radius: var(--radius-lg); padding: clamp(30px, 3.4vw, 44px);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.way-card.feature-card { background: var(--forest); border-color: var(--forest); color: #fff; }
.way-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(30,61,42,0.5); }
.way-card .tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: var(--tint); color: var(--forest); margin-bottom: 22px;
}
.way-card.feature-card .tag { background: color-mix(in srgb, #fff 18%, transparent); color: #fff; }
.way-card h3 { font-size: 1.7rem; }
.way-card.feature-card h3 { color: #fff; }
.way-card .desc { margin-top: 14px; color: var(--muted); font-size: 0.98rem; }
.way-card.feature-card .desc { color: rgba(255,255,255,0.82); }
.way-card ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.way-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.96rem; }
.way-card li svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.way-card.feature-card li svg { color: #cfe6d6; }
.way-card .btn { margin-top: 30px; }

/* FAQ */
.faq-list { margin-top: clamp(36px, 4vw, 52px); max-width: 820px; }
.faq-item { border-top: 1px solid var(--tint); }
.faq-item:last-child { border-bottom: 1px solid var(--tint); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--forest);
  padding: 26px 48px 26px 0; position: relative;
  display: flex; align-items: center;
}
.faq-q .pm {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; flex-shrink: 0;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--accent);
  transition: transform 0.4s var(--ease);
}
.faq-q .pm::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .pm::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq-a .inner { padding: 0 48px 26px 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature .media { order: -1 !important; max-width: 560px; }
  .ways-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Transformations page
   ============================================================ */
/* Before / after pair */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-slot { position: relative; }
.ba-slot image-slot, .ba-slot .slot-img {
  width: 100%; height: auto; aspect-ratio: 3 / 4;
  border-radius: var(--radius); background: var(--tint); display: block;
}
.ba-slot .ba-label {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(20,40,28,0.72); color: #eaf4ec; backdrop-filter: blur(4px);
}
.ba-slot.after .ba-label { background: var(--accent); color: #fff; }

/* Featured transformation story */
.transform-feature {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.transform-feature .story .mark {
  font-family: var(--font-head); font-size: 3.2rem; line-height: 0.5;
  color: var(--accent); display: block; height: 24px;
}
.transform-feature .story .pull {
  font-family: var(--font-head); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.34; color: var(--forest);
  margin: 24px 0 0; text-wrap: pretty;
}
.transform-feature .story .body { margin-top: 22px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.transform-feature .story .body + .body { margin-top: 14px; }
.meta-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.meta-chips .chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: var(--forest); font-weight: 500;
  background: var(--tint); padding: 8px 14px; border-radius: 999px;
}
.transform-feature .story .by { margin-top: 24px; font-size: 0.92rem; color: var(--ink); }
.transform-feature .story .by strong { color: var(--forest); }

/* Transformation cards grid */
.transform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: clamp(44px, 5vw, 64px);
}
.transform-card {
  background: var(--white); border: 1px solid var(--tint);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.transform-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(30,61,42,0.45); }
.transform-card .ba-pair { gap: 4px; }
.transform-card .ba-slot image-slot { border-radius: 0; aspect-ratio: 4 / 5; }
.transform-card .ba-slot .ba-label { left: 9px; top: 9px; padding: 4px 9px; font-size: 0.62rem; }
.transform-card .tc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.transform-card .result {
  font-family: var(--font-head); font-size: 1.3rem; color: var(--forest); line-height: 1.2;
}
.transform-card blockquote {
  margin: 14px 0 0; font-style: italic; color: var(--muted);
  font-size: 0.96rem; line-height: 1.55; flex: 1;
}
.transform-card .tc-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--tint);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.transform-card .tc-foot .name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.transform-card .tc-foot .dur { font-size: 0.8rem; color: var(--accent); font-weight: 500; }

/* Results strip */
.results-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 56px); }
.result-stat { text-align: center; padding: 8px; }
.result-stat .big { font-family: var(--font-head); font-size: clamp(2.6rem, 4vw, 3.6rem); color: var(--forest); line-height: 1; }
.result-stat .cap { margin-top: 12px; color: var(--muted); font-size: 0.95rem; max-width: 26ch; margin-inline: auto; }

@media (max-width: 900px) {
  .transform-feature { grid-template-columns: 1fr; }
  .transform-feature .media { max-width: 520px; }
  .transform-grid { grid-template-columns: 1fr; max-width: 460px; }
  .results-strip { grid-template-columns: 1fr; gap: 32px; }
}
