/* ============================================================
   Dean Blankfield — Avoidant. High-end editorial landing page.
   Brand: General Sans, warm taupe/ink/brown/forest-green.
   ============================================================ */

@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap");

:root {
  --ink: #1C1C1B;        /* Onyx */
  --ink-2: #2c2b29;
  --paper: #E2E2DE;      /* Stucco */
  --paper-2: #D6D5CF;
  --white: #ffffff;
  --taupe: #979086;      /* Ash */
  --taupe-dk: #6A5D52;   /* Walnut */
  --brown: #6A5D52;      /* Walnut */
  --brown-dk: #574C43;
  --greige: #B7AC9B;     /* Greige (light accent) */
  --char: #1C1C1B;       /* Onyx (cinematic sections) */
  --char-2: #262523;

  --muted: #475050;                       /* body on light (matches design spec) */
  --muted-w: rgba(255,255,255,0.70);      /* body on dark/taupe */
  --hair: rgba(28,28,27,0.14);
  --hair-w: rgba(255,255,255,0.20);

  --sans: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --pad: clamp(22px, 5.2vw, 104px);
  --gap-sec: clamp(72px, 10vw, 168px);
  --maxw: 1320px;
  --r: 24px;
  --pill: 999px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { margin: 0; font-weight: 600; line-height: 1.02; letter-spacing: -0.025em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--gap-sec); }

/* type scale */
.display { font-size: clamp(44px, 6.6vw, 104px); letter-spacing: -0.05em; line-height: 0.98; }
.h1 { font-size: clamp(34px, 5vw, 70px); letter-spacing: -0.045em; line-height: 1.0; }
.h2 { font-size: clamp(28px, 3.4vw, 50px); letter-spacing: -0.04em; }
.h3 { font-size: clamp(21px, 2.1vw, 30px); letter-spacing: -0.03em; }
.lede { font-size: clamp(19px, 1.55vw, 23px); line-height: 1.5; font-weight: 500; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; color: var(--brown);
}
.eyebrow::before { content:""; width: 22px; height: 1.5px; background: currentColor; opacity:.6; }
.eyebrow--green { color: var(--greige); }
.eyebrow--center { justify-content:center; }
.eyebrow--center::before { display:none; }

.muted { color: var(--muted); }
.on-dark .muted, .muted-w { color: var(--muted-w); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 26px; border-radius: var(--pill);
  font-family: inherit; font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn__ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; transition: transform .35s var(--ease); }
.btn:hover .btn__ic { transform: translateX(3px); }
.btn__ic svg { width: 17px; height: 17px; }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light .btn__ic { background: var(--ink); color: #fff; }
.btn--light:hover { background: #fff; }

.btn--brown { background: var(--brown); color: #fff; }
.btn--brown .btn__ic { background: rgba(255,255,255,0.92); color: var(--brown-dk); }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink .btn__ic { background: rgba(255,255,255,0.16); color: #fff; }
.btn--ink:hover { background: #000; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--hair); padding: 14px 26px; }
.btn--outline:hover { border-color: var(--ink); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.nav.scrolled { background: rgba(244,241,234,0.85); backdrop-filter: blur(16px); padding-block: 15px; box-shadow: 0 1px 0 var(--hair); }
.nav__brand { font-size: 18px; font-weight: 600; letter-spacing: 0.12em; color: #fff; }
.nav.scrolled .nav__brand { color: var(--ink); }
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.9); transition: opacity .2s, color .2s; }
.nav.scrolled .nav__links a { color: var(--ink-2); }
.nav__links a:hover { opacity: .6; }
.nav__links a.active { font-weight: 600; position: relative; }
.nav__links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-7px; height:2px; background: var(--greige); border-radius:2px; }
.nav.scrolled .nav__links a.active::after { background: var(--brown); }
.nav__cta { padding: 11px 24px; border-radius: var(--pill); font-size: 15px; font-weight: 600; color:#fff; background: rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.32); backdrop-filter: blur(6px); transition: background .25s, border-color .25s, color .25s; }
.nav.scrolled .nav__cta { color:#fff; background: var(--ink); border-color: var(--ink); }
.nav__cta:hover { background: var(--brown); border-color: var(--brown); color:#fff; }
.nav__burger { display:none; }

/* Collapse nav to a single Contact pill below desktop so the 6 links never overlap the CTA */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta:not(.nav__burger) { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   Hero — cinematic dark split
   ============================================================ */
.hero { position: relative; background: var(--char); color: #fff; overflow: hidden; min-height: 100svh; display: flex; align-items: stretch; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 0.96fr; width: 100%; }
.hero__left { display: flex; flex-direction: column; justify-content: center; padding: 150px var(--pad) clamp(56px,7vw,96px); }
.hero__eyebrow { color: var(--greige); margin-bottom: 30px; }
.hero__title { max-width: 13ch; }
.hero__rule { width: min(420px, 80%); height: 1px; background: var(--hair-w); margin: 34px 0; }
.hero__sub { max-width: 46ch; color: rgba(255,255,255,0.82); }
.hero__cta { margin-top: 42px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero__micro { font-size: 14.5px; color: rgba(255,255,255,0.6); letter-spacing: .01em; }

.hero__media { position: relative; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: contrast(1.02) brightness(1.0); }
.hero__media::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, var(--char) 0%, rgba(26,25,22,0.55) 26%, rgba(26,25,22,0.08) 60%, rgba(26,25,22,0.32) 100%); }
.hero__media::before { content:""; position:absolute; inset:0; z-index:1; background: radial-gradient(120% 90% at 80% 30%, rgba(106,93,82,0.30), transparent 55%); mix-blend-mode: screen; }
.hero__ghost { position: absolute; right: 3%; bottom: -4%; z-index: 0; font-size: 22vw; font-weight: 600; letter-spacing: -0.05em; color: rgba(255,255,255,0.035); line-height: 1; pointer-events: none; user-select: none; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { background: var(--brown); color: #fff; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: clamp(40px,5vw,64px); }
.trust__item { border-left: 1px solid var(--hair-w); padding-left: 24px; }
.trust__num { font-size: clamp(34px, 4vw, 52px); font-weight: 600; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.trust__lab { margin-top: 10px; font-size: 14.5px; color: rgba(255,255,255,0.74); max-width: 22ch; }

/* ============================================================
   Section header (shared)
   ============================================================ */
.shead { max-width: 820px; }
.shead .eyebrow { margin-bottom: 22px; }
.shead .lede { margin-top: 24px; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .shead { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }

/* ============================================================
   Recognition — two-state contrast
   ============================================================ */
.recog__top { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(30px,5vw,72px); align-items: end; }
.recog__portrait { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; }
.recog__portrait img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }

/* punchy points list */
.points { margin-top: clamp(40px,5vw,68px); border-top: 1px solid var(--hair); }
.points__i { display: grid; grid-template-columns: 1fr; gap: 0; padding: clamp(20px,2.4vw,32px) 0; border-bottom: 1px solid var(--hair); align-items: baseline; transition: padding-left .4s var(--ease); }
.points__i:hover { padding-left: 12px; }
.points__i p { font-size: clamp(20px,2vw,28px); font-weight: 600; letter-spacing: -0.022em; color: var(--ink); line-height: 1.25; text-wrap: balance; }

/* ============================================================
   Thoughts — first-person quote cards (the patterns we change)
   ============================================================ */
.thoughts { margin-top: clamp(40px,5vw,68px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.5vw,20px); }
.thought { margin: 0; position: relative; background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r); padding: clamp(30px,2.8vw,42px) clamp(26px,2.4vw,36px) clamp(28px,2.6vw,38px); display: flex; align-items: flex-end; min-height: clamp(150px,15vw,210px); transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s; }
.thought::before { content: "\201C"; position: absolute; top: clamp(8px,1vw,16px); left: clamp(22px,2.2vw,32px); font-size: clamp(60px,6vw,92px); line-height: 1; font-weight: 600; color: var(--brown); opacity: 0.26; }
.thought:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -44px rgba(22,21,15,0.5); background: #fff; }
.thought p { position: relative; font-size: clamp(20px,1.7vw,25px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.22; color: var(--ink); text-wrap: balance; }
.thoughts__turn { margin-top: clamp(40px,4.5vw,60px); max-width: 60ch; }
.thoughts__turn p { color: var(--muted); font-size: clamp(18px,1.55vw,22px); line-height: 1.5; }
.thoughts__turn em { font-style: normal; color: var(--ink); font-weight: 600; }
.thoughts__turn h3 { margin-top: 18px; max-width: 20ch; color: var(--ink); }

/* ============================================================
   The Loop — hairline numbered rows on taupe
   ============================================================ */
.loop { margin-top: clamp(40px,5vw,68px); }
.loop__row { display: grid; grid-template-columns: 96px 1fr; gap: clamp(20px,4vw,64px); padding: clamp(26px,3vw,40px) 0; border-top: 1px solid var(--hair-w); align-items: start; transition: padding-left .4s var(--ease); }
.loop__row:hover { padding-left: 14px; }
.loop__row:last-child { border-bottom: 1px solid var(--hair-w); }
.loop__n { font-size: clamp(28px,3vw,40px); font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: -0.03em; }
.loop__row h3 { color: #fff; margin-bottom: 12px; max-width: 22ch; }
.loop__row p { color: var(--muted-w); max-width: 64ch; }

/* ============================================================
   The Cycle — self-reinforcing loop
   Ring on desktop (CSS sin/cos placement) → vertical chain on mobile.
   ============================================================ */
.cyc-wrap { width: min(100%, 660px); margin: clamp(48px,6vw,84px) auto 0; container-type: size; aspect-ratio: 1 / 1; }
.cyc { position: relative; width: 100%; height: 100%; --R: 37cqmin; }

.cyc__steps { list-style: none; margin: 0; padding: 0; }
.cyc__step {
  position: absolute;
  --a: calc(40deg * var(--i) - 90deg);
  left: calc(50% + cos(var(--a)) * var(--R));
  top:  calc(50% + sin(var(--a)) * var(--R));
  transform: translate(-50%, -50%);
  width: clamp(116px, 19cqmin, 150px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px;
}
.cyc__n {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 14.5px; font-weight: 600; color: #fff;
  background: var(--taupe); border: 1px solid rgba(255,255,255,0.36);
  box-shadow: 0 0 0 5px var(--taupe);
}
.cyc__step h3 { font-size: clamp(15px, 2.05cqmin, 18px); color: #fff; letter-spacing: -0.02em; line-height: 1.1; max-width: 16ch; }
.cyc__step p { font-size: clamp(12px, 1.7cqmin, 13.5px); color: rgba(255,255,255,0.66); line-height: 1.28; font-weight: 500; }
.cyc__step--alarm .cyc__n { background: var(--brown); border-color: var(--brown); box-shadow: 0 0 0 5px var(--taupe), 0 0 24px -2px rgba(106,93,82,0.95); }

.cyc__ring { position: absolute; inset: 0; pointer-events: none; }
.cyc__ring svg { width: 100%; height: 100%; display: block; }

.cyc__core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44cqmin; max-width: 300px; text-align: center; }
.cyc__core-eye { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--greige); margin: 0 0 10px; }
.cyc__core-line { font-size: clamp(22px, 5.4cqmin, 36px); font-weight: 600; letter-spacing: -0.035em; color: #fff; line-height: 1.0; }
.cyc__core-sub { margin-top: 13px; font-size: clamp(13px, 2.2cqmin, 15px); color: rgba(255,255,255,0.66); line-height: 1.36; }

.cyc-close { max-width: 60ch; margin-top: clamp(42px, 5vw, 66px); }
.cyc-close p { color: rgba(255,255,255,0.82); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.cyc-close em { font-style: normal; color: #fff; font-weight: 600; }
.cyc-close h3 { margin-top: 18px; max-width: 22ch; color: #fff; }

@media (max-width: 760px) {
  .cyc-wrap { container-type: normal; aspect-ratio: auto; width: auto; max-width: 460px; margin-inline: 0; }
  .cyc { height: auto; --R: 0px; }
  .cyc__ring, .cyc__core { display: none; }
  .cyc__steps { position: relative; padding-left: 4px; }
  .cyc__steps::before { content: ""; position: absolute; left: 19px; top: 28px; bottom: 28px; width: 2px; background: rgba(255,255,255,0.22); }
  .cyc__step {
    position: static; transform: none; width: auto;
    flex-direction: row; align-items: flex-start; text-align: left; gap: 18px;
    padding: 14px 0;
  }
  .cyc__n { position: relative; z-index: 1; margin-top: 1px; }
  .cyc__step h3 { font-size: 18px; max-width: none; }
  .cyc__step p { font-size: 14px; }
}

/* ============================================================
   Editorial split (why it hasn't shifted)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,96px); align-items: center; }
.split__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.split__copy p + p { margin-top: 20px; }
.pullquote { font-size: clamp(24px,2.6vw,38px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.18; margin-top: 30px; padding-left: 26px; border-left: 2px solid var(--brown); text-wrap: balance; }

/* ============================================================
   Method — sticky portrait + principles
   ============================================================ */
.method { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px,5vw,84px); align-items: start; }
.method__media { position: sticky; top: 96px; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; }
.method__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04); }
.princ { border-top: 1px solid var(--hair); }
.princ__row { padding: clamp(26px,3vw,40px) 0; border-bottom: 1px solid var(--hair); }
.princ__lead { font-size: clamp(23px,2.3vw,32px); color: var(--ink); letter-spacing: -0.03em; margin-bottom: 12px; }
.princ__row p { font-size: clamp(18px,1.5vw,21px); font-weight: 500; letter-spacing: -0.012em; color: var(--muted); line-height: 1.5; max-width: 48ch; }

/* ============================================================
   Included — card grid
   ============================================================ */
.incl { margin-top: clamp(40px,5vw,64px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,1.5vw,22px); }
.incl__card { background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r); padding: clamp(28px,3vw,46px); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.incl__card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -42px rgba(22,21,15,0.5); }
.incl__card h3 { font-size: clamp(21px,2vw,28px); letter-spacing: -0.025em; margin-bottom: 14px; }
.incl__card p { color: var(--muted); font-size: clamp(16px,1.3vw,18px); line-height: 1.5; max-width: 38ch; }
.spec__cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: clamp(36px,4vw,52px); padding: clamp(28px,3vw,40px); background: var(--paper-2); border-radius: var(--r); }
.spec__cta p { max-width: 46ch; color: var(--muted); }

/* ============================================================
   What changes — checklist
   ============================================================ */
.changes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,96px); align-items: center; }
.checks { display: grid; gap: 6px; }
.check { display: grid; grid-template-columns: 30px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-top: 1px solid var(--hair); }
.check:last-child { border-bottom: 1px solid var(--hair); }
.check__d { width: 26px; height: 26px; border-radius: 50%; background: var(--brown); display: grid; place-items: center; margin-top: 3px; }
.check__d svg { width: 13px; height: 13px; color: #fff; }
.check p { font-size: clamp(18px,1.5vw,21px); color: var(--ink-2); }

/* ============================================================
   Story — cinematic dark signature
   ============================================================ */
.story { position: relative; background: var(--char); color: #fff; overflow: hidden; }
.story__bg { position: absolute; inset: 0; }
.story__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; filter: grayscale(1) contrast(1.08); }
.story__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(28,28,27,0.55), rgba(20,20,19,0.93)); }
.story__inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; padding-block: clamp(80px,11vw,180px); padding-inline: var(--pad); }
.story__quote { font-size: clamp(28px,3.6vw,54px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; max-width: 18ch; text-wrap: balance; }
.story__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); margin-top: clamp(40px,5vw,64px); }
.story__cols p { color: rgba(255,255,255,0.78); }
.story__cols p + p { margin-top: 16px; }
.story__kick { margin-top: clamp(36px,4vw,56px); font-size: clamp(20px,2vw,28px); font-weight: 600; letter-spacing: -0.02em; }
.story__kick span { color: var(--greige); }

/* ============================================================
   Testimonials
   ============================================================ */
.tcar { position: relative; max-width: 920px; margin-inline: auto; margin-top: clamp(36px,4vw,56px); }
.tcar__win { overflow: hidden; }
.tcar__track { display: flex; transition: transform .55s var(--ease); }
.tcar__slide { min-width: 100%; padding: 6px; }
.tq { background: var(--white); border-radius: var(--r); padding: clamp(36px,4.4vw,64px); text-align: center; box-shadow: 0 30px 70px -44px rgba(22,21,15,0.45); }
.tq__stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 26px; color: var(--brown); }
.tq__stars svg { width: 19px; height: 19px; }
.tq p { font-size: clamp(21px,2.4vw,32px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
.tq__who { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 13px; }
.tq__who img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.tq__av { width: 50px; height: 50px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 600; font-size: 15px; color: #fff; letter-spacing: 0.01em; }
.tq__av--1 { background: radial-gradient(120% 120% at 30% 25%, #C9BCA8, #6A5D52); }
.tq__av--2 { background: radial-gradient(120% 120% at 30% 25%, #A9BFA8, #2E5E3F); }
.tq__av--3 { background: radial-gradient(120% 120% at 30% 25%, #D8CFC2, #8A7F76); }
.tq__who span { font-weight: 600; }
.tcar__nav { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.tcar__btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--hair); background: transparent; cursor: pointer; display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s; }
.tcar__btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.tcar__btn svg { width: 19px; height: 19px; }

/* ============================================================
   Selective — full-bleed cinematic band
   ============================================================ */
.selband { position: relative; background: var(--char); color: #fff; overflow: hidden; }
.selband__bg { position: absolute; inset: 0; }
.selband__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 76% 28%; filter: grayscale(1) contrast(1.05) brightness(0.95); }
.selband__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(100deg, var(--char) 0%, rgba(28,28,27,0.94) 32%, rgba(28,28,27,0.55) 58%, rgba(28,28,27,0.12) 100%); }
.selband__inner { position: relative; z-index: 2; padding-block: clamp(84px,10vw,156px); }
.selband__content { max-width: 600px; }
.selband__content .eyebrow { color: var(--greige); margin-bottom: 26px; }
.selband__title { font-size: clamp(36px,4.6vw,68px); letter-spacing: -0.045em; line-height: 1.0; max-width: 14ch; color: #fff; margin-bottom: 28px; }
.selband__content p { color: rgba(255,255,255,0.82); max-width: 50ch; }
.selband__content p + p { margin-top: 16px; }
.sel-for { margin-top: 34px; display: grid; gap: 2px; }
.sel-for__i { display: grid; grid-template-columns: 24px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--hair-w); font-size: clamp(16px,1.35vw,19px); color: #fff; align-items: start; }
.sel-for__i:last-child { border-bottom: 1px solid var(--hair-w); }
.sel-for__i svg { width: 18px; height: 18px; color: var(--greige); margin-top: 4px; }
.selband__cta { margin-top: 36px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin-inline: auto; margin-top: clamp(36px,4vw,52px); }
.faq__i { border-top: 1px solid var(--hair); }
.faq__i:last-child { border-bottom: 1px solid var(--hair); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; padding: 28px 2px; font-size: clamp(18px,1.9vw,23px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.faq__ic { flex: none; width: 24px; height: 24px; position: relative; }
.faq__ic::before, .faq__ic::after { content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--brown); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.faq__ic::before { width: 15px; height: 2px; }
.faq__ic::after { width: 2px; height: 15px; }
.faq__i.open .faq__ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 2px 30px; color: var(--muted); font-size: 17.5px; max-width: 66ch; }

/* ============================================================
   Final CTA — cinematic
   ============================================================ */
.final { position: relative; background: var(--char); color: #fff; overflow: hidden; text-align: center; }
.final__ghost { position: absolute; inset: 0; display: grid; place-items: center; font-size: 32vw; font-weight: 600; letter-spacing: -0.06em; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; user-select: none; }
.final__glow { position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 20%, rgba(106,93,82,0.42), transparent 60%); }
.final__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding-block: clamp(90px,12vw,190px); padding-inline: var(--pad); }
.final h2 { max-width: 16ch; margin-inline: auto; }
.final p { margin: 26px auto 0; max-width: 46ch; color: rgba(255,255,255,0.78); }
.final .btn { margin-top: 44px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.66); padding: clamp(56px,6vw,84px) var(--pad) 44px; }
.footer__in { max-width: var(--maxw); margin-inline: auto; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { font-size: 21px; font-weight: 600; letter-spacing: 0.1em; color: #fff; }
.footer__nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__nav a { font-size: 15.5px; transition: color .2s; }
.footer__nav a:hover { color: #fff; }
.footer__bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: 14px; }
.footer__bot a { transition: color .2s; }
.footer__bot a:hover { color: #fff; }

/* ============================================================
   Sticky CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  border-radius: var(--pill);
  background: var(--ink);
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 40px -16px rgba(28,28,27,0.6);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s;
}
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--brown); }
.sticky-cta .btn__ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.16); display: grid; place-items: center; flex: none; transition: transform .35s var(--ease); }
.sticky-cta:hover .btn__ic { transform: translateX(3px); }
.sticky-cta .btn__ic svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .sticky-cta { left: 16px; right: 16px; justify-content: center; padding: 14px 20px; }
  .sticky-cta .btn__ic { display: none; }
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { position: relative; height: 56vh; min-height: 380px; order: -1; }
  .hero__media img { position: absolute; }
  .hero__media::after { background: linear-gradient(180deg, rgba(26,25,22,0.2), var(--char)); }
  .hero__left { padding-top: 48px; }
  .hero__ghost { display: none; }
  .recog__top { grid-template-columns: 1fr; }
  .recog__portrait { aspect-ratio: 16/10; max-width: 520px; }
  .split, .method, .changes, .selective, .story__cols { grid-template-columns: 1fr; }
  .method__media { position: relative; top: 0; max-width: 480px; aspect-ratio: 16/11; }
  .split__media, .selective__media { max-width: 520px; aspect-ratio: 16/11; }
  .trust__inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .incl { grid-template-columns: 1fr; }
  .thoughts { grid-template-columns: 1fr 1fr; }
  .selband__bg::after { background: linear-gradient(180deg, rgba(28,28,27,0.35) 0%, rgba(28,28,27,0.78) 55%, var(--char) 100%); }
  .selband__content { max-width: none; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .loop__row { grid-template-columns: 1fr; gap: 8px; }
  .check p { font-size: 17px; }
  .spec__cta { flex-direction: column; align-items: flex-start; }
  .thoughts { grid-template-columns: 1fr; }
}

/* ============================================================
   Mechanism — "why you can't think your way out of it"
   ============================================================ */
.mech { max-width: 960px; }
.mech .eyebrow { margin-bottom: 22px; }
.mech .h1 { max-width: 20ch; }
.mech__body { margin-top: clamp(32px, 4vw, 52px); max-width: 62ch; }
.mech__body p { font-size: clamp(18px, 1.55vw, 22px); line-height: 1.55; color: var(--muted); }
.mech__body p + p { margin-top: 22px; }
.mech__body em { font-style: normal; color: var(--ink); font-weight: 600; }
.mech__close { margin-top: clamp(30px, 3.4vw, 44px); padding-top: clamp(26px, 3vw, 36px); border-top: 1px solid var(--hair); font-size: clamp(21px, 2.1vw, 30px) !important; font-weight: 600; letter-spacing: -0.025em; color: var(--ink) !important; line-height: 1.22; max-width: 30ch; text-wrap: balance; }

/* Mechanism — cinematic dark variant (the thesis moment) */
.mech-sec { position: relative; background: var(--char); color: #fff; overflow: hidden; }
.mech-sec::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 70% at 18% 12%, rgba(106,93,82,0.30), transparent 58%); pointer-events:none; }
.mech-sec .wrap { position: relative; z-index: 1; }
.mech-sec .eyebrow { color: var(--greige); }
.mech-sec .h1 { color: #fff; }
.mech-sec .mech__body p { color: rgba(255,255,255,0.74); }
.mech-sec .mech__body em { color: #fff; }
.mech-sec .mech__close { color: #fff !important; border-top-color: var(--hair-w); }


/* ============================================================
   Type-driven hero (no portrait)
   ============================================================ */
.hero--type { min-height: 88vh; display: flex; align-items: center; }
.hero--type .hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: 0 auto; padding: 150px var(--pad) 110px; }
.hero--type .hero__eyebrow { margin-bottom: 30px; }
.hero--type .hero__title { max-width: 17ch; }
.hero--type .hero__rule { margin: 34px 0; }
.hero--type .hero__sub { max-width: 60ch; }
.hero__glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(70% 62% at 24% 28%, rgba(106,93,82,0.42), transparent 60%); pointer-events: none; }
@media (max-width: 1040px) { .hero--type { min-height: auto; } .hero--type .hero__inner { padding-top: 124px; } }

/* Hero accent line */
.hero__sub--accent { margin-top: 20px; max-width: 60ch; color: #fff; font-weight: 500; }

/* Mechanism — copy + static pendulum swung to the anxious side */
.mech-sec .mech__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(36px,5vw,84px); }
.mech-sec .mech__grid .mech { max-width: none; }
.mech__viz { position: relative; }
.mech__viz .hpend { width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto; }
.hpend text { font-family: var(--sans); }
@media (max-width: 980px) {
  .mech-sec .mech__grid { grid-template-columns: 1fr; gap: 30px; }
  .mech__viz { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   Myth — the felt experience (animated line diagram)
   ============================================================ */
.myth__grid { display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(36px,6vw,88px); align-items: center; }
.myth__grid--flip { grid-template-columns: 1fr 1.04fr; }
.myth__grid--flip .myth__viz { order: -1; }
.myth__copy { max-width: 46ch; }
.myth__copy .eyebrow { margin-bottom: 22px; }
.myth__copy .h1 { margin-bottom: 24px; max-width: 18ch; }
.myth__copy p { font-size: clamp(17px,1.5vw,21px); line-height: 1.55; color: var(--muted); }
.myth__copy p + p { margin-top: 16px; }
.myth__src { margin-top: 28px !important; font-size: 13px !important; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe) !important; display: inline-flex; align-items: center; gap: 10px; }
.myth__src::before { content:""; width: 22px; height: 1.5px; background: currentColor; opacity:.6; }

.myth__viz { position: relative; display: flex; justify-content: center; }
.myth__svg { width: 100%; max-width: 440px; height: auto; display: block; overflow: visible; }
.myth__frame { position: relative; width: 100%; max-width: 420px; aspect-ratio: 4 / 5; box-shadow: 0 30px 70px -46px rgba(22,21,15,0.5); border-radius: 18px; overflow: hidden; }
/* Tantalus is already a light, airy portrait — a gentle tone-down keeps it soft. */
.myth__slot { width: 100%; height: 100%; display: block; filter: saturate(0.55) contrast(0.9) brightness(1.06) sepia(0.05); }
/* Soft paper wash, matched to the avoidant page so the pair feels consistent. */
.myth__frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(180deg, rgba(233,231,221,0.30), rgba(233,231,221,0.10) 42%, rgba(233,231,221,0.16)); }

.mz-line { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.mz-faint { fill: none; stroke: var(--taupe); stroke-width: 2; stroke-dasharray: 2 9; stroke-linecap: round; opacity: .8; }
.mz-fill { fill: var(--brown); }
.mz-dot { fill: var(--ink); }
.mz-tip { fill: var(--taupe); }

/* Sisyphus — rolls up, never holds */
.sis-boulder { animation: sisRoll 5.4s cubic-bezier(.45,.03,.55,1) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes sisRoll {
  0%   { transform: translate(0,0) rotate(0deg); }
  55%  { transform: translate(282px,-176px) rotate(700deg); }
  66%  { transform: translate(282px,-176px) rotate(706deg); }
  78%  { transform: translate(0,0) rotate(720deg); }
  100% { transform: translate(0,0) rotate(720deg); }
}

/* Tantalus — reaches up, it lifts away */
.tan-reach { animation: tanReach 4.8s cubic-bezier(.4,.05,.5,1) infinite; transform-box: fill-box; transform-origin: center; }
.tan-fruit { animation: tanFruit 4.8s cubic-bezier(.4,.05,.5,1) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes tanReach {
  0%,8%    { transform: translateY(0); }
  46%      { transform: translateY(-150px); }
  56%      { transform: translateY(-150px); }
  90%,100% { transform: translateY(0); }
}
@keyframes tanFruit {
  0%,28%   { transform: translateY(0); }
  46%      { transform: translateY(-28px); }
  56%      { transform: translateY(-28px); }
  74%,100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .sis-boulder { transform: translate(150px,-94px) rotate(360deg); animation: none; }
  .tan-reach { transform: translateY(-86px); animation: none; }
  .tan-fruit { animation: none; }
}

@media (max-width: 1040px) {
  .myth__grid { grid-template-columns: 1fr; gap: clamp(26px,6vw,40px); }
  .myth__copy { max-width: none; }
  .myth__svg { max-width: 360px; }
}
