/* Xverb — site styles.
   Dark by construction: the application is dark, the photograph is dark,
   and the orange is the only colour that gets to shout. */

:root {
  --bg:        #08080a;
  --bg-2:      #0d0d10;
  --bg-3:      #131318;
  --line:      #24242b;
  --ink:       #f4f4f2;
  --ink-2:     #b9b9c0;
  --ink-3:     #86868b;
  --accent:    #ef5800;
  --accent-2:  #ff7a2f;
  --accent-ink:#ffffff;
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1180px;
  --pad:       clamp(20px, 5vw, 64px);
  --mono: ui-monospace, "SF Mono", SFMono-Regular, "JetBrains Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

/* Native smooth scrolling is deliberately off: it fights ScrollTrigger's
   measurements on the pinned scene. The anchors are eased in JavaScript
   instead, and jump outright when motion is turned down. */
html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.022em; line-height: 1.06; }
p { margin: 0; }
::selection { background: var(--accent); color: #fff; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ── progress ─────────────────────────────────────────────── */
.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 120; pointer-events: none; }
.progress span { display: block; height: 100%; width: 0; background: var(--accent); }

/* ── nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--pad);
  background: rgba(8, 8, 10, 0);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.is-stuck {
  background: rgba(8, 8, 10, .72);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom-color: var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; letter-spacing: -0.02em; }
.nav-mark { display: block; width: 26px; color: var(--accent); }
.nav-mark svg { width: 100%; height: auto; display: block; }
.nav-word { font-size: 18px; }
.nav-links { display: flex; gap: 22px; margin-left: 12px; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-end { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; text-decoration: none;
  padding: 8px 16px; border-radius: 999px; border: 1px solid transparent;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  white-space: nowrap;
}
.button-solid { background: var(--accent); color: var(--accent-ink); }
.button-solid:hover { background: var(--accent-2); }
.button-ghost { border-color: var(--line); color: var(--ink-2); }
.button-ghost:hover { border-color: #3a3a44; color: var(--ink); }
.button-quiet { color: var(--ink); border-color: #33333c; background: rgba(255,255,255,.03); }
.button-quiet:hover { background: rgba(255,255,255,.08); }
.button-lg { font-size: 16px; padding: 13px 26px; }

/* language switcher — hidden while there is only one language */
.lang { position: relative; }
.lang-button {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--line); color: var(--ink-2);
  font: inherit; font-size: 14px; padding: 7px 12px; border-radius: 999px; cursor: pointer;
}
.lang-button:hover { color: var(--ink); border-color: #3a3a44; }
.chev { width: 10px; height: 6px; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); margin: 0; padding: 6px; list-style: none;
  background: rgba(19,19,24,.96); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 12px; min-width: 160px; z-index: 10;
}
.lang-menu li { padding: 0; }
.lang-menu button {
  display: block; width: 100%; text-align: left; background: none; border: 0; color: var(--ink-2);
  font: inherit; font-size: 14px; padding: 8px 10px; border-radius: 8px; cursor: pointer;
}
.lang-menu button:hover, .lang-menu button[aria-selected="true"] { background: rgba(255,255,255,.07); color: var(--ink); }

/* ── hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(120px, 18vh, 200px) var(--pad) 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-copy { max-width: 900px; position: relative; z-index: 2; }
.eyebrow {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 18px;
}
.hero-title { font-size: clamp(40px, 7.4vw, 88px); letter-spacing: -0.03em; }
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(96deg, var(--accent) 0%, #ff9a4d 60%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin: 26px auto 0; max-width: 660px;
  color: var(--ink-2); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* The opening lines are a CSS animation rather than a scripted one: the hero
   has to arrive even where the script does not. */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise .9s cubic-bezier(.22,.61,.36,1) both; }
.hero-copy > *:nth-child(2) { animation-delay: .07s; }
.hero-copy > *:nth-child(3) { animation-delay: .14s; }
.hero-copy > *:nth-child(4) { animation-delay: .21s; }

.hero-stage { position: relative; width: 100%; max-width: 1320px; margin-top: clamp(48px, 8vh, 96px); }
.hero-shot {
  position: relative; z-index: 2;
  border-radius: clamp(10px, 1.2vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(0,0,0,.6);
  transform-origin: 50% 100%;
}
.hero-shot img { width: 100%; height: auto; aspect-ratio: 2559 / 1439; object-fit: cover; }
.hero-glow {
  position: absolute; left: 50%; top: 20%; width: 70%; height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(239,88,0,.30), transparent 68%);
  filter: blur(60px); z-index: 1;
}
.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: none; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
@media (min-height: 760px) { .scroll-hint { display: flex; } }
.scroll-hint i { display: block; width: 1px; height: 26px; background: linear-gradient(var(--ink-3), transparent); }

/* ── statements ───────────────────────────────────────────── */
.statement {
  max-width: 1000px; margin: 0 auto;
  padding: clamp(120px, 20vh, 220px) var(--pad);
  text-align: center;
}
.statement-text {
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.22; letter-spacing: -0.025em; font-weight: 600;
}
.statement-text span { display: block; }
.statement-text .dim { color: var(--ink-3); }
.statement-foot { margin-top: 28px; color: var(--ink-2); font-size: 17px; }

/* ── the pinned window scene ──────────────────────────────── */
.scene { position: relative; }
.scene-stage {
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 30%) minmax(0, 1fr);
  align-items: center; gap: clamp(24px, 4vw, 64px);
  padding: 0 var(--pad);
  overflow: hidden;
}
.scene-stage > * { min-width: 0; }
.scene-caps { position: relative; order: -1; min-height: 300px; }
.cap {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
}
.cap.is-on { opacity: 1; transform: none; }
.cap h2 { font-size: clamp(26px, 2.6vw, 38px); }
.cap p { color: var(--ink-2); font-size: clamp(15px, 1.3vw, 17px); }

.scene-shot {
  position: relative;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 50px 120px -40px rgba(0,0,0,1);
  will-change: transform;
}
.scene-shot img { width: 100%; height: auto; aspect-ratio: 1262 / 790; object-fit: cover; }

/* ── generic section furniture ────────────────────────────── */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(90px, 14vh, 170px) var(--pad);
}
.section-head { max-width: 780px; }
.section-title { font-size: clamp(30px, 4.2vw, 54px); letter-spacing: -0.03em; }
.section-sub { margin-top: 22px; color: var(--ink-2); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }
.section-sub em { color: var(--ink); font-style: normal; font-weight: 600; }

.reveal { opacity: 1; }

/* ── cards + code ─────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 14px;
}
.card-kicker { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.card-title { font-size: 22px; }
.card-text { color: var(--ink-2); font-size: 15.5px; }
.code {
  margin: 6px 0 0; padding: 18px; overflow-x: auto;
  background: #0a0a0c; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--mono); font-size: 12.5px; line-height: 1.7; color: #d9d9e0;
  tab-size: 2;
}
.code .k { color: #ff7a2f; }
.code .f { color: #7fb8ff; }
.code .s { color: #9bd17a; }
.code .c { color: #6b6b74; font-style: italic; }
.code .d { color: #d7a3ff; }
.code .p { color: #7fb8ff; }
.code .n { color: #ffcf6b; }

.proof {
  margin-top: 34px; padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: radial-gradient(120% 140% at 0% 0%, rgba(239,88,0,.12), transparent 60%), var(--bg-2);
}
.proof-lead { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.02em; }
.proof-text { margin-top: 12px; color: var(--ink-2); max-width: 720px; }
.proof-note { margin-top: 16px; color: var(--ink-3); font-size: 14.5px; }
code { font-family: var(--mono); font-size: .92em; background: rgba(255,255,255,.06); padding: 2px 6px; border-radius: 5px; }
pre code, .mock-code code { background: none; padding: 0; border-radius: 0; font-size: inherit; }

/* ── split sections ───────────────────────────────────────── */
.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.ticks { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 26px; color: var(--ink-2); font-size: 16px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* ── mocks ────────────────────────────────────────────────── */
.mock {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,1);
}
.mock-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2); background: var(--bg-3);
}
.mock-dot { width: 9px; height: 9px; border-radius: 3px; background: var(--accent); }
.mock-title { font-family: var(--mono); font-size: 12px; }
.mock-key { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--accent); }
.mock-body { display: grid; grid-template-columns: 150px minmax(0, 1fr); min-height: 300px; }
.mock-outline { border-right: 1px solid var(--line); padding: 12px; background: rgba(255,255,255,.015); }
.mock-outline-h { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.mock-outline ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.mock-outline li { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); }
.mock-outline li.on { color: var(--accent); }
.mock-code { margin: 0; padding: 16px 18px; font-family: var(--mono); font-size: 12.5px; line-height: 1.75; color: #d9d9e0; overflow-x: auto; }
.mock-code .ln { display: inline-block; width: 26px; color: #45454e; user-select: none; }
.mock-code .k { color: #ff7a2f; }
.mock-code .f { color: #7fb8ff; }
.mock-code .s { color: #9bd17a; }
.mock-code .c { color: #6b6b74; font-style: italic; }

/* pdf compare */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; align-items: stretch; }
.compare-half { margin: 0; display: flex; flex-direction: column; }
.compare-half .mock { flex: 1; }
.compare-half figcaption {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
}
.compare-half.is-good figcaption { color: var(--accent); }
.mock-page, .mock-reading { padding: 26px; min-height: 300px; }
.mock-page { background: #16161a; }
.page-head, .page-foot { text-align: center; font-size: 11px; color: #4d4d56; font-family: var(--mono); }
.page-foot { margin-top: 20px; }
.page-lines { margin: 22px 0; display: grid; gap: 9px; }
.page-lines .l { display: block; height: 7px; border-radius: 3px; background: #33333c; }
.page-lines .w9 { width: 100%; } .page-lines .w8 { width: 92%; } .page-lines .w7 { width: 86%; }
.page-lines .w5 { width: 48%; } .page-lines .w4 { width: 38%; } .page-lines .w3 { width: 28%; }
.page-lines .br { margin-bottom: 14px; }
.mock-reading { background: linear-gradient(180deg, rgba(239,88,0,.07), transparent 40%), #101014; }
.mock-reading h4 { font-size: 17px; margin-bottom: 16px; }
.mock-reading p { height: 7px; border-radius: 3px; background: #3a3a44; margin-bottom: 9px; }
.mock-reading p.r1 { width: 100%; } .mock-reading p.r2 { width: 78%; margin-bottom: 20px; }
.mock-reading ul { margin: 0 0 20px; padding-left: 18px; display: grid; gap: 9px; }
.mock-reading li { height: 7px; border-radius: 3px; background: #3a3a44; list-style: none; position: relative; }
.mock-reading li:first-child { width: 70%; } .mock-reading li:last-child { width: 58%; }
.mock-reading li::before { content: ""; position: absolute; left: -14px; top: 1px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.mock-reading table { width: 100%; border-collapse: collapse; }
.mock-reading td { border: 1px solid var(--line); height: 26px; }

.notes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.note { border-top: 1px solid var(--line); padding-top: 20px; }
.note h3 { font-size: 18px; margin-bottom: 10px; }
.note p { color: var(--ink-2); font-size: 15.5px; }

/* app mock (palette preview) */
.mock-app { --m-accent: var(--accent); --m-bg: #12120f; --m-ink: #eaeae6; font-size: 12px; }
.mock-app { background: var(--m-bg); color: var(--m-ink); transition: background .5s ease, color .5s ease; }
.app-bar { display: flex; align-items: center; gap: 14px; padding: 9px 12px; border-bottom: 1px solid rgba(128,128,140,.22); }
.app-mark { width: 13px; height: 13px; border-radius: 3px; background: var(--m-accent); transition: background .5s ease; }
.app-name { font-weight: 600; }
.app-menu { color: color-mix(in srgb, var(--m-ink) 62%, transparent); }
.app-panes { display: grid; grid-template-columns: 1fr 1fr; }
.app-pane { border-right: 1px solid rgba(128,128,140,.22); padding-bottom: 8px; }
.app-pane:last-child { border-right: 0; }
.app-head, .app-row { display: flex; justify-content: space-between; padding: 5px 12px; font-family: var(--mono); font-size: 11px; }
.app-head { color: color-mix(in srgb, var(--m-ink) 55%, transparent); border-bottom: 1px solid rgba(128,128,140,.22); }
.app-row.is-cursor { background: color-mix(in srgb, var(--m-accent) 30%, transparent); }
.app-row.is-mark { background: var(--m-accent); color: #fff; }
.app-keys { display: flex; gap: 18px; padding: 9px 12px; border-top: 1px solid rgba(128,128,140,.22); font-family: var(--mono); font-size: 11px; color: var(--m-accent); transition: color .5s ease; }

.swatches { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.swatch {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 1px solid var(--line); color: var(--ink-2);
  font: inherit; font-size: 14px; padding: 8px 15px 8px 10px; border-radius: 999px; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.swatch::before {
  content: ""; width: 16px; height: 16px; border-radius: 5px;
  background: linear-gradient(135deg, var(--s1) 0 50%, var(--s2) 50% 100%);
  border: 1px solid rgba(255,255,255,.14);
}
.swatch:hover { color: var(--ink); border-color: #3a3a44; }
.swatch.is-on { border-color: var(--accent); color: var(--ink); }

/* ── photographs ──────────────────────────────────────────── */
.section-photos { max-width: none; }
.section-photos .section-head { max-width: 780px; margin: 0 auto; text-align: center; }
.section-photos .section-head .eyebrow { text-align: center; }
.strip-wrap { margin: 60px 0 0; }
.strip {
  display: flex; align-items: flex-end; gap: 14px;
  padding: 0 var(--pad); height: 340px;
  will-change: transform;
}
.strip-item { margin: 0; flex: 0 0 auto; height: 78%; border-radius: 8px; overflow: hidden; position: relative; opacity: .55; transition: opacity .4s, height .4s; }
.strip-item img { height: 100%; width: auto; max-width: none; object-fit: cover; }
.strip-item.is-on { height: 100%; opacity: 1; box-shadow: 0 20px 50px -20px rgba(0,0,0,.9); outline: 2px solid var(--accent); outline-offset: -2px; }
.strip-note { max-width: 680px; margin: 34px auto 0; padding: 0 var(--pad); text-align: center; color: var(--ink-3); font-size: 15px; }

.grid-3 { max-width: var(--maxw); margin: 80px auto 0; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mini h3 { font-size: 19px; margin-bottom: 12px; }
.mini p { color: var(--ink-2); font-size: 15.5px; }
kbd {
  font-family: var(--mono); font-size: 11px; padding: 2px 6px; border-radius: 5px;
  border: 1px solid var(--line); background: rgba(255,255,255,.05);
}

/* ── platform matrix ──────────────────────────────────────── */
.table-wrap { margin-top: 50px; }
.matrix { width: 100%; border-collapse: collapse; font-size: 16px; }
.matrix th, .matrix td { text-align: left; padding: 16px 12px; border-bottom: 1px solid var(--line); }
.matrix thead th { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.matrix tbody th { font-weight: 500; }
.matrix td { text-align: center; }
.matrix td.y { color: var(--accent); }
.matrix td.n { color: #4d4d56; }
.table-note { margin-top: 18px; color: var(--ink-3); font-size: 14.5px; }

/* ── languages ────────────────────────────────────────────── */
.word-wall { list-style: none; margin: 60px 0 0; padding: 0; display: grid; gap: 4px; }
.word-wall li {
  display: flex; align-items: baseline; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.w-code { font-family: var(--mono); font-size: 12px; color: var(--accent); width: 34px; flex: 0 0 auto; }
.w-text { font-size: clamp(20px, 3vw, 34px); letter-spacing: -0.02em; }

/* ── download ─────────────────────────────────────────────── */
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.dl-card {
  display: flex; flex-direction: column; gap: 10px; text-decoration: none;
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-2);
  transition: border-color .25s, transform .25s, background .25s;
}
.dl-card:hover { border-color: var(--accent); transform: translateY(-3px); background: var(--bg-3); }
.dl-os { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.dl-cmd code { color: var(--ink-2); }
.dl-note { color: var(--ink-3); font-size: 14.5px; flex: 1; }
.dl-go { color: var(--accent); font-size: 14.5px; font-weight: 500; }
.dl-foot { margin-top: 26px; color: var(--ink-3); font-size: 14.5px; }

/* ── footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px var(--pad) 70px;
  display: grid; gap: 18px; justify-items: center; text-align: center;
  color: var(--ink-3); font-size: 14px;
}
.footer-brand { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 600; }
.footer-brand .nav-mark { width: 20px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { text-decoration: none; color: var(--ink-2); }
.footer-links a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-legal .dim { color: #55555d; }
.footer-photo { color: #55555d; font-size: 13px; }

/* ── responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .cards, .compare, .notes, .section-split, .dl-grid, .grid-3 { grid-template-columns: 1fr; }
  .scene-stage {
    grid-template-columns: minmax(0, 1fr); height: auto;
    align-content: start; align-items: start;
    gap: 34px; padding: clamp(70px, 10vh, 110px) var(--pad);
  }
  .scene-shot { position: static; order: -1; margin-bottom: 6px; }
  .scene-caps { position: static; min-height: 0; order: 0; display: grid; gap: 34px; }
  .cap { position: relative; inset: auto; opacity: 1; transform: none; }
  .strip { height: 240px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding-top: 110px; }
  .nav-end .button-ghost { display: none; }
  .word-wall li { gap: 12px; }
  .strip { height: 190px; }
}

/* ── reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-shot, .scene-shot, .strip { transform: none !important; }
  .cap { transition: none; }
  .hero-copy > * { animation: none; }
}
