/* ============================================================
   ZHANYI ZHONGFU — International v2.0 "The Night Crossing"
   A descent: the page falls from dusk sky through the waterline
   into deep water. Scroll = depth. The sounding line (left gauge)
   and the depth marks are structure, not decoration: each practice
   sits at the depth it occupies in a client's company.
   Palette = the brand at night: water-column blues, moon gold for
   light/data, sail terracotta for the one warm action.
   Self-hosted fonts, zero libraries, no scroll hijacking.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
a { color: inherit; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Fonts (self-hosted, OFL) ---------- */
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("site-assets/fonts/cormorant-600.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: italic; font-weight: 600; font-display: swap;
  src: url("site-assets/fonts/cormorant-600i.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree"; font-style: normal; font-weight: 300 900; font-display: swap;
  src: url("site-assets/fonts/figtree-var.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("site-assets/fonts/spacemono-400.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("site-assets/fonts/spacemono-700.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  /* the water column — the page descends through these */
  --sky:    #122036;
  --sea-0:  #0C1728;
  --sea-1:  #091121;
  --abyss:  #060C18;

  --ink:    #F2EBDC;   /* moonlit paper — primary text        */
  --ink-2:  #ADA795;   /* weathered rope — secondary text     */
  --ink-3:  #6E6F66;   /* fog — metadata                      */
  --line:   rgba(242, 235, 220, .13);
  --line-2: rgba(242, 235, 220, .26);

  --gold:      #D9A94F;                 /* moonlight: data, waypoints, italics */
  --gold-soft: rgba(217, 169, 79, .16);
  --moon:      #F4E9CE;                 /* the moonpath itself                 */
  --sail:      #C9663F;                 /* the sail — primary action only      */
  --sail-lit:  #DE8055;                 /* the sail with moonlight on it: display italics */
  --sail-deep: #A94F2C;

  --font:         "Figtree", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Songti SC", "STSong", Georgia, serif;
  --font-mono:    "Space Mono", "SF Mono", Menlo, Consolas, monospace;

  --container: 1200px;
  --pad: clamp(22px, 4.5vw, 48px);
  --section: clamp(110px, 13vw, 190px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  font-size: 16.5px;
  color: var(--ink-2);
  background:
    linear-gradient(180deg, var(--sky) 0%, var(--sea-0) 26%, var(--sea-1) 58%, var(--abyss) 100%)
    var(--abyss);
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}
::selection { background: rgba(217, 169, 79, .32); color: var(--moon); }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: 16px; top: -56px; z-index: 200;
  background: var(--ink); color: var(--abyss);
  padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus-visible { top: 0; }

/* ---------- Type roles ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .004em;
  line-height: 1.0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--sail-lit); }
.h-hero { font-size: clamp(50px, 7.2vw, 100px); }
.h-sect { font-size: clamp(38px, 5.5vw, 78px); }
.h-sub  { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.08; }

.lede {
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.72;
  max-width: 58ch;
}
.lede b { color: var(--ink); font-weight: 500; }

.mono {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.mono--gold { color: var(--gold); }

/* vertical CJK marginalia — the studio's own script, set the old way */
.cjk-v {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: .5em;
  color: var(--ink-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 13px 28px;
  border: 0; border-radius: 12px;
  font-size: 15.5px; font-weight: 700; color: var(--ink);
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn--sail { background: var(--sail); color: #FFF6EA; }
.btn--sail:hover { background: var(--sail-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(201, 102, 63, .45); }
.btn--ghost { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line-2); color: var(--ink); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--moon); transform: translateY(-2px); }
.btn--sm { min-height: 40px; padding: 9px 20px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 17, 33, 0);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.scrolled {
  background: rgba(9, 17, 33, .78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17.5px; letter-spacing: .02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand img { width: 30px; height: 30px; }
.brand small {
  font-size: 10px; font-weight: 600; letter-spacing: .3em;
  color: var(--ink-3); align-self: flex-end; padding-bottom: 2px;
}
.nav__links { display: none; margin-left: auto; gap: 30px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; transition: color .18s var(--ease);
}
.nav__links a:hover { color: var(--moon); }
.nav__links a.on { color: var(--ink); }
.nav__lang {
  margin-left: auto;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  text-decoration: none; white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav__lang:hover { color: var(--gold); }
.nav__cta { margin-left: 0; }
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__lang { margin-left: 0; }
}

/* ============================================================
   THE NIGHT SEA — the brand boat, center stage.
   The wordmark drifts behind it and stands on the waterline;
   the water answers with a flipped reflection; the boat rides
   the line on three layered periods (34s wander x 5.2s heave x
   6.8s pitch) that never quite repeat. Pure CSS.
   ============================================================ */
.nightsea { position: relative; padding-top: clamp(6px, 1.5vh, 18px); overflow: clip; }

.seaband {
  position: relative;
  height: clamp(360px, 48vh, 520px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  animation: seafade 1.2s var(--ease) both;
}
@keyframes seafade { from { opacity: 0; } to { opacity: 1; } }

/* sky above the waterline */
.seaband__air { position: absolute; inset: 0 0 32% 0; overflow: hidden; }
.seaband__stream, .seaband__reflect {
  position: absolute; left: 0;
  display: flex; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(86px, 13.5vw, 196px);
  line-height: 1;
  animation: seadrift 84s linear infinite;
  will-change: transform;
}
.seaband__stream span, .seaband__reflect span { display: block; padding-right: .18em; }
.seaband__stream {
  bottom: -0.08em;
  color: rgba(242, 235, 220, .08);
  filter: blur(3px);
}
@keyframes seadrift {
  from { translate: 0 0; }
  to   { translate: -50% 0; }
}

/* the water */
.seaband__sea {
  position: absolute; inset: 68% 0 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(242, 235, 220, .16);
  background: linear-gradient(180deg, rgba(244, 233, 206, .045) 0%, rgba(9, 17, 33, 0) 62%);
}
/* brighter stretch of horizon where the moon pool sits */
.seaband__sea::before {
  content: "";
  position: absolute; top: -1px; left: 50%;
  width: min(620px, 74vw); height: 1px;
  translate: -50% 0;
  background: linear-gradient(90deg, transparent, rgba(244, 233, 206, .5) 30%, rgba(244, 233, 206, .78) 50%, rgba(244, 233, 206, .5) 70%, transparent);
}
.seaband__reflect {
  top: -0.08em;
  color: rgba(242, 235, 220, .05);
  filter: blur(2.2px);
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(180deg, #000 0, transparent 80%);
  mask-image: linear-gradient(180deg, #000 0, transparent 80%);
}
/* the moon pool the boat sails on */
.seaband__moonpool {
  position: absolute; top: 0; bottom: -8px; left: 50%;
  width: clamp(300px, 40vw, 560px);
  translate: -50% 0;
  background:
    linear-gradient(90deg, transparent 32%, rgba(244, 233, 206, .09) 50%, transparent 68%),
    repeating-linear-gradient(180deg,
      rgba(244, 233, 206, .15) 0 1.5px,
      rgba(244, 233, 206, 0) 1.5px 7px),
    linear-gradient(180deg, rgba(244, 233, 206, .22), rgba(244, 233, 206, .03) 80%);
  -webkit-mask-image: radial-gradient(50% 130% at 50% -12%, #000 34%, rgba(0, 0, 0, .5) 62%, transparent 84%);
  mask-image: radial-gradient(50% 130% at 50% -12%, #000 34%, rgba(0, 0, 0, .5) 62%, transparent 84%);
  animation: moonshimmer 7s ease-in-out infinite alternate;
}
.seaband__moonpool::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg,
    rgba(244, 233, 206, 0) 0 4px,
    rgba(244, 233, 206, .09) 4px 6px,
    rgba(244, 233, 206, 0) 6px 13px);
  animation: moonshimmer2 4.6s ease-in-out infinite alternate;
}
@keyframes moonshimmer  { from { opacity: .72; } to { opacity: 1; } }
@keyframes moonshimmer2 { from { opacity: .35; translate: 0 0; } to { opacity: .95; translate: 0 4px; } }
/* slow wave lines */
.seaband__wave {
  position: absolute; left: -220px; right: 0; height: 44px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='44'%3E%3Cpath d='M0 22 Q27.5 14 55 22 T110 22 T165 22 T220 22' fill='none' stroke='%23F2EBDC' stroke-width='1.4'/%3E%3C/svg%3E") 0 0 / 220px 44px repeat-x;
  animation: streakdrift 34s linear infinite;
}
.seaband__wave--a { top: 12%; opacity: .06; }
.seaband__wave--b { top: 46%; opacity: .04; animation-duration: 48s; animation-direction: reverse; }
@keyframes streakdrift { from { translate: 0 0; } to { translate: 220px 0; } }

/* THE BOAT — big, center stage, lantern-lit */
.seaband__boat {
  position: absolute; top: 68%; left: 50%;
  width: clamp(150px, 19vw, 252px);
  translate: -50% -97%;
  animation: boatwander 34s ease-in-out infinite alternate;
  filter:
    drop-shadow(0 22px 40px rgba(3, 7, 14, .65))
    drop-shadow(0 0 34px rgba(201, 102, 63, .16));
}
.seaband__float { animation: boatheave 5.2s ease-in-out infinite alternate; }
.seaband__hull {
  display: block; width: 100%;
  animation: boatpitch 6.8s ease-in-out infinite alternate;
  transform-origin: 50% 86%;
}
.seaband__mirror {
  position: absolute; top: calc(100% - 8px); left: 0;
  width: 100%;
  transform: scaleY(-.84);
  opacity: .2;
  filter: blur(2.4px);
  -webkit-mask-image: linear-gradient(180deg, #000 10%, transparent 74%);
  mask-image: linear-gradient(180deg, #000 10%, transparent 74%);
  animation: mirrorpitch 6.8s ease-in-out infinite alternate;
}
@keyframes boatwander {
  from { translate: calc(-50% - clamp(22px, 3vw, 46px)) -97%; }
  to   { translate: calc(-50% + clamp(22px, 3vw, 46px)) -97%; }
}
@keyframes boatheave {
  from { transform: translateY(2px); }
  to   { transform: translateY(-3.5px); }
}
@keyframes boatpitch {
  from { transform: rotate(-1.5deg); }
  to   { transform: rotate(1.7deg); }
}
@keyframes mirrorpitch {
  from { transform: scaleY(-.84) rotate(1.3deg); }
  to   { transform: scaleY(-.84) rotate(-1.5deg); }
}

/* pause — WCAG 2.2.2, outside the aria-hidden scene */
.ns__pause {
  position: absolute; right: clamp(16px, 3vw, 40px); top: 12px; z-index: 5;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); padding: 8px 10px;
  transition: color .18s var(--ease);
}
.ns__pause:hover { color: var(--gold); }
html.sea-paused .seaband__stream, html.sea-paused .seaband__reflect,
html.sea-paused .seaband__moonpool, html.sea-paused .seaband__moonpool::after,
html.sea-paused .seaband__wave, html.sea-paused .seaband__boat,
html.sea-paused .seaband__float, html.sea-paused .seaband__hull,
html.sea-paused .seaband__mirror { animation-play-state: paused; }

/* hero copy under the scene */
.hero-center {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding-top: clamp(30px, 4.5vw, 52px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.hero-center .ns__kicker { justify-content: center; margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
.hero-center .ns__kicker i { width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.hero-center .lede { margin-top: 26px; margin-inline: auto; max-width: 47em; }
.ns__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.ns__fine {
  margin-top: 22px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
/* entrance — one orchestrated surfacing */
@keyframes surface { from { opacity: 0; translate: 0 24px; } to { opacity: 1; translate: 0 0; } }
.hero-center .ns__kicker, .hero-center .display, .hero-center .lede,
.hero-center .ns__ctas, .hero-center .ns__fine {
  animation: surface .9s var(--ease) both;
}
.hero-center .display { animation-delay: .1s; }
.hero-center .lede { animation-delay: .22s; }
.hero-center .ns__ctas { animation-delay: .34s; }
.hero-center .ns__fine { animation-delay: .46s; }

/* ============================================================
   THE SOUNDING LINE — depth structure
   ============================================================ */
.depthmark {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.depthmark b { color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: .16em; }
.depthmark::before {
  content: ""; align-self: center;
  width: 30px; height: 1px; background: var(--gold);
}
.depthmark span { color: var(--ink-3); }

.section { padding-top: var(--section); position: relative; }

/* ---------- Manifesto ---------- */
.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.3vw, 44px);
  line-height: 1.3; color: var(--ink);
  max-width: 26em; text-wrap: balance;
}
.manifesto p + p { margin-top: 1.1em; }
.manifesto em { font-style: italic; color: var(--sail-lit); }
.manifesto .mono { display: block; margin-top: 36px; }

/* ---------- Practice rows (the descent) ---------- */
.practice {
  display: grid; gap: clamp(26px, 4vw, 64px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 4vw, 52px);
}
@media (min-width: 900px) { .practice { grid-template-columns: 240px 1fr; } }
.practice__meta { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.practice__meta .cjk-v { margin-top: 10px; min-height: 110px; }
.practice__idx {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; color: var(--gold);
}
.practice__title { margin: 6px 0 18px; }
.practice__body { max-width: 62ch; }
.practice__points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.practice__points li {
  position: relative; padding-left: 26px;
  font-size: 15.5px; line-height: 1.6; color: var(--ink-2);
}
.practice__points li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 14px; height: 1px; background: var(--gold);
}
.practice__points li b { color: var(--ink); font-weight: 500; }
.practice__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.practice__tags span {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 13px;
}

/* ---------- Voyage log (case) ---------- */
.voyage {
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 4vw, 52px);
}
.voyage__grid { display: grid; gap: clamp(30px, 4vw, 70px); margin-top: clamp(30px, 4.5vw, 60px); }
@media (min-width: 900px) { .voyage__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.voyage__stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px) 24px; }
.voyage__stat b {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4vw, 58px); line-height: 1; color: var(--ink);
}
.voyage__stat span {
  display: block; margin-top: 10px;
  font-size: 13.5px; line-height: 1.55; color: var(--ink-2);
}
.voyage__note { margin-top: 26px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-3); line-height: 1.8; }
.voyage__link { margin-top: 34px; }

/* ---------- The refusals ---------- */
.refusals { border-top: 1px solid var(--line); padding-top: clamp(30px, 4vw, 52px); }
.refusal {
  display: grid; gap: 10px 40px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .refusal { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: baseline; } }
.refusal:last-child { border-bottom: 0; }
.refusal h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.9vw, 40px); line-height: 1.12; color: var(--ink);
}
.refusal h3 s {
  text-decoration-color: var(--sail);
  text-decoration-thickness: 2px;
}
.refusal p { font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 52ch; }
.refusals__coda { margin-top: 34px; max-width: 60ch; }
.refusals__coda b { color: var(--ink); font-weight: 500; }

/* ---------- Passage plan (process — a real sequence) ---------- */
.plan { border-top: 1px solid var(--line); padding-top: clamp(30px, 4vw, 52px); }
.plan__row { display: grid; gap: 22px; margin-top: clamp(30px, 4.5vw, 56px); position: relative; }
@media (min-width: 860px) {
  .plan__row { grid-template-columns: repeat(4, 1fr); gap: 34px; }
  .plan__row::before {
    content: ""; position: absolute; top: 5px; left: 6px; right: 6px;
    height: 1px; background: var(--line);
  }
}
.plan__step { position: relative; padding-top: 26px; }
.plan__step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--abyss); border: 2px solid var(--gold);
}
.plan__step i {
  display: block; font-style: normal;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; color: var(--gold); margin-bottom: 10px;
}
.plan__step h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.plan__step p { font-size: 14px; line-height: 1.7; color: var(--ink-2); }

/* ---------- Write to us ---------- */
.cta { padding-block: var(--section); }
.cta__mail {
  display: inline-block; margin-top: 30px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 5.4vw, 76px); line-height: 1.06;
  color: var(--moon); text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: .08em;
  transition: border-color .25s var(--ease), color .25s var(--ease);
  overflow-wrap: anywhere;
}
.cta__mail:hover { border-color: var(--gold); color: var(--gold); }
.cta__meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 34px; }
.cta__meta span { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 40px;
  margin-top: var(--section);
}
.cta + .footer { margin-top: 0; }
.footer__row {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  align-items: center; justify-content: space-between;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; }
.footer__links a { color: var(--ink-2); text-decoration: none; transition: color .18s var(--ease); }
.footer__links a:hover { color: var(--moon); }
.footer__legal { margin-top: 20px; font-size: 12.5px; color: var(--ink-3); line-height: 1.8; }

/* ---------- Sub-page headers ---------- */
.page-hero { padding-top: clamp(64px, 9vw, 120px); }
.page-hero .lede { margin-top: 26px; }
.page-hero .lede + .lede { margin-top: 14px; }
.page-hero__note { margin-top: 22px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-3); line-height: 1.8; }

/* ---------- Case page: waypoint modules ---------- */
.wp {
  border-top: 1px solid var(--line);
  padding-top: clamp(26px, 3.5vw, 44px);
  display: grid; gap: 18px 54px;
}
@media (min-width: 900px) { .wp { grid-template-columns: 220px 1fr; } }
.wp h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.8vw, 38px); color: var(--ink); line-height: 1.1; }
.wp p { max-width: 62ch; font-size: 15.5px; line-height: 1.7; }
.wp .flow {
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: var(--ink-3); line-height: 1.9;
}
.wp + .wp { margin-top: clamp(40px, 5vw, 64px); }

.ledger {
  margin-top: clamp(36px, 5vw, 60px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(24px, 3.5vw, 44px);
  background: rgba(242, 235, 220, .025);
}
.ledger h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 34px); color: var(--ink); margin-bottom: 14px; }
.ledger p { max-width: 66ch; font-size: 15px; line-height: 1.75; }
.ledger b { color: var(--gold); font-weight: 500; }

/* ---------- Contact page ---------- */
.ways { margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--line); }
.way {
  display: grid; gap: 6px 40px;
  padding: clamp(20px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 760px) { .way { grid-template-columns: 180px 1fr; } }
.way > span { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.way > div { font-size: clamp(17px, 2vw, 22px); color: var(--ink); overflow-wrap: anywhere; }
.way a { text-decoration: none; border-bottom: 1px solid var(--line-2); transition: border-color .2s var(--ease), color .2s var(--ease); }
.way a:hover { color: var(--gold); border-color: var(--gold); }
.way small { display: block; margin-top: 6px; font-size: 13.5px; color: var(--ink-2); }

.faq { margin-top: var(--section); }
.faq__list { margin-top: clamp(24px, 3vw, 40px); border-top: 1px solid var(--line); max-width: 880px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 4px;
  font-size: 16.5px; font-weight: 500; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { margin-left: auto; flex: 0 0 auto; color: var(--ink-3); transition: transform .22s var(--ease); }
.faq__item[open] summary svg { transform: rotate(45deg); }
.faq__a { padding: 0 4px 24px; color: var(--ink-2); line-height: 1.75; max-width: 64ch; font-size: 15px; }

/* ---------- About page ---------- */
.namecard {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid; gap: clamp(30px, 4vw, 64px);
}
@media (min-width: 940px) { .namecard { grid-template-columns: 1.15fr .85fr; align-items: start; } }
.namecard__verse {
  border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(26px, 3.5vw, 40px);
  background: rgba(242, 235, 220, .025);
  display: flex; gap: clamp(24px, 3vw, 44px); align-items: flex-start;
}
.namecard__verse img { width: 84px; height: 84px; filter: drop-shadow(0 6px 18px rgba(4, 8, 16, .55)); }
.namecard__verse .cjk-v { font-size: 17px; min-height: 200px; color: var(--ink-2); }
.namecard__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.namecard__list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.namecard__list li::before { content: ""; position: absolute; left: 0; top: .66em; width: 14px; height: 1px; background: var(--gold); }

/* ---------- Reveals (gentle, IO-driven) ---------- */
.reveal {
  opacity: 0; translate: 0 18px;
  transition: opacity .7s var(--ease), translate .7s var(--ease);
  transition-delay: var(--rd, 0ms);
}
.reveal.in { opacity: 1; translate: 0 0; }
html.no-js .reveal { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: 0 0; }
  .seaband, .seaband__stream, .seaband__reflect, .seaband__moonpool,
  .seaband__moonpool::after, .seaband__wave, .seaband__boat, .seaband__float,
  .seaband__hull, .seaband__mirror,
  .hero-center .ns__kicker, .hero-center .display, .hero-center .lede,
  .hero-center .ns__ctas, .hero-center .ns__fine { animation: none; }
  .ns__pause { display: none; }
}
