/* ============================================================
   Human Gravity — Landing Page (wide, environmental, scroll-aware)
   Tokens, type, and layout per human-gravity-website-design-system-v3.md
   Display type: Newsreader; body/UI: Inter; Fraunces = hero headline only.
   ============================================================ */

:root {
  --hg-indigo: #1B2640;
  --hg-madder: #B83A2E;
  --hg-washed-indigo: #5C6E8A;
  --hg-cotton-web: #F6F0E6;
  --hg-cotton-original: #EDE4D3;
  --hg-deep-slate: #2E3F5C;
  --hg-burgundy: #85201A;
  --hg-olive: #535E42;        /* v3: secondary supporting accent — used very sparingly, never a CTA/decision mark */
  --hg-olive-deep: #3F4833;   /* v3: olive hover/active */
  --hg-hairline: #D8CEC0;
  --hg-warm-paper: #FFFCF7;

  --hg-font-display: "Newsreader", Georgia, serif;   /* v3: display type Fraunces -> Newsreader */
  --hg-font-logo: "Fraunces", Georgia, serif;        /* v3: Fraunces is logo/wordmark only (logo is an image, so unused by live text) */
  --hg-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --hg-radius-small: 6px;
  --hg-radius-medium: 8px;
  --hg-rule: 1px solid var(--hg-hairline);

  --shell: 1280px;          /* wide structural container */
  --gutter: clamp(24px, 5vw, 72px);
  --measure: 64ch;          /* readable text width */
  --header-h: 68px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--hg-cotton-web);
  color: var(--hg-indigo);
  font-family: var(--hg-font-body);
  font-size: 18px;                  /* v3: body 17-18px */
  line-height: 1.6;
  letter-spacing: 0;
  font-optical-sizing: auto;        /* v3: engages Newsreader's opsz axis (inherited) */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.measure { max-width: var(--measure); }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hg-indigo);
  color: var(--hg-cotton-web);
  padding: 10px 16px;
  border-radius: 0 0 var(--hg-radius-small) 0;
  font-weight: 600;
  text-decoration: none;
  z-index: 300;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--hg-font-display);
  font-weight: 600;
  color: var(--hg-indigo);
  letter-spacing: 0;
}
h1 {
  font-weight: 500;                       /* v3: Display H1 is Medium */
  font-size: clamp(34px, 5vw, 60px);      /* v3: Display 48-60px, more restrained */
  line-height: 1.1;
  letter-spacing: -0.01em;                /* v3: tracking -0.01em on display type */
  margin: 0 0 26px;
}
h2 {
  font-size: clamp(27px, 3.2vw, 36px);    /* v3: Section title 32-36px */
  line-height: 1.2;
  margin: 0 0 24px;
}
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; margin: 0 0 10px; }  /* v3: Subhead 22-24px */

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(19px, 1.5vw, 21px);    /* v3: Lead/intro 20-21px */
  line-height: 1.5;
  color: var(--hg-deep-slate);
}

/* ---------- Buttons & links ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: var(--hg-madder);
  color: var(--hg-warm-paper);
  font-family: var(--hg-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--hg-radius-small);
  border: 1px solid var(--hg-madder);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.cta:hover { background: var(--hg-burgundy); border-color: var(--hg-burgundy); }
.cta:active { transform: translateY(1px); }
.cta--sm { padding: 10px 18px; font-size: 15px; }
.cta--lg { padding: 16px 30px; font-size: 17px; }

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--hg-madder);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .18s ease;
}
.text-link:hover { color: var(--hg-burgundy); }

a:focus-visible,
.cta:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--hg-deep-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Header (transparent over hero, solidifies on scroll) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246, 240, 230, 0.92);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom-color: var(--hg-hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo {
  display: block;
  width: auto;
  height: clamp(40px, 4vw, 48px);
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(72px, 11vw, 150px) 0;
  border-bottom: var(--hg-rule);
}
.section--alt { background: var(--hg-warm-paper); }
section[id] { scroll-margin-top: 84px; }
#top { scroll-margin-top: 0; }

/* Editorial two-column grid: title left, content right */
.colset {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 110px);
  align-items: start;
}
.colset__head h2 { margin-bottom: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 94vh, 1040px);
  padding: calc(var(--header-h) + 24px) 0 64px;
  overflow: hidden;
  border-bottom: var(--hg-rule);
}
.hero__media {
  position: absolute;
  top: -12%;
  right: -7%;
  width: min(62%, 1180px);
  height: 124%;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  /* feather the inner (left) edge so the scene melts into the page; top/right/bottom bleed off-canvas */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.65) 14%, #000 34%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.65) 14%, #000 34%);
}
.hero__media-fallback { display: none; }
.hero__media.img-missing {
  top: 0; right: 0; height: 100%;
}
.hero__media.img-missing .hero__media-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  border-left: 1px dashed var(--hg-washed-indigo);
  color: var(--hg-washed-indigo);
  font-style: italic;
  font-size: 14px;
}
.hero__content { position: relative; z-index: 1; width: 100%; }
.hero h1 {                                   /* hero headline stays in Fraunces (the logo font) per Nate — the one exception */
  font-family: var(--hg-font-logo);
  font-weight: 600;
  font-size: clamp(46px, 7.2vw, 100px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero__text { max-width: 700px; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-top: 34px;
}

/* Hero scroll cue */
.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--hg-washed-indigo);
  transition: color .18s ease;
}
.hero__scroll-cue:hover { color: var(--hg-madder); }
.hero__scroll-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-chevron {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: hg-bounce 1.9s ease-in-out infinite;
}
@keyframes hg-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .65; }
  50%      { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ---------- Decisions scene (gravity well) ----------
   Base styles below are the safe fallback: a centered stacked list of all
   decisions (used for no-JS, reduced-motion, and narrow screens).
   JS adds .is-gravity on capable desktop to switch on the pinned scroll-scrub. */
.decisions-scene {
  position: relative;
  border-bottom: var(--hg-rule);
  padding: clamp(48px, 8vw, 96px) 0;
}
.gravity-well {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vw, 44px);
}
.decisions-scene__center {
  margin: 0;
  text-align: center;
  font-family: var(--hg-font-display);
  font-weight: 600;
  color: var(--hg-indigo);
  font-size: clamp(30px, 6vw, 78px);
  line-height: 1.04;
  max-width: 15ch;
}
.decisions {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}
.decision {
  display: flex;
  flex-direction: row-reverse;   /* dot on the left in the stacked fallback */
  align-items: center;
  gap: 16px;
  max-width: 660px;
}
.decision__text {
  font-family: var(--hg-font-body);
  font-weight: 500;
  color: var(--hg-indigo);
  line-height: 1.26;
}
.decision--lg .decision__text { font-size: clamp(22px, 2.4vw, 34px); }
.decision--md .decision__text { font-size: clamp(19px, 1.9vw, 26px); }
.decision--sm .decision__text { font-size: clamp(17px, 1.5vw, 21px); }
.decision__line { flex: 0 0 auto; height: 1px; background: var(--hg-hairline); }
.decision--lg .decision__line { width: 44px; }
.decision--md .decision__line { width: 34px; }
.decision--sm .decision__line { width: 26px; }
.decision__dot {
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.decision--lg .decision__dot { width: 56px; height: 56px; }
.decision--md .decision__dot { width: 46px; height: 46px; }
.decision--sm .decision__dot { width: 38px; height: 38px; }
.decision[data-color="madder"] .decision__dot { background-image: url("assets/img/node-madder.png"); }
.decision[data-color="indigo"] .decision__dot { background-image: url("assets/img/node-indigo.png"); }

/* Gravity-well mode (JS adds .is-gravity on capable desktop) */
.decisions-scene.is-gravity { height: 120vh; padding: 0; }
.is-gravity .gravity-well {
  position: sticky;
  top: 0;
  height: 100vh;
  max-width: none;
  padding: 0;
  display: block;
  overflow: hidden;
}
.is-gravity .decisions-scene__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(36vw, 620px);
  max-width: 13ch;
  transform: translate(-50%, -50%) !important;  /* hold center; beat .reveal transform */
  z-index: 10;
}
.is-gravity .decisions { position: absolute; inset: 0; display: block; }
/* Decisions orbit clockwise around the centered phrase. */
.is-gravity .decision {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: clamp(230px, 22vw, 360px);
  max-width: calc(50vw - 48px);
  z-index: var(--z, 1);
  opacity: var(--o, 0);
  transform: translate(var(--x, 0px), calc(-50% + var(--y, 0px))) scale(var(--s, 1));
  transform-origin: left center;
  will-change: transform, opacity;
}
.is-gravity .decision--lg { width: clamp(300px, 26vw, 430px); }
.is-gravity .decision--md { width: clamp(230px, 20vw, 330px); }
.is-gravity .decision--sm { width: clamp(170px, 15vw, 245px); }
.is-gravity .decision--left {
  text-align: right;
  transform-origin: right center;
  transform: translate(calc(var(--x, 0px) - 100%), calc(-50% + var(--y, 0px))) scale(var(--s, 1));
  flex-direction: row;   /* dot/line on the inner (center-facing) side */
}
.is-gravity .decision__text { max-width: none; }
.is-gravity .decision--lg .decision__text { font-size: clamp(25px, 2vw, 38px); }
.is-gravity .decision--md .decision__text { font-size: clamp(18px, 1.35vw, 25px); }
.is-gravity .decision--sm .decision__text { font-size: clamp(14px, 0.96vw, 17px); }
.is-gravity .decision--lg .decision__line { width: 38px; }
.is-gravity .decision--md .decision__line { width: 24px; }
.is-gravity .decision--sm .decision__line { width: 16px; }
.is-gravity .decision--lg .decision__dot { width: 68px; height: 68px; }
.is-gravity .decision--md .decision__dot { width: 42px; height: 42px; }
.is-gravity .decision--sm .decision__dot { width: 28px; height: 28px; }

@media (max-width: 620px) {
  .decision { gap: 12px; max-width: 100%; }
  .decision__line { width: 18px !important; }
  .decision--lg .decision__dot { width: 44px; height: 44px; }
  .decision--md .decision__dot { width: 38px; height: 38px; }
  .decision--sm .decision__dot { width: 32px; height: 32px; }
  .decision--lg .decision__text { font-size: 21px; }
  .decision--md .decision__text { font-size: 19px; }
  .decision--sm .decision__text { font-size: 17px; }
}

/* ---------- Durable ground (pin & reveal, asymmetric) ----------
   Base = static asymmetric fallback (no-JS / reduced-motion / narrow).
   JS adds .is-pinned on capable desktop to pin the stage and scrub the reveal. */
.ground-split__stage { width: 100%; }
.ground-split__inner { width: 100%; }
.ground__a, .ground__b {
  margin: 0;
  font-family: var(--hg-font-display);
  font-weight: 500;
  color: var(--hg-indigo);
  line-height: 1.2;
}
.ground__a {
  max-width: min(640px, 54%);
  font-size: clamp(24px, 2.8vw, 38px);   /* v3: trimmed from 44px max for restraint */
}
.ground__b {
  max-width: min(560px, 48%);
  margin-left: auto;
  text-align: right;
  font-size: clamp(20px, 2.1vw, 29px);   /* v3: trimmed from 33px max */
}
.ground__a em, .ground__b em { font-style: italic; }
.ground__rule {
  width: 100%;
  height: 2px;
  background: var(--hg-indigo);
  margin: clamp(30px, 5vw, 60px) 0;
  transform-origin: left center;
}

/* Pin & reveal mode */
.is-pinned.ground-split { height: 150vh; padding: 0; border-bottom: var(--hg-rule); }
.is-pinned .ground-split__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
}
.is-pinned .ground__a {
  opacity: var(--a-o, 1);
  transform: translateY(var(--a-y, 0px));
  will-change: opacity, transform;
}
.is-pinned .ground__rule {
  transform: scaleX(var(--rule-x, 1));
  will-change: transform;
}
.is-pinned .ground__b {
  opacity: var(--b-o, 1);
  transform: translateY(var(--b-y, 0px));
  will-change: opacity, transform;
}

@media (max-width: 640px) {
  .ground__a, .ground__b { max-width: 100%; text-align: left; margin-left: 0; }
}

/* ---------- Narrative section (walk-away) ---------- */
.section--narrative { text-align: left; }
.narrative { max-width: 960px; margin: 0 auto; }

.ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: var(--hg-rule);
}
.ledger li {
  padding: clamp(18px, 2.4vw, 26px) 0;
  border-bottom: var(--hg-rule);
  font-size: clamp(21px, 2.4vw, 28px);   /* bumped up so the walk-away outcomes read more easily */
  font-family: var(--hg-font-display);
  font-weight: 400;
  line-height: 1.32;
  color: var(--hg-indigo);
}
.ledger--solutions li {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.ledger--solutions li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.5em;
  background: var(--hg-olive);   /* v3: small grounded accent (was madder; keep madder for decision marks) */
  border-radius: 1px;
}

.statement {
  font-size: clamp(20px, 2.3vw, 26px);   /* v3: aligns with pull-quote 22-26px */
  font-family: var(--hg-font-display);
  font-weight: 400;
  line-height: 1.4;
  color: var(--hg-indigo);
  margin: clamp(40px, 6vw, 72px) 0;
  max-width: 30ch;
}
.walkaway-lead {
  font-family: var(--hg-font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.3vw, 27px);   /* v3: trimmed from 30px max */
  line-height: 1.2;
  color: var(--hg-madder);
  margin: 0 0 6px;
}

/* ---------- Grounded Decisions ---------- */
.gd { display: block; }
.gd__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);   /* text left, name/weigh/watch right */
  align-items: stretch;
}
.gd__intro {
  max-width: 560px;
  align-self: center;
  padding-right: clamp(32px, 5vw, 56px);    /* text sits left, flush with the shell's left edge */
}
.gd__rule {
  border: 0;
  height: 0;
  border-top: 2px solid var(--hg-indigo);
  margin: clamp(34px, 5vw, 56px) 0;
}
.gd__rule--dotted {
  border-top-width: 3px;
  border-top-style: dotted;
  border-top-color: var(--hg-madder);       /* echoes the red dotted tension lines in the graphic */
}
.gd-fig { margin: 0; }
.gd-fig img { display: block; width: 100%; height: auto; }
.gd-fig--nww {                              /* name/weigh/watch — right column, divided from the text by a vertical line */
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: clamp(32px, 5vw, 56px);
  border-left: 2px solid var(--hg-indigo);
}
.gd-fig--center { max-width: 620px; margin: clamp(40px, 6vw, 72px) auto 0; }   /* three capacity tensions — truly centered below */
.steps {
  margin: clamp(28px, 4vw, 40px) 0 0;
  border-left: 2px solid var(--hg-hairline);
}
.steps .step {
  margin: 0;
  padding: 14px 0 14px 22px;
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--hg-indigo);
}
.steps .step + .step { border-top: var(--hg-rule); }
.steps .step b { font-family: var(--hg-font-display); font-weight: 600; }
.gd-full { margin-top: 28px; }

.gd__media { position: sticky; top: calc(var(--header-h) + 28px); }
.plate { margin: 0; }
.plate--framework .plate__img,
.plate--framework img {
  width: 100%;
  background: var(--hg-warm-paper);
  border: var(--hg-rule);
  border-radius: var(--hg-radius-medium);
}
.plate__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--hg-washed-indigo);
  border-radius: var(--hg-radius-medium);
  background: var(--hg-warm-paper);
  color: var(--hg-washed-indigo);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

/* ---------- Doors (who this is for) ---------- */
.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 clamp(28px, 4vw, 44px);
}
.door { padding: 4px 36px; }
.door:first-child { padding-left: 0; }
.door:last-child { padding-right: 0; border-left: var(--hg-rule); }
.door__title { position: relative; padding-left: 20px; font-size: clamp(20px, 1.8vw, 23px); line-height: 1.5; }  /* bigger so the "who this is for" copy reads more easily */
.door__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  background: var(--hg-olive);   /* v3: small grounded accent (was madder) */
  border-radius: 1px;
}
.door p { color: var(--hg-deep-slate); margin: 0; }
.fit { font-size: clamp(19px, 2vw, 22px); color: var(--hg-deep-slate); }

/* ---------- About (big bleeding portrait + sticky) ---------- */
.about { padding: 0; border-bottom: var(--hg-rule); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(520px, 70vh, 820px);
}
.about__media {
  position: relative;
  overflow: hidden;
}
.about__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  /* feather the inner (right) edge into the bio column; left bleeds off-canvas */
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.6) 12%, #000 30%);
          mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.6) 12%, #000 30%);
}
.about__media-fallback { display: none; }
.about__media.img-missing {
  display: grid;
  place-items: center;
  border-right: 1px dashed var(--hg-washed-indigo);
}
.about__media.img-missing .about__media-fallback {
  display: block; color: var(--hg-washed-indigo); font-style: italic; font-size: 14px;
}
.about__bio {
  align-self: center;
  padding: clamp(48px, 8vw, 120px) var(--gutter) clamp(48px, 8vw, 120px) clamp(20px, 4vw, 72px);
  max-width: calc(var(--measure) + 80px);
}

/* ---------- Scene split (reusable environmental bleed: media + body) ---------- */
.section--scene { padding: 0; }
.scene-split {
  display: grid;
  align-items: stretch;
  min-height: clamp(460px, 64vh, 760px);
}
.scene-split--media-left  { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.scene-split--media-right { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.scene-media { position: relative; overflow: hidden; }
.scene-media img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; }
.scene-media--left img {
  object-position: 58% 48%;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.6) 12%, #000 32%);
          mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.6) 12%, #000 32%);
}
.scene-media--right img {
  object-position: 46% 48%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 12%, #000 32%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 12%, #000 32%);
}
.scene-body { align-self: center; padding-top: clamp(48px, 7vw, 110px); padding-bottom: clamp(48px, 7vw, 110px); }
.scene-split--media-left  .scene-body { padding-left: clamp(24px, 4vw, 64px); padding-right: var(--gutter); }
.scene-split--media-right .scene-body { padding-right: clamp(24px, 4vw, 64px); padding-left: var(--gutter); }
/* doors stack inside the half-width body */
.scene-body .doors { grid-template-columns: 1fr; gap: 0; margin: 6px 0 clamp(24px, 4vw, 36px); }
.scene-body .door { padding: 0; }
.scene-body .door + .door { border-left: 0; border-top: var(--hg-rule); margin-top: 22px; padding-top: 22px; }

@media (max-width: 980px) {
  .scene-split { grid-template-columns: 1fr; min-height: 0; }
  .scene-media { height: clamp(280px, 52vw, 460px); order: -1; }
  .scene-media--left img, .scene-media--right img {
    object-position: 50% 42%;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  }
  .scene-split--media-left .scene-body,
  .scene-split--media-right .scene-body { padding: clamp(32px, 7vw, 56px) var(--gutter); }
}

/* ---------- Start here ---------- */
.start__inner { max-width: 760px; }
.start .cta { margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--hg-indigo);
  color: var(--hg-cotton-web);
  padding: clamp(44px, 6vw, 72px) 0 clamp(34px, 5vw, 52px);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.16);
}
.brand__logo--footer { height: clamp(46px, 5vw, 58px); }
.site-footer__fine {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.site-footer__fine p { margin: 0; font-size: 13px; color: var(--hg-cotton-web); opacity: 0.78; }

/* ---------- Scroll reveal (only active when JS present) ---------- */
.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.has-js .reveal.is-visible { opacity: 1; transform: none; }
.has-js .stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.has-js .stagger .reveal:nth-child(2) { transition-delay: 90ms; }
.has-js .stagger .reveal:nth-child(3) { transition-delay: 180ms; }
.has-js .stagger .reveal:nth-child(4) { transition-delay: 270ms; }
.has-js .stagger .reveal:nth-child(5) { transition-delay: 360ms; }
.has-js .stagger .reveal:nth-child(6) { transition-delay: 450ms; }
.has-js .stagger .reveal:nth-child(n+7) { transition-delay: 520ms; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .colset { grid-template-columns: 1fr; gap: 18px; }
  .gd__row { grid-template-columns: 1fr; gap: 36px; }
  .gd__intro { padding-right: 0; }
  .gd-fig--nww { border-left: 0; padding-left: 0; }
  .gd__media { position: static; }
  .about__grid { grid-template-columns: 1fr; min-height: 0; }
  .about__media {
    height: clamp(300px, 56vw, 520px);
    order: -1;
  }
  .about__media img {
    object-position: 50% 38%;
    -webkit-mask-image: linear-gradient(to bottom, #000 64%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 64%, transparent 100%);
  }
  .about__bio { padding: clamp(32px, 7vw, 56px) var(--gutter); max-width: none; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }   /* v3: body 17-18px */
  /* Hero stacks: text first, image as a feathered band beneath */
  .hero {
    display: block;
    min-height: 0;
    padding: calc(var(--header-h) + 28px) 0 0;
    overflow: visible;
  }
  .hero__media {
    position: relative;
    top: 0; right: 0; left: 0;
    width: 100%;
    margin-left: 0;
    transform: none !important;
    height: clamp(280px, 64vw, 460px);
    margin-top: 36px;
  }
  .hero__media img {
    object-position: 60% 45%;
    -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
  }
  .hero__text { max-width: none; }
  .hero__scroll-cue { display: none; }
  .doors { grid-template-columns: 1fr; }
  .door { padding: 0; }
  .door:last-child {
    border-left: none;
    border-top: var(--hg-rule);
    padding-top: 24px;
    margin-top: 24px;
  }
  .hero__actions .cta { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .has-js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__media,
  .about__media { transform: none !important; }
  .hero__scroll-chevron { animation: none !important; }
}
