/* ============================================================
   Pymander Health — home v2
   Structural clone of the myhealthprac layout system, rebuilt with
   original Pymander copy + brand. Neue Montreal (commercial) is
   substituted with Hanken Grotesque. Swap via --font.
   No decorative hairline rules; no em dashes in copy.
   ============================================================ */

:root {
  --ink: #010101;
  --light: #f1f1f1;
  --grey: #d4d2cf;
  --cream: #e8e5dd;
  --amber: #ffb937;
  --terra: #c66a45;

  --on-dark: #f1f1f1;
  --on-dark-dim: rgba(241, 241, 241, 0.58);
  --on-light: #1f1f1f;
  --on-light-dim: rgba(31, 31, 31, 0.55);

  --font: "Hanken Grotesque", "Neue Montreal", -apple-system, Arial, sans-serif;

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  /* Paint the root to match the top section (the light hero) so the iOS
     status-bar tint and any overscroll never flash a mismatched colour at
     the top of the page. The dark bottom edge is handled on the footer. */
  background: var(--light);
  overscroll-behavior: none;
}
body {
  font-family: var(--font);
  background: var(--light);
  color: var(--on-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior: none;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

/* ── shared type ───────────────────────────────────────────── */
.eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.h2 { font-weight: 500; font-size: clamp(32px, 5vw, 56px); line-height: 1.06; letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; font-weight: 400; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 5px 6px 5px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  background: var(--ink); color: var(--on-dark); border: 1px solid var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn .btn-ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--light); color: var(--ink); transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn:hover .btn-ico { transform: rotate(45deg); }
.btn.is-light { background: var(--light); color: var(--ink); border-color: var(--light); }
.btn.is-light .btn-ico { background: var(--ink); color: var(--light); }
.btn.is-ghost { background: transparent; color: var(--on-dark); border-color: rgba(241,241,241,0.3); }
.btn.is-ghost .btn-ico { background: var(--on-dark); color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center;
  padding: 18px var(--pad); color: var(--ink);
  transition: color 0.4s var(--ease), padding 0.4s var(--ease);
}
/* the inner band starts full width (pills at the edges) and animates
   down to a narrow centred band, swooshing the pills together */
.nav-inner {
  flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; border-radius: 100px; transition: background 0.4s var(--ease), gap 0.4s var(--ease), padding 0.4s var(--ease); }
.nav-brand img { width: 24px; height: 24px; flex: none; }
.nav-cluster { display: flex; align-items: center; gap: 12px; }
.nav-join { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.nav-links { display: flex; align-items: center; gap: 26px; border-radius: 100px; transition: background 0.4s var(--ease), padding 0.4s var(--ease); }
.nav-links a { font-size: 14px; font-weight: 500; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-wordmark { white-space: nowrap; overflow: hidden; max-width: 220px; transition: max-width 0.5s cubic-bezier(0.76,0,0.24,1), opacity 0.35s var(--ease), margin-left 0.5s cubic-bezier(0.76,0,0.24,1); }

/* ── floating-pill mode (centred cluster) ───────────────────── */
.nav.is-stuck { color: var(--ink); padding-block: 14px; }

/* scrolling down squashes the menu into just the logo; scrolling
   back up re-opens it (desktop) */
@media (min-width: 861px) {
  .nav-cluster { overflow: hidden; max-width: 640px; transition: opacity 0.4s var(--ease), max-width 0.55s var(--ease), transform 0.45s var(--ease); transform-origin: left center; }
  .nav.is-collapsed .nav-inner { gap: 0; }
  .nav.is-collapsed .nav-cluster { max-width: 0; opacity: 0; transform: scale(0.86); pointer-events: none; }
}
.nav.is-stuck .nav-brand {
  width: 44px; height: 44px; justify-content: center; align-items: center; gap: 0; flex: none; padding: 0;
  background: rgba(241,241,241,0.74);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nav.is-stuck .nav-brand img { width: 26px; height: 26px; }
.nav.is-stuck .nav-wordmark { max-width: 0; opacity: 0; margin: 0; }
.nav.is-stuck .nav-links {
  padding: 14px 26px;
  background: rgba(241,241,241,0.74);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nav.is-stuck .nav-links a { opacity: 1; color: var(--ink); }
.nav.is-stuck .btn.is-light { background: var(--ink); color: var(--light); border-color: var(--ink); }
.nav.is-stuck .btn.is-light .btn-ico { background: var(--light); color: var(--ink); }

/* hamburger toggle (mobile only) */
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  background: rgba(241,241,241,0.74);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
  .nav.is-collapsed .nav-toggle { opacity: 0; transform: scale(0.8); pointer-events: none; }
  .nav-inner { justify-content: space-between; }
  .nav-cluster {
    position: absolute; top: calc(100% + 10px); right: var(--pad); left: var(--pad);
    flex-direction: column; align-items: stretch; gap: 8px;
    background: rgba(244,242,238,0.92);
    backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-radius: 20px; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.16);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
  }
  .nav.is-open .nav-cluster { opacity: 1; visibility: visible; transform: none; }
  /* the stuck-nav styling also gives .nav-links a blur + 100px radius; inside
     the open mobile dropdown that paints a stray white oval over the links, so
     clear it here too */
  .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; background: none !important; padding: 0 !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; border-radius: 0 !important; }
  .nav-links a { padding: 13px 12px; font-size: 16px; opacity: 1; color: var(--ink); border-radius: 12px; }
  .nav-links a:active { background: rgba(0,0,0,0.05); }
  .nav-join { justify-content: center; margin-top: 4px; }
}

/* ============================================================
   1 · HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  background: var(--light); color: var(--ink); text-align: center; overflow: hidden;
}
/* big moving arc behind the statement: tiles ride the top of a large
   circle and sweep down the sides, framing the text and email box */
.hero-wheel-wrap {
  position: absolute; inset: 0 0 auto 0; height: clamp(420px, 76vh, 660px); z-index: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, #000 80%, transparent 100%);
  mask-composite: intersect;
}
.hero-wheel {
  --D: clamp(1080px, 112vw, 1560px);
  position: absolute; left: 50%; top: clamp(84px, 11vh, 116px); width: var(--D); height: var(--D);
  transform: translateX(-50%) rotate(0deg);
  animation: wheel-spin 64s linear infinite;
}
.hero-head {
  position: absolute; left: 0; right: 0; top: 60%; transform: translateY(-50%); z-index: 3;
  padding-inline: var(--pad);
}
.hero-head h1 { max-width: min(960px, 92vw); margin: 0 auto; font-weight: 500; font-size: clamp(36px, 5.4vw, 76px); line-height: 1.05; letter-spacing: -0.035em; }

/* glassy waitlist field */
.hero-waitlist {
  margin: clamp(22px, 3vh, 38px) auto 0;
  display: flex; align-items: center; gap: 10px;
  max-width: 480px; width: 100%;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px; padding: 8px 8px 8px 28px;
  box-shadow: 0 20px 50px rgba(80,50,35,0.14);
}
.hero-waitlist input {
  flex: 1; min-width: 0; border: none; background: transparent; outline: none;
  font-family: var(--font); font-size: 15.5px; color: var(--ink); padding: 13px 0;
}
.hero-waitlist input::placeholder { color: var(--on-light-dim); }
.hero-waitlist button {
  flex: none; display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 16px 13px 26px; border-radius: 100px;
  background: var(--ink); color: var(--light); font-size: 14.5px; font-weight: 600;
  transition: transform 0.3s var(--ease);
}
.hero-waitlist button .btn-ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--light); color: var(--ink); transition: transform 0.4s var(--ease); }
.hero-waitlist button:hover { transform: translateY(-1px); }
.hero-waitlist button:hover .btn-ico { transform: rotate(45deg); }
.hero-msg { margin-top: 12px; font-size: 13px; color: var(--on-light-dim); min-height: 16px; }

/* On phones the hero tiles are made smaller and the arc spins much faster
   so the top of the page feels light and lively rather than heavy. */
@media (max-width: 600px) {
  .hero-wheel { --D: clamp(720px, 200vw, 980px); top: clamp(64px, 9vh, 96px); animation-duration: 28s; }
  /* the counter-rotation MUST match the wheel speed, otherwise the tiles
     slowly turn onto their sides as they ride the arc */
  .hero-wheel .wheel-spin { animation-duration: 28s; }
  .hero-wheel .wheel-tile { --tile: clamp(78px, 22vw, 96px); }
}

/* ============================================================
   2 · SERVICES — everything, one system (grey, horizontal scroll)
   ============================================================ */
.services { background: var(--light); padding-block: clamp(80px, 12vw, 150px); }
.services-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 70px); align-items: end; margin-bottom: clamp(40px, 6vw, 64px); }
.services-head h2 { max-width: 16ch; }
.services-head .lead { color: var(--on-light-dim); }
.svc-marquee { overflow: hidden; }
.svc-row { display: flex; gap: 18px; width: max-content; padding-inline: 9px; animation: svc-scroll 40s linear infinite; }
/* Pause on hover only on devices that truly hover (desktop). On touch
   devices a tap registers as :hover and would freeze the marquee, so the
   cards must keep scrolling no matter what the user touches. */
@media (hover: hover) and (pointer: fine) {
  .svc-marquee:hover .svc-row { animation-play-state: paused; }
}
.svc {
  flex: 0 0 340px; position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; color: #fff; display: flex; align-items: flex-end; cursor: pointer;
}
.svc-media { position: absolute; inset: 0; z-index: 0; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc:hover .svc-media img { transform: scale(1.04); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,10,8,0) 35%, rgba(15,10,8,0.78) 100%); }
.svc-body { position: relative; z-index: 2; padding: 24px; }
.svc-body strong { display: block; font-size: 21px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.svc-body span { font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,0.82); }
.svc-hint {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 8px 7px 13px; border-radius: 100px;
  background: rgba(16,12,9,0.6); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 600; color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: background 0.25s var(--ease);
}
.svc:hover .svc-hint { background: rgba(16,12,9,0.78); }
.svc-hint-plus { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #fff; color: var(--ink); font-size: 14px; line-height: 1; }
@keyframes svc-scroll { to { transform: translateX(-50%); } }
@media (max-width: 920px) { .services-head { grid-template-columns: 1fr; align-items: start; } }

/* ============================================================
   4 · WHAT IF HEALTH WAS … (black, rotating circle)
   ============================================================ */
.whatif { position: relative; background: var(--ink); color: var(--on-dark); }
.whatif-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.whatif-heading { position: absolute; top: clamp(80px, 12vh, 130px); left: var(--pad); z-index: 5; font-weight: 500; font-size: clamp(40px, 6vw, 72px); line-height: 1.0; letter-spacing: -0.03em; }

/* entrance zoom: the circle starts a touch smaller and scales up to full
   once the user reaches the section; JS toggles .is-zoomed */
.circle-stage {
  position: absolute; inset: 0;
  transform: scale(0.8);
  transform-origin: 50% 40%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.whatif.is-zoomed .circle-stage { transform: scale(1); }
.circle-wrap {
  --D: min(1300px, 172vh);
  position: absolute; left: 50%; top: 38vh;
  width: var(--D); height: var(--D);
  transform: translateX(-50%);
}
.circle-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,0.32); }
.circle-rotor { position: absolute; inset: 0; transform: rotate(var(--rot, 0deg)); transition: transform 0.12s linear; }
.spoke {
  position: absolute; top: 0; left: 50%; width: 280px; margin-left: -140px;
  display: flex; flex-direction: column; align-items: center;
  transform-origin: 50% calc(var(--D) / 2); transform: rotate(var(--a));
}
.spoke .badge {
  position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(241,241,241,0.4);
  display: grid; place-items: center; font-size: 15px; color: var(--on-dark); opacity: 0.5;
  transition: border-color 0.4s, opacity 0.4s;
}
.spoke .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(241,241,241,0.55); margin-top: -6px; transition: background 0.4s; }
.spoke .desc { display: flex; flex-direction: column; align-items: center; opacity: 0; transition: opacity 0.45s var(--ease); transition-delay: 0.05s; }
.spoke .line { width: 1px; height: clamp(90px, 16vh, 150px); background: rgba(241,241,241,0.6); }
.spoke .txt { text-align: center; padding-top: 18px; }
.spoke .txt h3 { font-weight: 500; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; margin-bottom: 8px; }
.spoke .txt p { font-size: 14px; line-height: 1.45; color: var(--on-dark-dim); max-width: 22ch; margin-inline: auto; }
.spoke.is-current .badge { border-color: var(--on-dark); opacity: 1; }
.spoke.is-current .dot { background: var(--amber); }
.spoke.is-current .desc { opacity: 1; transition-delay: 0.35s; }

/* ============================================================
   5 · BUILT TO EVOLVE (arched tile gallery)
   ============================================================ */
.evolve { background: var(--light); padding-block: clamp(56px, 8vw, 110px) clamp(70px, 10vw, 130px); text-align: center; overflow: hidden; }

/* tiles ride the top arc of a slowly rotating wheel; the wheel centre
   sits far below so only the half-circle of tiles shows */
.evolve-wheel-wrap {
  position: relative; height: clamp(280px, 34vw, 380px); overflow: hidden;
  /* soft-fade the sides and bottom so tiles float in and out of the arc
     instead of being hard-clipped at the edges */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(180deg, #000 62%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(180deg, #000 62%, transparent 100%);
  mask-composite: intersect;
}
.evolve-wheel {
  --D: min(1300px, 200vw);
  position: absolute; left: 50%; top: 0; width: var(--D); height: var(--D);
  transform: translateX(-50%) rotate(0deg);
  animation: wheel-spin 64s linear infinite;
}
.wheel-tile {
  --tile: clamp(116px, 12.5vw, 168px);
  position: absolute; top: 0; left: 50%; width: var(--tile); height: var(--tile);
  margin-left: calc(var(--tile) / -2);
  transform-origin: 50% calc(var(--D) / 2);
  transform: rotate(var(--a));
}
.wheel-spin { width: 100%; height: 100%; animation: wheel-spin-rev 64s linear infinite; }
.wheel-fix {
  width: 100%; height: 100%; border-radius: 22px; overflow: hidden;
  transform: rotate(calc(-1 * var(--a)));
  box-shadow: 0 18px 38px rgba(80,50,35,0.16);
}
.wheel-fix img { width: 100%; height: 100%; object-fit: cover; }
/* the wheel rotates continuously and never pauses, even on hover */
@keyframes wheel-spin { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }
@keyframes wheel-spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.evolve-copy { margin-top: clamp(20px, 2.5vw, 36px); }
.evolve-title { margin: 0 auto; font-weight: 500; font-size: clamp(36px, 6vw, 76px); line-height: 1.05; letter-spacing: -0.03em; }
/* image-cutout highlight: the word is filled with a warm image */
.img-text {
  background-image: url("/v2/molecule.jpg");
  background-size: cover; background-position: center 45%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* adapting-services design block */
.evolve-adapt { margin-top: clamp(40px, 5vw, 68px); }
.evolve-sub { max-width: 56ch; margin: clamp(18px, 2vw, 28px) auto 0; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.5; color: var(--on-light-dim); text-align: center; }
.change-grid { margin: 0 auto; max-width: 1100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.change-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; color: #fff;
  box-shadow: 0 18px 42px rgba(80,50,35,0.14);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.change-card:hover { transform: translateY(-4px); box-shadow: 0 26px 54px rgba(80,50,35,0.2); }
.cc-media { position: absolute; inset: 0; }
.cc-media img { width: 100%; height: 100%; object-fit: cover; }
.change-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,10,8,0.18) 0%, rgba(15,10,8,0) 28%, rgba(15,10,8,0.84) 100%); }
.cc-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(20px, 2vw, 26px); }
.cc-body h4 { font-size: clamp(20px, 2.1vw, 25px); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.cc-body p { font-size: 13.5px; line-height: 1.46; color: rgba(255,255,255,0.84); max-width: 30ch; }
/* floating data card: shows a real change the system just made */
.data-pill {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px) saturate(1.2); -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 14px; padding: 11px 14px; color: var(--ink);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}
.dp-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 4px rgba(198,106,69,0.18); }
.dp-trigger { display: block; font-size: 11.5px; line-height: 1.3; color: var(--on-light-dim); margin-bottom: 1px; }
.dp-result { display: block; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
@media (max-width: 760px) {
  .change-grid { grid-template-columns: 1fr; gap: 14px; max-width: 34ch; }
  .change-card { aspect-ratio: 16 / 10; }
}

/* ============================================================
   8 · BIG STATEMENT + MARQUEE (warm gradient)
   ============================================================ */
.bigstmt { background: radial-gradient(130% 120% at 50% 0%, var(--terra) 0%, #d98e64 26%, var(--light) 64%); padding-block: clamp(90px, 13vw, 170px) clamp(60px, 9vw, 110px); text-align: center; color: var(--ink); overflow: hidden; }
.bigstmt h2 { max-width: 20ch; margin: 0 auto; font-weight: 500; font-size: clamp(38px, 7vw, 86px); line-height: 1.04; letter-spacing: -0.03em; }
.bigstmt-sub { margin: 22px auto 0; font-size: clamp(16px, 1.7vw, 20px); color: rgba(31,31,31,0.62); }
.marquee { margin-top: clamp(48px, 7vw, 80px); display: flex; flex-direction: column; gap: 16px; }
.marquee-row { overflow: hidden; }
.marquee-track { display: inline-flex; gap: 14px; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 46s; }
.pill { flex: none; padding: 12px 24px; border-radius: 100px; background: rgba(255,255,255,0.55); color: var(--ink); font-size: 15px; font-weight: 500; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   9 · FAQ (light, accordion without hairlines)
   ============================================================ */
.faq { background: var(--light); padding-block: clamp(70px, 10vw, 130px); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.acc { display: flex; flex-direction: column; gap: 10px; }
.acc-item { background: var(--cream); border-radius: 14px; overflow: hidden; transition: background 0.25s; }
.acc-item.is-open { background: #efece4; }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px clamp(20px, 3vw, 28px); text-align: left; }
.acc-head h4 { font-size: clamp(17px, 1.8vw, 21px); font-weight: 500; letter-spacing: -0.01em; }
.acc-ico { flex: none; width: 22px; height: 22px; position: relative; }
.acc-ico::before, .acc-ico::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s var(--ease); }
.acc-ico::before { top: 50%; left: 0; right: 0; height: 1.5px; margin-top: -0.75px; }
.acc-ico::after { left: 50%; top: 0; bottom: 0; width: 1.5px; margin-left: -0.75px; }
.acc-item.is-open .acc-ico::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-body p { padding: 0 clamp(20px, 3vw, 28px) 24px; color: var(--on-light-dim); font-size: 15px; line-height: 1.55; max-width: 60ch; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   10 · CTA (image + form)
   ============================================================ */
/* isolate so the negative z-index media + overlay render inside the section
   (above the page background) instead of disappearing behind the now-opaque
   body background */
.cta { position: relative; isolation: isolate; min-height: 100svh; display: grid; place-items: center; color: var(--on-dark); text-align: center; padding: var(--pad); overflow: hidden; }
.cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.5)); }
.cta h2 { font-weight: 500; font-size: clamp(32px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.025em; max-width: 18ch; }
.cta-form { margin: 32px auto 0; display: flex; gap: 10px; max-width: 480px; width: 100%; }
.cta-form input { flex: 1; padding: 16px 20px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); color: #fff; font-size: 15px; backdrop-filter: blur(6px); }
.cta-form input::placeholder { color: rgba(255,255,255,0.65); }
.cta-form button { padding: 16px 26px; border-radius: 100px; background: var(--light); color: var(--ink); font-weight: 600; font-size: 15px; white-space: nowrap; }
.cta-msg { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.85); min-height: 18px; }
@media (max-width: 440px) { .cta-form { flex-direction: column; } .cta-form button { width: 100%; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); color: var(--on-dark); padding: clamp(60px, 9vw, 110px) var(--pad) calc(40px + env(safe-area-inset-bottom)); }
.foot-inner { max-width: var(--maxw); margin-inline: auto; }
.foot-word { font-weight: 500; font-size: clamp(46px, 11vw, 150px); letter-spacing: -0.04em; line-height: 0.92; }
.foot-row { margin-top: 50px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: end; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-size: 14px; color: var(--on-dark-dim); transition: color 0.2s; }
.foot-links a:hover { color: var(--on-dark); }
.foot-meta { font-size: 12px; color: var(--on-dark-dim); line-height: 1.5; max-width: 60ch; margin-top: 28px; }

/* ============================================================
   SERVICE DETAIL MODAL (glassy)
   ============================================================ */
.svc-modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 24px;
  background: rgba(20, 12, 8, 0.4);
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.svc-modal.is-open { opacity: 1; visibility: visible; }
.svc-modal-panel {
  position: relative; width: min(500px, 92vw); max-height: 86vh; overflow-y: auto;
  background: rgba(248, 245, 240, 0.86);
  backdrop-filter: blur(24px) saturate(1.3); -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 26px; padding: clamp(26px, 4vw, 36px); color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,0.32);
  transform: translateY(16px) scale(0.97); transition: transform 0.35s var(--ease);
}
.svc-modal.is-open .svc-modal-panel { transform: none; }
.svc-modal-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.svc-modal-img { flex: none; width: 64px; height: 64px; border-radius: 16px; object-fit: cover; margin: 0; }
.svc-modal-panel h3 { font-size: clamp(24px, 3vw, 30px); font-weight: 500; letter-spacing: -0.02em; }
.svc-modal-intro { font-size: 15.5px; line-height: 1.62; color: var(--on-light-dim); font-weight: 400; margin-bottom: 20px; }
.svc-modal-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.svc-modal-list li { position: relative; padding-left: 24px; font-size: 14.5px; line-height: 1.5; color: var(--on-light-dim); }
.svc-modal-list li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }
.svc-modal-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(31,31,31,0.06); color: var(--ink); transition: background 0.2s;
}
.svc-modal-close:hover { background: rgba(31,31,31,0.12); }
.svc-modal-close svg { width: 16px; height: 16px; }

/* ── reveal animation ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .svc-row, .evolve-wheel, .hero-wheel, .wheel-spin { animation: none; }
  .circle-stage, .whatif.is-zoomed .circle-stage { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
