/* =========================================================================
   Lichtkant Group — Site 2026 / vault redesign
   Single shared stylesheet. Sansation only.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Palette — preserved */
  --base:          #F0EDE8;
  --surface:       #E8E4DC;
  --surface-2:     #DEDAD0;

  --ink:           #001233;
  --ink-deep:      #001845;
  --ink-muted:     #33415c;
  --ink-quiet:     #5c677d;
  --ink-faint:     #7d8597;

  --hairline:      rgba(0, 18, 51, 0.14);
  --hairline-soft: rgba(0, 18, 51, 0.07);
  --highlight:     rgba(255, 255, 255, 0.55);

  --accent:        #0353a4;
  --accent-bright: #0466c8;
  --accent-deep:   #023e7d;

  --lamp:          rgba(4, 102, 200, 0.06);

  /* Type — Sansation only */
  --font: "Sansation", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --font-display: var(--font);
  --font-sans:    var(--font);

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.55, 0, 0.65, 0);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:    220ms;
  --dur:         520ms;
  --dur-slow:    1100ms;

  /* Layout */
  --nav-h:       98px;
  --gutter:      clamp(1.5rem, 5vw, 4rem);
  --max-w:       1440px;
  --read-w:      62ch;

  /* Liquid glass */
  --glass-tint:    rgba(240, 237, 232, 0.55);
  --glass-tint-hi: rgba(240, 237, 232, 0.78);
  --glass-edge:    rgba(255, 255, 255, 0.55);
  --glass-shadow:  0 1px 0 rgba(0,18,51,0.04), 0 24px 60px -28px rgba(0,18,51,0.18), 0 6px 18px -10px rgba(0,18,51,0.10);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

body {
  background: var(--base);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.005em;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--base); }

/* -------------------------------------------------------------------------
   2. Atmosphere — paper grain, soft top light
   ------------------------------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100vw 60vh at 50% -10%, var(--lamp), transparent 60%),
    radial-gradient(ellipse 80vw 40vh at 50% 110%, rgba(0,18,51,0.05), transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.10;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.07  0 0 0 0 0.18  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.site-shell, .nav, .footer, .page-veil { position: relative; z-index: 2; }

/* -------------------------------------------------------------------------
   3. Typography — Sansation, used with intent
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink-deep);
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
}

.display {
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink-deep);
}

.heading {
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.subheading {
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

p { margin: 0; }

.lede {
  font-weight: 300;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 50ch;
}

.body-copy {
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: var(--read-w);
}
.body-copy + .body-copy { margin-top: 1.4em; }
.body-copy strong, .body-copy b { color: var(--ink); font-weight: 700; }
.body-copy em { font-style: italic; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--ink-faint);
}

.muted { color: var(--ink-muted); }
.quiet { color: var(--ink-quiet); }
.faint { color: var(--ink-faint); }

.figure {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}

/* Italic for accent — sparing */
em { font-style: italic; }

/* -------------------------------------------------------------------------
   4. Word-by-word reveal — Apple style
   ------------------------------------------------------------------------- */
[data-split] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
  will-change: opacity, transform;
}
[data-split] .word.is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-split] .ws { display: inline-block; width: 0.28em; }

/* Generic block reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-in { transition-delay: 80ms; }
[data-reveal-delay="2"].is-in { transition-delay: 160ms; }
[data-reveal-delay="3"].is-in { transition-delay: 260ms; }
[data-reveal-delay="4"].is-in { transition-delay: 360ms; }

/* -------------------------------------------------------------------------
   5. Layout primitives
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 980px; }
.container--reading { max-width: 760px; }

.section {
  padding-block: clamp(6rem, 14vw, 14rem);
  position: relative;
}
.section--tight { padding-block: clamp(3rem, 7vw, 6rem); }
.section--bleed { padding-inline: 0; }

.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}

/* -------------------------------------------------------------------------
   6. Navigation — quiet ledger
   ------------------------------------------------------------------------- */
/* Liquid glass nav — layered blur, top highlight, soft inner edge,
   scrolled state tightens contrast and lifts the slab. */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(240,237,232,0.72), rgba(240,237,232,0.42));
  backdrop-filter: blur(26px) saturate(1.6) brightness(1.02);
  -webkit-backdrop-filter: blur(26px) saturate(1.6) brightness(1.02);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 0 0 0 transparent;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease);
}
/* Refraction line — a fine top highlight that catches the lamp glow */
.nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  pointer-events: none;
  opacity: 0.55;
}
/* Lower hairline rendered as a separate gradient for soft fade-out */
.nav::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline) 18%, var(--hairline) 82%, transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.nav.is-scrolled {
  background:
    linear-gradient(180deg, rgba(240,237,232,0.88), rgba(240,237,232,0.66));
  backdrop-filter: blur(32px) saturate(1.7) brightness(1.03);
  -webkit-backdrop-filter: blur(32px) saturate(1.7) brightness(1.03);
  border-bottom-color: transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 12px 30px -22px rgba(0,18,51,0.22);
}
.nav.is-scrolled::after { opacity: 1; }

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink-deep);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
  will-change: transform;
}
.nav__brand:hover { opacity: 0.85; transform: translateY(-1px); }
.nav__brand-mark {
  width: clamp(30px, 3.2vw, 43px);
  height: clamp(30px, 3.2vw, 43px);
  flex: 0 0 auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,18,51,0.12));
  transition: transform var(--dur-slow) var(--ease);
}
.nav__brand:hover .nav__brand-mark { transform: rotate(-2deg) scale(1.04); }

.nav__center {
  justify-self: center;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav__links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-block: 0.4rem;
  transition: color var(--dur-fast) var(--ease);
  overflow: hidden;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 520ms var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--ink); }
/* Letter-mask hover lift — split-flap feel */
.nav__link span.label { display: inline-block; transition: transform 420ms var(--ease); }
.nav__link:hover span.label { transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 1px;
  justify-self: end;
}
.nav__toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 18px; }
.nav__toggle span:nth-child(3) { top: 23px; }
body.menu-open .nav__toggle span:nth-child(1) { top: 18px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(240, 237, 232, 0.94);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
body.menu-open .menu { opacity: 1; pointer-events: auto; }
.menu__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 1.5rem;
  text-align: center;
}
.menu__link {
  font-weight: 700;
  font-size: clamp(2.5rem, 9vw, 5rem);
  color: var(--ink-deep);
  letter-spacing: -0.03em;
  display: inline-block;
  transition: opacity var(--dur-fast) var(--ease);
}
.menu__link:hover { opacity: 0.55; }

/* -------------------------------------------------------------------------
   7. Page veil + preloader
   ------------------------------------------------------------------------- */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--base);
  opacity: 1;
  pointer-events: none;
  transition: opacity 520ms var(--ease);
}
.page-veil.is-hidden { opacity: 0; }
.page-veil.is-leaving { opacity: 1; pointer-events: auto; transition: opacity 380ms var(--ease-in); }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: var(--base);
  pointer-events: auto;
  transition: opacity 600ms var(--ease);
}
.preloader.is-leaving .preloader__top    { transform: translateY(-100%); }
.preloader.is-leaving .preloader__bottom { transform: translateY(100%); }
.preloader.is-leaving .preloader__inner  { opacity: 0; transform: translateY(-8px); }
.preloader.is-gone { opacity: 0; pointer-events: none; }

.preloader__top, .preloader__bottom {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: var(--base);
  transition: transform 900ms cubic-bezier(0.7, 0, 0.2, 1);
  z-index: 1;
}
.preloader__top { top: 0; }
.preloader__bottom { bottom: 0; }

.preloader__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.preloader__mark {
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.25rem);
  letter-spacing: -0.03em;
  color: var(--ink-deep);
  opacity: 0;
  animation: pre-mark-in 800ms var(--ease) 100ms forwards;
}
@keyframes pre-mark-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.preloader__line {
  width: clamp(180px, 22vw, 280px);
  height: 1px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}
.preloader__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  animation: pre-line 1100ms var(--ease) 280ms forwards;
}
@keyframes pre-line { to { transform: scaleX(1); } }
.preloader__caption {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  opacity: 0;
  animation: pre-caption 600ms var(--ease) 600ms forwards;
}
@keyframes pre-caption { to { opacity: 1; } }

/* -------------------------------------------------------------------------
   8. HOME — monumental hero
   ------------------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding-top: var(--nav-h);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.hero__corner {
  position: absolute;
  top: calc(var(--nav-h) + clamp(1rem, 3vw, 2rem));
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 3;
}
.hero__corner--l { left: var(--gutter); text-align: left; }
.hero__corner--r { right: var(--gutter); text-align: right; align-items: flex-end; }
.hero__corner span { display: block; }
.hero__corner-key { color: var(--ink-faint); }

.hero__core {
  align-self: center;
  width: 100%;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.hero__name {
  font-weight: 700;
  font-size: clamp(4rem, 19vw, 22rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: var(--ink-deep);
  margin: 0;
  white-space: nowrap;
  position: relative;
}
.hero__name .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1200ms var(--ease-out), opacity 1200ms var(--ease-out);
}
.hero.is-in .hero__name .char {
  transform: translateY(0);
  opacity: 1;
}
.hero.is-in .hero__name .char:nth-child(1) { transition-delay: 0ms; }
.hero.is-in .hero__name .char:nth-child(2) { transition-delay: 40ms; }
.hero.is-in .hero__name .char:nth-child(3) { transition-delay: 80ms; }
.hero.is-in .hero__name .char:nth-child(4) { transition-delay: 120ms; }
.hero.is-in .hero__name .char:nth-child(5) { transition-delay: 160ms; }
.hero.is-in .hero__name .char:nth-child(6) { transition-delay: 200ms; }
.hero.is-in .hero__name .char:nth-child(7) { transition-delay: 240ms; }
.hero.is-in .hero__name .char:nth-child(8) { transition-delay: 280ms; }
.hero.is-in .hero__name .char:nth-child(9) { transition-delay: 320ms; }

.hero__line {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  max-width: 36ch;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 900ms var(--ease-out) 700ms, transform 900ms var(--ease-out) 700ms;
}
.hero.is-in .hero__line { opacity: 1; transform: translateY(0); }

.hero__foot {
  width: 100%;
  padding-inline: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 900ms var(--ease-out) 1000ms, transform 900ms var(--ease-out) 1000ms;
}
.hero.is-in .hero__foot { opacity: 1; transform: translateY(0); }

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll-line {
  width: 22px;
  height: 1px;
  background: var(--ink-faint);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  animation: scroll-pulse 2.6s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  50.1%{ transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (max-width: 720px) {
  .hero__corner { display: none; }
}

/* -------------------------------------------------------------------------
   9. HOME — horizontal scroll act
   ------------------------------------------------------------------------- */
.hscroll {
  position: relative;
  background: var(--base);
}
.hscroll__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hscroll__track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  align-items: center;
  will-change: transform;
}
.hscroll__panel {
  flex: 0 0 100vw;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(6rem, 12vw, 10rem) clamp(2rem, 8vw, 8rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  border-left: 1px solid var(--hairline);
}
.hscroll__panel:first-child { border-left: 0; }

.hscroll__index {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.hscroll__index-num { color: var(--ink-faint); }

.hscroll__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  max-width: 36ch;
}
.hscroll__title {
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink-deep);
}
.hscroll__title em { font-style: italic; font-weight: 300; }
.hscroll__copy {
  max-width: 36ch;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.hscroll__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid var(--hairline);
  padding-top: 1.2rem;
}

.hscroll__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--hairline);
  z-index: 5;
}
.hscroll__progress-bar {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 80ms linear;
}

@media (max-width: 720px) {
  /* Fall back to vertical stack on small screens */
  .hscroll__sticky { position: static; height: auto; }
  .hscroll__track { flex-direction: column; height: auto; }
  .hscroll__panel { flex: 0 0 auto; min-height: 80svh; border-left: 0; border-top: 1px solid var(--hairline); }
  .hscroll__panel:first-child { border-top: 0; }
  .hscroll__progress { display: none; }
}

/* -------------------------------------------------------------------------
   10. HOME — composed verticals & closing
   ------------------------------------------------------------------------- */
.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(6rem, 14vw, 14rem);
}
@media (min-width: 880px) {
  .statement {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(3rem, 9vw, 9rem);
    align-items: start;
  }
}
.statement__index {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.statement__num { color: var(--ink); font-size: 0.72rem; }
.statement__title {
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink-deep);
  margin-bottom: 1.6rem;
}
.statement__title em { font-style: italic; font-weight: 300; }
.statement__copy {
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: var(--read-w);
}
.statement__copy + .statement__copy { margin-top: 1.4em; }
.statement__copy strong { color: var(--ink); font-weight: 700; }

/* Stat strip */
.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.figures__cell {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.figures__cell:first-child { border-left: 0; }
.figures__num {
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-deep);
}
.figures__label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.figures__caption {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  font-weight: 300;
}
@media (max-width: 720px) {
  .figures__cell { border-left: 0; border-top: 1px solid var(--hairline); }
  .figures__cell:first-child { border-top: 0; }
}

/* Closing line — quiet door */
.closing {
  padding-block: clamp(8rem, 18vw, 18rem);
  text-align: center;
}
.closing__text {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 3.25rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  max-width: 26ch;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   11. ABOUT — editorial
   ------------------------------------------------------------------------- */
.page-head {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-head__eyebrow { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }
.page-head__title { max-width: 20ch; }
.page-head__lede { margin-top: clamp(1.25rem, 2.5vw, 2rem); }

/* About act layout */
.act {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--hairline);
}
@media (min-width: 880px) {
  .act { grid-template-columns: minmax(160px, 220px) minmax(0, 1fr); gap: clamp(3rem, 7vw, 6rem); }
}
.act__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
}
.act__num {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: var(--ink);
}
.act__name {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.act__body {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3.5vw, 3rem);
}
.act__title {
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink-deep);
  max-width: 18ch;
}
.act__title em { font-style: italic; font-weight: 300; }

/* Pull quote block */
.pull {
  padding-block: clamp(3rem, 6vw, 6rem);
  text-align: left;
}
.pull__text {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  max-width: 28ch;
}
.pull__cite {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* Particulars list — used in about */
.particulars {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline);
}
.particulars__row {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.particulars__label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.particulars__value {
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-deep);
  letter-spacing: -0.005em;
}
@media (max-width: 560px) {
  .particulars__row { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* -------------------------------------------------------------------------
   12. PRESS — archival cold
   ------------------------------------------------------------------------- */
.archive {
  padding-block: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid var(--hairline);
}
.archive__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.archive__title { color: var(--ink); font-weight: 700; }

.archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive__row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--ink-faint);
  font-style: italic;
  font-weight: 300;
}
.archive__row-date {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.archive__row-action {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.archive__empty {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.archive__empty-num {
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink-deep);
}
.archive__empty-line {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
@media (max-width: 640px) {
  .archive__row { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* Press silence block — center, sparse */
.silence {
  padding-block: clamp(8rem, 16vw, 16rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.silence__line {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--ink-muted);
  max-width: 44ch;
}

/* -------------------------------------------------------------------------
   13. CONTACT — intimate
   ------------------------------------------------------------------------- */
.letter {
  max-width: 720px;
  margin: 0 auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.letter__intro {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--hairline);
}
.letter__intro p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
}
.letter__intro em { color: var(--ink); font-style: italic; }

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field__label {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.field__label .optional {
  text-transform: none;
  letter-spacing: 0.05em;
  font-style: italic;
  color: var(--ink-faint);
  margin-left: 0.5em;
  font-size: 0.78rem;
}
.field__input,
.field__textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 0.75rem 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.005em;
  resize: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.field__input:focus,
.field__textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field__textarea { min-height: 9rem; line-height: 1.65; }
.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
  font-weight: 300;
}

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--ink);
  color: var(--base);
  background: var(--ink);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur) var(--ease);
  will-change: transform;
}
.btn::after {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  transition: width var(--dur) var(--ease);
}
.btn:hover {
  background: transparent;
  color: var(--ink);
}
.btn:hover::after { width: 1.75rem; }
.btn:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

.form__note {
  font-size: 0.82rem;
  color: var(--ink-quiet);
  font-style: italic;
  font-weight: 300;
  max-width: 32ch;
}

.form__confirmation {
  display: none;
  border-top: 1px solid var(--hairline);
  padding-top: 2rem;
}
.form.is-submitted .form__body { display: none; }
.form.is-submitted .form__confirmation { display: block; }
.form__confirmation-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin-bottom: 1rem;
}
.form__confirmation p {
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.letter__sigil {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 1rem;
}

/* -------------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------------- */
.footer {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-block: clamp(3rem, 6vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(240,237,232,0.0), rgba(240,237,232,0.55));
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__brand {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-deep);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hairline);
  display: inline-block;
  margin-bottom: 0.4rem;
}
.footer__label {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 0.4rem;
}
.footer__line { font-size: 0.92rem; color: var(--ink-quiet); font-weight: 300; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link {
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-weight: 300;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.footer__link:hover { color: var(--ink); }

.footer__bottom {
  max-width: var(--max-w);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-inline: var(--gutter);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* -------------------------------------------------------------------------
   15. Skip link & focus
   ------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--base);
  padding: 0.6rem 1rem;
  border-radius: 0;
  z-index: 200;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

/* -------------------------------------------------------------------------
   16. Responsive — nav
   ------------------------------------------------------------------------- */
@media (max-width: 880px) {
  :root { --nav-h: 78px; }
  .nav__center { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__brand-mark { width: 34px; height: 34px; }
}
@media (max-width: 720px) {
  :root { --nav-h: 68px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .nav__brand-mark { width: 30px; height: 30px; }
  .display { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .page-head__title { max-width: 100%; }
  .act__meta { position: static; }
  .hscroll__title { font-size: clamp(2rem, 7vw, 3.5rem); }
  .hero__name { white-space: normal; font-size: clamp(3.25rem, 17vw, 6rem); line-height: 0.88; }
  .hero__foot { font-size: 0.58rem; letter-spacing: 0.22em; gap: 1rem; }
}

@media (max-width: 480px) {
  .display { font-size: clamp(2rem, 8vw, 2.75rem); }
  .act__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .statement__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hscroll__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .form__actions { flex-direction: column; align-items: stretch; }
  .form__note { max-width: none; text-align: center; }
  .hero__foot > span:last-child { display: none; }
  .footer__inner { gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
  .closing__text { font-size: clamp(1.25rem, 5vw, 2rem); }
}

/* -------------------------------------------------------------------------
   17. Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-split] .word { opacity: 1; transform: none; }
  .hero__name .char, .hero__line, .hero__foot { opacity: 1; transform: none; }
  .preloader { display: none !important; }
}

/* -------------------------------------------------------------------------
   18. Page-personality body classes
   ------------------------------------------------------------------------- */
body.page-press { background: var(--surface); }
body.page-press::before { opacity: 0.6; }

/* -------------------------------------------------------------------------
   19. Scroll progress — top hairline that fills as you read
   ------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  z-index: 60;
  pointer-events: none;
  background: transparent;
}
.scroll-progress__bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--ink) 12%, var(--ink) 88%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 60ms linear;
  opacity: 0.55;
}

/* -------------------------------------------------------------------------
   20. Liquid glass — shared utility on cards / footer
   ------------------------------------------------------------------------- */
.glass {
  position: relative;
  background:
    linear-gradient(180deg, rgba(240,237,232,0.66), rgba(240,237,232,0.38));
  backdrop-filter: blur(22px) saturate(1.5) brightness(1.02);
  -webkit-backdrop-filter: blur(22px) saturate(1.5) brightness(1.02);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0,18,51,0.04),
    0 1px 0 rgba(0,18,51,0.04),
    0 24px 60px -28px rgba(0,18,51,0.18);
  border-radius: 4px;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   21. Footer — glass highlight & enhanced links
   ------------------------------------------------------------------------- */
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  pointer-events: none;
}

/* Footer link — animated underline reveal */
.footer__link {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color var(--dur-fast) var(--ease), background-size 420ms var(--ease);
  padding-bottom: 2px;
}
.footer__link:hover { color: var(--ink); background-size: 100% 1px; }

/* Brand wordmark in footer — subtle character drift on hover */
.footer__brand {
  transition: letter-spacing var(--dur) var(--ease);
}
.footer__brand:hover { letter-spacing: 0.42em; }

/* -------------------------------------------------------------------------
   22. Premium micro-animations
   ------------------------------------------------------------------------- */

/* Hero name — subtle drift after entrance, breathing only */
@keyframes hero-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.hero.is-in .hero__name { animation: hero-breathe 9s var(--ease) 1.6s infinite; }

/* Body copy + prose anchors — animated underline */
.body-copy a, .lede a, .silence__line a {
  color: var(--ink);
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 420ms var(--ease), opacity var(--dur-fast) var(--ease);
  padding-bottom: 2px;
}
.body-copy a:hover, .lede a:hover, .silence__line a:hover { opacity: 0.75; }

/* Figures cells — lift, subtle glow on the rule */
.figures__cell {
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
}
.figures__cell::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease);
  opacity: 0.6;
}
.figures__cell:hover {
  background: rgba(255,255,255,0.18);
}
.figures__cell:hover::after { transform: scaleX(1); }
.figures__cell:hover .figures__num {
  transform: translateY(-2px);
}
.figures__num { transition: transform var(--dur) var(--ease); }

/* Particulars rows — soft hover trace */
.particulars__row {
  transition: background var(--dur) var(--ease);
}
.particulars__row:hover { background: rgba(255,255,255,0.18); }
.particulars__value {
  transition: transform var(--dur) var(--ease);
}
.particulars__row:hover .particulars__value { transform: translateX(4px); }

/* Archive rows */
.archive__row {
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.archive__row:hover {
  background: rgba(255,255,255,0.18);
  color: var(--ink-muted);
  padding-inline: 0.75rem;
}

/* HScroll panel — subtle scale-in on engage */
.hscroll__panel {
  transition: opacity 700ms var(--ease);
}
.hscroll__title {
  transition: transform 700ms var(--ease);
}

/* Form fields — focus glow */
.field {
  position: relative;
}
.field::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms var(--ease);
  pointer-events: none;
}
.field:focus-within::after { transform: scaleX(1); }
.field:focus-within .field__label {
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease);
}

/* Button — glass pulse on hover */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 800ms var(--ease);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }

/* Menu links — staggered reveal */
body.menu-open .menu__link {
  animation: menu-rise 720ms var(--ease) both;
}
body.menu-open .menu__list li:nth-child(1) .menu__link { animation-delay: 80ms; }
body.menu-open .menu__list li:nth-child(2) .menu__link { animation-delay: 160ms; }
body.menu-open .menu__list li:nth-child(3) .menu__link { animation-delay: 240ms; }
body.menu-open .menu__list li:nth-child(4) .menu__link { animation-delay: 320ms; }
@keyframes menu-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Soft section markers fade in */
.statement__index, .act__meta, .hscroll__index, .hscroll__foot {
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease);
}
.statement:hover .statement__index,
.act:hover .act__meta { opacity: 1; }

/* Reduced motion guard for the new animations */
@media (prefers-reduced-motion: reduce) {
  .hero.is-in .hero__name { animation: none !important; }
  .scroll-progress { display: none; }
  .btn::before { display: none; }
  body.menu-open .menu__link { animation: none !important; }
}

/* -------------------------------------------------------------------------
   23. GDPR Cookie Banner (centred pop-up)
   ------------------------------------------------------------------------- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 18, 51, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms var(--ease), visibility 0s linear 420ms;
}
.cookie-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms var(--ease), visibility 0s linear 0s;
}

.cookie-banner {
  position: relative;
  width: 92vw;
  max-width: 480px;
  background: var(--ink-deep);
  color: var(--base);
  border-radius: 12px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 24px 80px -16px rgba(0, 18, 51, 0.5);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 420ms var(--ease);
}
.cookie-overlay.is-visible .cookie-banner {
  transform: translateY(0) scale(1);
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--base);
}

.cookie-banner__text {
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.72);
}
.cookie-banner__text a {
  color: var(--base);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.cookie-banner__btn {
  padding: 0.7rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--base);
  border-radius: 6px;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.cookie-banner__btn--accept {
  background: var(--base);
  color: var(--ink-deep);
}
.cookie-banner__btn--accept:hover {
  background: transparent;
  color: var(--base);
}
.cookie-banner__btn--reject {
  background: transparent;
  color: var(--base);
}
.cookie-banner__btn--reject:hover {
  background: var(--base);
  color: var(--ink-deep);
}

/* -------------------------------------------------------------------------
   24. Policy pages (privacy, cookies)
   ------------------------------------------------------------------------- */
.policy { padding-block: clamp(3rem, 6vw, 5rem); }
.policy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.policy h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}
.policy p, .policy li {
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: var(--read-w);
}
.policy p + p { margin-top: 1rem; }
.policy ul, .policy ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}
.policy li + li { margin-top: 0.4rem; }
.policy strong { color: var(--ink); font-weight: 700; }
.policy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

