/* ============================================================
   Calder — monochrome system on white
   Ink #0A0A0A · Greys per brand scale · 4px base unit
   Godger (display) · Space Grotesk (headings/UI) · Inter (body)
   ============================================================ */

@font-face {
  font-family: 'Godger';
  src: url('../fonts/GodgerRoundedDisco-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

:root {
  /* light — the brand's primary system: ink on white */
  --white: #FFFFFF;   /* canvas */
  --ink: #0A0A0A;     /* primary text & mark */
  --g15: #1A1A1E;
  --g25: #3A3A40;
  --g45: #6E6E76;     /* muted text */
  --g55: #8A8A90;     /* subtle text */
  --g75: #B4B4BC;     /* faint borders / disabled */
  --g90: #E4E4E8;     /* hairlines & surfaces */
  --canvas-rgb: 255, 255, 255;
  --fg-rgb: 10, 10, 10;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-display: 'Godger', 'Space Grotesk', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;
  --font-title: 'Roboto', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* dark — the brand's reversed system: white on ink (guidelines §logo variations) */
:root[data-theme="dark"] {
  --white: #0A0A0A;
  --ink: #FFFFFF;
  --g15: #E4E4E8;
  --g25: #CFCFD4;
  --g45: #9A9AA2;
  --g55: #8A8A90;
  --g75: #3A3A40;
  --g90: #1A1A1E;
  --canvas-rgb: 10, 10, 10;
  --fg-rgb: 255, 255, 255;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }
html:has(.is-animating) { scroll-behavior: auto; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background .5s var(--ease), color .5s var(--ease);
}

::selection { background: var(--ink); color: var(--white); }

/* ---------- WebGL stage ---------- */
#stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--white);
  transition: background .5s var(--ease);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
}
.loader__c { position: relative; height: 220px; }
:root[data-theme="dark"] .loader__c img { filter: invert(1); }
.loader__c img { display: block; height: 100%; width: auto; }
.loader__c-base { opacity: .12; }
.loader__c-fill {
  position: absolute; inset: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .45s var(--ease);
}
.loader.is-done { pointer-events: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  padding: 12px 40px;
  background: rgba(var(--canvas-rgb), .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--g90);
}
.nav .btn { font-family: var(--font-title); }
.nav__brand {
  display: flex; flex-direction: column;
  gap: 2px;
  color: var(--ink);
  text-decoration: none;
  transition: color .5s var(--ease);
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: .02em;
  line-height: .82;
}
.nav__brand-sub {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--g55);
  padding-left: 2px;
  transition: color .5s var(--ease);
}
.nav__right { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--g75);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease), color .5s var(--ease);
  padding: 0;
}
.theme-toggle:hover { border-color: var(--ink); transform: translateY(-2px); }
.theme-toggle:active .tt { transform: scale(.82); }

/* dot-matrix sun ⇄ dot moon — all circles, like everything Calder */
.tt { overflow: visible; transition: transform .7s var(--ease); }
.tt__core {
  transition: r .55s var(--ease);
}
.tt__cut {
  transition: cx .55s var(--ease), cy .55s var(--ease);
}
.tt__rays circle {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.tt__rays circle:nth-child(1) { transition-delay: 0s; }
.tt__rays circle:nth-child(2) { transition-delay: .03s; }
.tt__rays circle:nth-child(3) { transition-delay: .06s; }
.tt__rays circle:nth-child(4) { transition-delay: .09s; }
.tt__rays circle:nth-child(5) { transition-delay: .12s; }
.tt__rays circle:nth-child(6) { transition-delay: .15s; }
.tt__rays circle:nth-child(7) { transition-delay: .18s; }
.tt__rays circle:nth-child(8) { transition-delay: .21s; }

/* dark: rays fall inward, the node grows and a bite of canvas carves the moon */
:root[data-theme="dark"] .tt { transform: rotate(-90deg); }
:root[data-theme="dark"] .tt__core { r: 8; }
:root[data-theme="dark"] .tt__cut { cx: 17; cy: 7; }
:root[data-theme="dark"] .tt__rays circle { transform: scale(0); opacity: 0; }

/* ---------- Products dropdown — a node that opens a constellation ---------- */
.nav__drop { position: relative; display: inline-flex; align-items: center; }
.nav__dropbtn {
  font-family: var(--font-title);
  font-size: 14px; font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--g45);
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0; margin: 0;
  transition: color .2s var(--ease);
}
.nav__dropbtn:hover, .nav__dropbtn.is-active, .nav__drop.is-open .nav__dropbtn { color: var(--ink); }
.nav__chev {
  margin-left: 1px;
  transition: transform .4s var(--ease);
  opacity: .65;
}
.nav__dropbtn:hover .nav__chev, .nav__drop.is-open .nav__chev { opacity: 1; }
.nav__drop.is-open .nav__chev { transform: rotate(180deg); }

.drop {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translate(-50%, 8px);
  width: 322px;
  background: rgba(var(--canvas-rgb), .96);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid var(--g90);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), transform .4s var(--ease), visibility 0s linear .35s;
}
.nav__drop.is-open .drop {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
/* invisible bridge so the cursor can travel from button to panel */
.drop::before { content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 20px; }
/* tick pointing up to the button */
.drop::after {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 11px; height: 11px; margin-left: -5.5px;
  background: rgba(var(--canvas-rgb), .96);
  border-left: 1px solid var(--g90); border-top: 1px solid var(--g90);
  transform: rotate(45deg);
}
.drop__head {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 14px 10px;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--g55);
}
.drop__head b {
  font-weight: 600; color: var(--ink);
  border: 1px solid var(--g75); border-radius: 100px;
  padding: 1px 8px; font-size: 10px; letter-spacing: 0;
}
.drop__item {
  position: relative;
  display: grid; grid-template-columns: 24px 1fr 16px;
  align-items: center; gap: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  text-decoration: none;
  opacity: 0; transform: translateY(6px);
  transition: background .25s var(--ease), opacity .4s var(--ease), transform .4s var(--ease);
}
.nav__drop.is-open .drop__item { opacity: 1; transform: translateY(0); }
.nav__drop.is-open .drop__item:nth-child(2) { transition-delay: .05s; }
.nav__drop.is-open .drop__item:nth-child(3) { transition-delay: .1s; }
.nav__drop.is-open .drop__item:nth-child(4) { transition-delay: .15s; }
.nav__drop.is-open .drop__item:nth-child(5) { transition-delay: .2s; }
.drop__item:hover { background: rgba(var(--fg-rgb), .06); }
.drop__item small {
  font-family: var(--font-display);
  font-size: 14px; color: var(--g55);
  transition: color .25s var(--ease);
}
.drop__item:hover small { color: var(--ink); }
.drop__body { min-width: 0; }
.drop__body b {
  font-family: var(--font-title); font-weight: 700; font-size: 16px;
  color: var(--ink); display: block; letter-spacing: -.01em; line-height: 1.15;
}
.drop__body em {
  font-style: normal; font-size: 12px; color: var(--g55);
  font-family: var(--font-head); letter-spacing: .02em;
}
.drop__item .arw {
  color: var(--ink);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.drop__item:hover .arw { opacity: 1; transform: translateX(0); }

/* crafted arrow — one component everywhere */
.arw { display: inline-flex; align-items: center; justify-content: center; }
.arw svg { display: block; transition: transform .35s var(--ease); }

.drop__all {
  display: flex; align-items: center; justify-content: space-between;
  margin: 6px 6px 2px; padding: 13px 8px;
  border-top: 1px solid var(--g90);
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .02em;
  color: var(--g45); text-decoration: none;
  transition: color .25s var(--ease);
}
.drop__all:hover { color: var(--ink); }
.drop__all .arw { color: currentColor; }
.drop__all:hover .arw svg { transform: translate(3px, -3px); }

/* menu chips — live products inside the fullscreen menu */
.menu__products {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease) .36s, transform .5s var(--ease) .36s;
}
body.menu-open .menu__products { opacity: 1; transform: translateY(0); }
.menu__products-label {
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--g55);
  margin-right: 6px;
}
.menu__products a {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--g45); text-decoration: none;
  border: 1px solid var(--g75); border-radius: 100px;
  padding: 8px 14px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.menu__products a:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Products page — cinematic slabs, type is the visual ---------- */
.prod {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: clip;
  padding: 90px 0 32px;
}
.prod + .prod { border-top: 1px solid var(--g90); }
.prod__ghost {
  position: absolute;
  right: -2vw; top: 48px;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(160px, 26vw, 380px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--fg-rgb), .09);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke .5s var(--ease);
}
.prod:hover .prod__ghost { -webkit-text-stroke: 1.5px rgba(var(--fg-rgb), .16); }
.prod__inner { width: 100%; position: relative; z-index: 1; }
.prod__meta {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
}
.prod__rule { flex: 1; height: 1px; background: var(--g90); }
.prod__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--g45);
  border: 1px solid var(--g75); border-radius: 100px;
  padding: 8px 16px;
}
.prod__live .node { width: 7px; height: 7px; }
.prod__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: .92;
  letter-spacing: .01em;
  margin: 0 0 24px;
  display: inline-block;
  position: relative;
  transition: letter-spacing .6s var(--ease);
}
.prod:hover .prod__name { letter-spacing: .035em; }
.prod__name::after {
  content: '';
  position: absolute; left: 2px; right: 2px; bottom: -10px;
  height: 2px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.prod:hover .prod__name::after { transform: scaleX(1); }
.prod__line { font-size: clamp(18px, 2vw, 24px); color: var(--g45); max-width: 46ch; margin-bottom: 36px; line-height: 1.5; }
.prod__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.prod__visit .arw svg { transition: transform .35s var(--ease); }
.prod__visit:hover .arw svg { transform: translate(3px, -3px); }
.menu__products .arw svg { width: 9px; height: 9px; }
.prod__desc { font-size: 17px; color: var(--g55); max-width: 56ch; margin: -16px 0 36px; line-height: 1.6; }

/* product gallery — full-bleed strip, scrubbed horizontally by your scroll */
.pstrip {
  margin: 48px calc(50% - 50vw) 0;
  overflow: clip;
}
.pstrip__track {
  display: flex; gap: 20px;
  width: max-content;
  padding: 6px 0 10px;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
  will-change: transform;
}
.pstrip img {
  height: clamp(260px, 40vh, 430px);
  width: auto;
  border-radius: 14px;
  border: 1px solid var(--g90);
  filter: grayscale(1) contrast(1.02);
  transition: filter .45s var(--ease), border-color .45s var(--ease);
}
.pstrip img:hover {
  filter: grayscale(0);
  border-color: var(--g55);
}
@media (max-width: 640px) {
  .pstrip { margin-top: 32px; }
  .pstrip__track { padding-left: 22px; gap: 12px; }
  .pstrip img { height: 220px; }
  .prod__desc { font-size: 15px; margin: -8px 0 28px; }
  .prod { padding: 80px 0 24px; }
  .prod__ghost { top: 32px; }
}
.prod__idx {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .2em; color: var(--g55);
}
@media (max-width: 640px) {
  .prod { min-height: 72vh; }
  .prod__ghost { font-size: clamp(160px, 60vw, 260px); right: -6vw; opacity: .06; }
  .prod__name { font-size: clamp(56px, 17vw, 84px); }
  .prod__line { font-size: 17px; margin-bottom: 28px; }
}

/* ---------- Burger — nine brand dots that fold into an X ---------- */
.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--g75);
  background: transparent;
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.burger:hover { border-color: var(--ink); }
.burger__dots {
  width: 16px; height: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  place-items: center;
  transition: transform .55s var(--ease);
}
.burger__dots i {
  width: 3.4px; height: 3.4px; border-radius: 50%;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
/* open: edge dots vanish, corners spread, grid turns — nine dots become an X */
body.menu-open .burger__dots { transform: rotate(135deg); }
body.menu-open .burger__dots i:nth-child(2),
body.menu-open .burger__dots i:nth-child(4),
body.menu-open .burger__dots i:nth-child(6),
body.menu-open .burger__dots i:nth-child(8) { transform: scale(0); opacity: 0; }
body.menu-open .burger__dots i:nth-child(1) { transform: translate(-2px, -2px); }
body.menu-open .burger__dots i:nth-child(3) { transform: translate(2px, -2px); }
body.menu-open .burger__dots i:nth-child(7) { transform: translate(-2px, 2px); }
body.menu-open .burger__dots i:nth-child(9) { transform: translate(2px, 2px); }

/* ---------- Fullscreen menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(var(--canvas-rgb), .92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 28px 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility 0s linear .45s, background .5s var(--ease);
}
body.menu-open .menu { opacity: 1; visibility: visible; transition-delay: 0s; }
body.menu-open { overflow: hidden; }
.menu__links { display: flex; flex-direction: column; }
.menu__link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(38px, 9.5vw, 60px);
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--g90);
  opacity: 0; transform: translateY(26px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease);
}
.menu__link small {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--g55);
  transition: color .3s var(--ease);
}
.menu__link:active, .menu__link:hover { color: var(--g45); }
.menu__link.is-active small { color: var(--ink); }
body.menu-open .menu__link { opacity: 1; transform: translateY(0); }
body.menu-open .menu__link:nth-child(1) { transition-delay: .08s; }
body.menu-open .menu__link:nth-child(2) { transition-delay: .14s; }
body.menu-open .menu__link:nth-child(3) { transition-delay: .2s; }
body.menu-open .menu__link:nth-child(4) { transition-delay: .26s; }
body.menu-open .menu__link:nth-child(5) { transition-delay: .32s; }
.menu__foot {
  margin-top: 40px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease) .4s, transform .5s var(--ease) .4s;
}
body.menu-open .menu__foot { opacity: 1; transform: translateY(0); }
.menu__mail {
  font-size: 15px; color: var(--g45); text-decoration: none;
  border-bottom: 1px solid var(--g90);
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-family: var(--font-title);
  font-size: 14px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--g45);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: transparent;
}
.progress span { display: block; height: 100%; width: 0%; background: var(--ink); }

/* ---------- Buttons (100px pill, per brand) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: var(--g25); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--g75);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--small { font-size: 14px; padding: 10px 22px; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; }
.container.narrow { max-width: 860px; }

.section {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0;
}
.section + .section::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px;
  height: 1px; background: var(--g90);
}

/* soft white scrim so ink text always beats the particle field */
.container::before {
  content: ''; position: absolute; inset: -48px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--canvas-rgb), .86) 0%, rgba(var(--canvas-rgb), .55) 55%, rgba(var(--canvas-rgb), 0) 100%);
  z-index: -1; pointer-events: none;
}

/* ---------- Type ---------- */
.godger { font-family: var(--font-display); }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}
.eyebrow--muted { color: var(--g55); }
.node {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; display: inline-block;
  animation: nodePulse 2.4s var(--ease) infinite;
}
@keyframes nodePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.7); opacity: .6; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 220px);
  line-height: .9;
  letter-spacing: .01em;
  margin: 0 0 36px;
}
.h-xl {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.body-l { font-size: 21px; line-height: 1.6; max-width: 640px; margin-bottom: 20px; }
.muted { color: var(--g45); }

.pullquote {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-top: 56px;
  padding-left: 28px;
  border-left: 2px solid var(--ink);
  max-width: 760px;
}

/* split-text lines */
[data-split] .line { overflow: hidden; display: block; }
[data-split] .line > div { display: block; }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; }
.hero__inner { padding-top: 0; margin-top: 9vh; }
.hero__sub { font-size: 22px; max-width: 620px; margin-bottom: 40px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--g55);
}
.scrollcue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 48px;
  border: 1px solid var(--g75); border-radius: 100px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scrollcue__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink);
  animation: cueDrift 1.8s var(--ease) infinite;
}
@keyframes cueDrift { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }

/* ---------- Showreel ---------- */
.showreel {
  position: relative; z-index: 1;
  padding: 40px 0 120px;
}
.showreel .eyebrow { margin-bottom: 28px; }
.reel {
  margin: 0 auto;
  width: 92%;
  max-width: 1240px;
  will-change: transform;
}
.reel__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--g90);
  background: #000;
  aspect-ratio: 16 / 9;
}
.reel__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.reel:hover .reel__video { transform: scale(1.02); }

/* corner ticks — brand framing */
.reel__tick {
  position: absolute; width: 18px; height: 18px; z-index: 2;
  border: 0 solid rgba(255, 255, 255, .55);
  pointer-events: none;
}
.reel__tick--tl { top: 14px; left: 14px; border-top-width: 1.5px; border-left-width: 1.5px; }
.reel__tick--tr { top: 14px; right: 14px; border-top-width: 1.5px; border-right-width: 1.5px; }
.reel__tick--bl { bottom: 14px; left: 14px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.reel__tick--br { bottom: 14px; right: 14px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.reel__cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  mix-blend-mode: difference;
}
@media (max-width: 640px) {
  .showreel { padding: 24px 0 80px; }
  .reel { width: 100%; }
  .reel__frame { border-radius: 14px; }
  .reel__tick { width: 13px; height: 13px; top: 10px; }
  .reel__tick--bl, .reel__tick--br { bottom: 10px; }
  .reel__tick--tl, .reel__tick--bl { left: 10px; }
  .reel__tick--tr, .reel__tick--br { right: 10px; }
  .reel__cap { font-size: 11px; left: 14px; bottom: 12px; }
}

/* ---------- Manifesto (pinned, particle-driven) ---------- */
.manifesto {
  position: relative; z-index: 1;
  min-height: 100vh;
}
.mani__stage {
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: clip;
}
/* sentences render as particles; keep DOM copy for screen readers / SEO */
.mani__lines {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.mani__line { position: absolute; }
@media (max-width: 640px) {
  .mani__line { padding: 0 22px; font-size: clamp(30px, 8.6vw, 46px); letter-spacing: -.02em; }
  .mani__lines { padding: 0 22px; }
}

/* ---------- Tension ---------- */
.tension__title { color: var(--ink); }
.tension .body-l { color: var(--g45); }
.tension .pullquote { border-color: var(--g55); color: var(--g25); }

/* ---------- Shift ---------- */
.shift__list { list-style: none; margin-top: 48px; }
.shift__list li {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--g90);
  align-items: baseline;
}
.shift__list li:last-child { border-bottom: 1px solid var(--g90); }
.shift__list strong { font-family: var(--font-title); font-weight: 700; font-size: 22px; letter-spacing: -.01em; }
.shift__list span { color: var(--g45); font-size: 18px; }

/* ---------- Build · capability index ---------- */
.caplist { margin-top: 64px; border-top: 1px solid var(--g90); }
.cap {
  display: grid;
  grid-template-columns: 96px 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 12px;
  border-bottom: 1px solid var(--g90);
  position: relative;
  transition: background .35s var(--ease);
}
.cap:hover { background: rgba(var(--fg-rgb), .035); }
.cap__num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--g75);
  transition: color .35s var(--ease);
  line-height: 1;
}
.cap:hover .cap__num { color: var(--ink); }
.cap__main h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -.015em;
  line-height: 1.05;
  margin-bottom: 8px;
  transition: transform .35s var(--ease);
}
.cap:hover .cap__main h3 { transform: translateX(10px); }
.cap__main p { font-size: 16px; color: var(--g45); line-height: 1.55; max-width: 46ch; }
.cap__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: flex-end;
}
.cap__tags span {
  font-family: var(--font-head);
  font-weight: 600; font-size: 13px;
  letter-spacing: .02em;
  color: var(--g45);
  border: 1px solid var(--g90);
  border-radius: 8px;
  padding: 7px 12px;
  white-space: nowrap;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cap:hover .cap__tags span { color: var(--ink); border-color: var(--g55); }

/* ---------- Method (pinned horizontal) ---------- */
.method { padding: 0; min-height: auto; display: block; }
.method__pin {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.method__track {
  display: flex; gap: 24px;
  padding: 64px 40px 32px;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
  will-change: transform;
  width: max-content;
}
.step {
  flex: 0 0 auto;
  width: min(420px, 78vw);
  background: rgba(var(--canvas-rgb), .8);
  border: 1px solid var(--g90);
  border-radius: 16px;
  padding: 40px 36px 44px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 44px; color: var(--g75);
  display: block; margin-bottom: 48px;
}
.step h3 { font-family: var(--font-title); font-weight: 700; font-size: 28px; margin-bottom: 12px; letter-spacing: -.01em; }
.step p { color: var(--g45); font-size: 17px; }
.method__micro {
  font-family: var(--font-head); font-weight: 500; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--g55);
  margin-top: 24px;
}

/* ---------- Proof ---------- */
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.work {
  border: 1px solid var(--g90); border-radius: 16px;
  padding: 28px; background: rgba(var(--canvas-rgb), .8);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.work:hover { transform: translateY(-6px); border-color: var(--g55); }
.work__dots { width: 100%; aspect-ratio: 16/10; margin-bottom: 24px; border-radius: 8px; }
.work__dots canvas { width: 100%; height: 100%; display: block; border-radius: 8px; }
.work h3 { font-family: var(--font-title); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.work p { font-size: 16px; color: var(--g45); line-height: 1.55; }
.proof__close { margin-top: 48px; font-size: 20px; }

/* ---------- Clients ---------- */
.clients {
  min-height: 72vh;
  padding: 96px 0;
  gap: 48px;
}
.clients__head { width: 100%; }
.clients .eyebrow { margin-bottom: 0; }
.marquee {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  align-self: stretch;
  border-top: 1px solid var(--g90);
  padding: 40px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee:last-child { border-bottom: 1px solid var(--g90); }
.marquee__inner {
  display: inline-flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeSlide 36s linear infinite;
}
.marquee--reverse .marquee__inner { animation-direction: reverse; animation-duration: 44s; }
.marquee:hover .marquee__inner { animation-play-state: paused; }
@keyframes marqueeSlide { to { transform: translateX(-50%); } }
.marquee__inner span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -.01em;
  color: var(--g55);
  transition: color .3s var(--ease);
}
.marquee__inner span:hover { color: var(--ink); }
.marquee__inner .node {
  width: 8px; height: 8px; flex: 0 0 auto;
  background: var(--g75);
  animation: none;
}

/* ---------- Vision ---------- */
.vision { min-height: 130vh; }
.vision__inner { text-align: left; }

/* ---------- Invitation ---------- */
.invite { min-height: 110vh; text-align: center; }
.invite__inner { display: flex; flex-direction: column; align-items: center; }
.invite__title { font-size: clamp(56px, 9vw, 140px); }
.invite .body-l { margin-bottom: 36px; }
.invite .hero__cta { justify-content: center; }
.invite__contacts {
  font-size: 15px; color: var(--g45);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 12px; margin-top: 8px;
  max-width: 100%;
}
.invite__contacts a { overflow-wrap: anywhere; }
.invite__contacts a { color: var(--g45); text-decoration: none; border-bottom: 1px solid var(--g90); transition: color .2s, border-color .2s; }
.invite__contacts a:hover { color: var(--ink); border-color: var(--ink); }
.invite__signoff {
  font-size: clamp(34px, 5vw, 64px);
  margin-top: 96px;
}

/* ---------- Quick form (home closing) ---------- */
.quickform { max-width: 560px; margin: 8px 0 0; }
.quickform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.quickform input, .quickform textarea {
  font-family: var(--font-body); font-size: 16px;
  color: var(--ink);
  background: rgba(var(--fg-rgb), .04);
  border: 1px solid var(--g75); border-radius: 12px;
  padding: 14px 16px; width: 100%; outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.quickform textarea { min-height: 96px; resize: vertical; margin-bottom: 16px; }
.quickform input::placeholder, .quickform textarea::placeholder { color: var(--g55); }
.quickform input:focus, .quickform textarea:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(var(--fg-rgb), .12);
  background: rgba(var(--canvas-rgb), .5);
}
.quickform__foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.quickform__note { font-size: 13px; color: var(--g55); }
.quickform__note.is-ok { color: var(--ink); }
.quickform__note.is-ok a { color: var(--ink); }
@media (max-width: 560px) {
  .quickform__row { grid-template-columns: 1fr; }
  .invite .quickform { margin-left: auto; margin-right: auto; text-align: left; }
}

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--g90);
  padding: 80px 0 40px;
  background: rgba(var(--canvas-rgb), .86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 64px;
}
.footer__mark { font-size: 60px; display: block; line-height: .9; margin-bottom: 4px; }
.footer__sub {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--g55);
  display: block; margin-bottom: 18px;
}
.footer__brand p { color: var(--g45); font-size: 16px; }
.footer__col h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--g55);
  margin-bottom: 16px;
}
.footer__col a {
  display: block; color: var(--g25); text-decoration: none;
  font-size: 16px; margin-bottom: 10px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--ink); }
.footer__legal {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--g90); padding-top: 24px;
  font-size: 13px; color: var(--g55);
  font-family: var(--font-head); letter-spacing: .06em;
}

/* ---------- Subpages ---------- */
.page-hero {
  min-height: 76vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 200px 0 72px;
  position: relative; z-index: 1;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 10.5vw, 164px);
  line-height: .9;
  letter-spacing: .01em;
  margin: 0 0 30px;
}
.page-hero .body-l { font-size: 22px; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.tile {
  border: 1px solid var(--g90); border-radius: 16px;
  padding: 36px 32px;
  background: rgba(var(--canvas-rgb), .8);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tile:hover { transform: translateY(-6px); border-color: var(--g55); }
.tile__num { font-family: var(--font-display); font-size: 36px; color: var(--g75); display: block; margin-bottom: 36px; }
.tile h3 { font-family: var(--font-title); font-weight: 700; font-size: 25px; letter-spacing: -.01em; margin-bottom: 10px; }
.tile > p { color: var(--g45); font-size: 17px; line-height: 1.55; }
.tile ul { list-style: none; margin-top: 20px; }
.tile li {
  color: var(--g45); font-size: 15px; line-height: 1.5;
  padding: 9px 0; border-top: 1px solid var(--g90);
  display: flex; align-items: baseline; gap: 10px;
}
.tile li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); flex: 0 0 auto; transform: translateY(-1px);
}

.case {
  border-top: 1px solid var(--g90);
  padding: 64px 0;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center;
}
.case:last-of-type { border-bottom: 1px solid var(--g90); }
.case__dots { aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; }
.case__dots canvas { width: 100%; height: 100%; display: block; }
.case h3 { font-family: var(--font-title); font-weight: 700; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.015em; margin: 10px 0 14px; }
.case__kind {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--g55);
}
.case > div > p { color: var(--g45); font-size: 17px; max-width: 52ch; }
.case__facts { list-style: none; margin-top: 24px; }
.case__facts li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 10px 0; border-top: 1px solid var(--g90);
  font-size: 15px; color: var(--g45);
}
.case__facts b { color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; flex: 0 0 92px; }

.rows { margin-top: 56px; border-top: 1px solid var(--g90); }
.row {
  display: grid; grid-template-columns: 88px 1fr; gap: 28px;
  padding: 32px 8px; border-bottom: 1px solid var(--g90);
  align-items: baseline;
  transition: background .3s var(--ease);
}
.row:hover { background: rgba(var(--fg-rgb), .035); }
.row__num { font-family: var(--font-display); font-size: 32px; color: var(--g75); }
.row h3 { font-family: var(--font-title); font-weight: 700; font-size: 24px; margin-bottom: 6px; letter-spacing: -.01em; }
.row p { color: var(--g45); font-size: 17px; max-width: 60ch; }

.stats { display: flex; gap: 64px; flex-wrap: wrap; margin-top: 64px; }
.stat b { font-family: var(--font-title); font-weight: 700; font-size: clamp(40px, 6vw, 76px); letter-spacing: -.02em; display: block; line-height: 1; }
.stat span {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--g55);
  display: block; margin-top: 10px;
}

/* ---------- Contact form (brand: ink inputs, 12px radius, ink focus ring) ---------- */
.brief { margin-top: 56px; max-width: 820px; }
.brief__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--g55);
}
.field label b { color: var(--ink); font-weight: 600; }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: rgba(var(--fg-rgb), .04);
  border: 1px solid var(--g75);
  border-radius: 12px;
  padding: 16px 18px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--g55); }
.field input:focus, .field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(var(--fg-rgb), .12);
  background: rgba(var(--canvas-rgb), .6);
}
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  letter-spacing: .02em; text-transform: none;
  color: var(--g45);
  border: 1px solid var(--g75);
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease),
              background .25s var(--ease), transform .2s var(--ease);
  user-select: none;
}
.pills label:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.pills input:checked + label { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pills input:focus-visible + label { box-shadow: 0 0 0 3px rgba(var(--fg-rgb), .2); }
.brief__submit { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.brief__micro { font-size: 14px; color: var(--g55); }
.brief__note {
  display: none;
  margin-top: 16px; font-size: 15px; color: var(--g45);
}
.brief__note.is-visible { display: block; }
.brief__note a { color: var(--ink); }
@media (max-width: 640px) { .brief__grid { grid-template-columns: 1fr; } }

.cta-band { text-align: center; }
.cta-band .hero__cta { justify-content: center; margin-top: 36px; }
.cta-band .godger { font-size: clamp(34px, 5vw, 64px); margin-top: 80px; }

@media (max-width: 900px) {
  .grid2, .grid3, .grid4 { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .page-hero { padding: 160px 0 56px; min-height: 64vh; }
}
@media (max-width: 640px) {
  .page-title { font-size: clamp(48px, 14.5vw, 68px); }
  .page-hero { padding: 120px 0 40px; min-height: 52vh; }
  .page-hero .body-l { font-size: 19px; }
  .row { grid-template-columns: 48px 1fr; gap: 14px; padding: 20px 4px; }
  .row__num { font-size: 26px; }
  .rows { margin-top: 36px; }
  .stats { gap: 28px; margin-top: 40px; }
  .tile { padding: 24px 20px; }
  .tile__num { font-size: 30px; margin-bottom: 24px; }
  .grid2, .grid3, .grid4 { gap: 14px; margin-top: 36px; }
  .case__facts li { padding: 8px 0; }
  .cta-band .godger { margin-top: 48px; }
  .brief { margin-top: 36px; }
  .field { margin-bottom: 14px; }
}

/* ---------- FAQ (native accordion) ---------- */
.faq { margin-top: 48px; border-top: 1px solid var(--g90); }
.faq__item { border-bottom: 1px solid var(--g90); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 4px;
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(19px, 2.4vw, 26px); letter-spacing: -.01em; line-height: 1.25;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; flex: 0 0 auto; width: 16px; height: 16px; margin-top: 6px;
  background:
    linear-gradient(var(--ink), var(--ink)) center/16px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center/2px 16px no-repeat;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__item summary:hover { color: var(--g45); }
.faq__item p {
  color: var(--g45); font-size: 17px; line-height: 1.6;
  max-width: 62ch; padding: 0 4px 28px;
  margin: 0;
}
@media (max-width: 640px) {
  .faq__item summary { padding: 20px 2px; gap: 16px; }
  .faq__item p { font-size: 15px; padding-bottom: 22px; }
}

/* ---------- Reveal defaults (JS animates in) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); }
.js [data-split] { visibility: hidden; }
.js [data-split].is-split { visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .works { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .burger { display: flex; }
  .nav .btn--small { display: none; } /* CTA lives in the menu on mobile */
  .cap { grid-template-columns: 64px 1fr; }
  .cap__tags { grid-column: 2; justify-content: flex-start; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .section + .section::before { left: 24px; right: 24px; }
  .works { grid-template-columns: 1fr; }
  .cap { grid-template-columns: 1fr; gap: 12px; padding: 28px 4px; }
  .cap__tags { grid-column: 1; }
  .shift__list li { grid-template-columns: 1fr; gap: 8px; }
  .shift__list li { padding: 20px 0; }

  /* nav — brand + toggle + burger, calm and small */
  .nav { padding: 14px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav__brand-name { font-size: 32px; }
  .nav__brand-sub { font-size: 8.5px; letter-spacing: .26em; }
  .nav__right { gap: 8px; }
  .theme-toggle { width: 34px; height: 34px; }
  .theme-toggle svg { width: 16px; height: 16px; }
  .burger { width: 34px; height: 34px; }

  .body-l { font-size: 18px; margin-bottom: 14px; }
  .h-xl { margin-bottom: 18px; }
  .eyebrow { margin-bottom: 18px; }
  .hero__sub { font-size: 19px; margin-bottom: 28px; }
  .hero__inner { margin-top: 2vh; }
  .hero__title { margin-bottom: 26px; }
  .hero__trust { font-size: 11px; letter-spacing: .08em; }
  .scrollcue { bottom: 16px; }

  .pullquote { margin-top: 32px; padding-left: 18px; }
  .shift__list { margin-top: 32px; }
  .caplist { margin-top: 40px; }
  .works { gap: 14px; margin-top: 36px; }
  .proof__close { margin-top: 28px; }
  .invite__signoff { margin-top: 48px; }

  /* method — pinned stage breathes on small screens */
  .method__pin { padding: 80px 0 40px; }
  .method__track { gap: 16px; padding: 40px 24px 24px; padding-left: 24px; }
  .step { width: min(320px, 84vw); padding: 28px 24px 32px; }
  .step__num { font-size: 34px; margin-bottom: 28px; }
  .step h3 { font-size: 23px; }
  .step p { font-size: 15px; }

  .marquee { padding: 20px 0; }
  .marquee__inner { gap: 40px; padding-right: 40px; }
  .clients { min-height: 44vh; padding: 64px 0; gap: 28px; }

  .work__dots { aspect-ratio: 16/9; }
  .proof__close { margin-top: 36px; font-size: 18px; }

  .invite__signoff { margin-top: 64px; }

  .footer { padding: 64px 0 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__legal { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  /* Godger is tall & condensed — big and proud on phones, but never clipping */
  .hero__title { font-size: clamp(60px, 20vw, 86px); }
  .invite__title { font-size: clamp(46px, 14.5vw, 62px); }
  .h-xl { font-size: clamp(31px, 8.6vw, 38px); }
  .hero__cta { gap: 12px; }
  .hero__cta .btn { padding: 14px 26px; font-size: 15px; }
  .invite__contacts { flex-direction: column; align-items: center; }
  .invite__contacts span[aria-hidden] { display: none; }
  .eyebrow { font-size: 12px; letter-spacing: .14em; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  /* manifesto degrades to a readable stacked list */
  .manifesto { min-height: 0; }
  .mani__stage { height: auto; display: block; padding: 12vh 0; }
  .mani__lines {
    position: static; width: auto; height: auto;
    overflow: visible; clip-path: none; white-space: normal;
    max-width: 1180px; margin: 0 auto; padding: 0 40px; text-align: center;
  }
  .mani__line {
    position: static;
    font-family: var(--font-title); font-weight: 900;
    font-size: clamp(30px, 5vw, 64px); line-height: 1.05;
    letter-spacing: -.02em; color: var(--ink);
    padding: 4vh 0;
  }
}
