@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&family=Fraunces:ital,wght@0,500;0,600;1,500;1,600&display=swap");

/* ---------------------------------------------------------
   Tokens — black / gold / silver / white
--------------------------------------------------------- */
:root {
  --bg: #0b0b0d;
  --bg-2: #121215;
  --bg-3: #1a1a1e;
  --bg-4: #232327;

  --ink: #f5f5f2;
  --ink-soft: #cfd0d4;
  --ink-mute: #85868c;

  --line: rgba(245, 245, 242, 0.1);
  --line-soft: rgba(245, 245, 242, 0.06);

  --gold: #c9a961;
  --gold-bright: #e7cc8e;
  --gold-deep: #8a6f33;
  --gold-soft: rgba(201, 169, 97, 0.12);

  --silver: #b7bcc4;
  --silver-bright: #e2e5e9;

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 78px;
  --container: 1200px;
}

/* ---------------------------------------------------------
   Reset
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

::selection {
  background: var(--gold-soft);
  color: var(--gold-bright);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ---------------------------------------------------------
   Grain texture (static, cheap)
--------------------------------------------------------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}

/* ---------------------------------------------------------
   Scroll progress
--------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ---------------------------------------------------------
   Reveal-on-scroll
--------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.line-mask { display: block; overflow: hidden; }
.line-inner { display: block; }
/* Hidden-until-revealed state only applies once main.js confirms it's running
   (html.js). Without JS, the headline stays visible — see gotcha A.4.5. */
html.js .line-inner {
  transform: translateY(105%);
  transition: transform 0.9s var(--ease-out);
}
html.js .line-mask.is-visible .line-inner { transform: translateY(0); }

/* ---------------------------------------------------------
   Mouse-reactive glow — GPU-cheap (transform only)
--------------------------------------------------------- */
.glow-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.glow-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40vmax;
  height: 40vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.46) 0%, transparent 65%);
}
.glow-blob--b {
  width: 30vmax;
  height: 30vmax;
  opacity: 0.6;
  background: radial-gradient(circle, rgba(210, 215, 222, 0.3) 0%, transparent 68%);
}
/* ---------------------------------------------------------
   Orbit rings — decorative geometry (hero)
--------------------------------------------------------- */
.orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Outer .orbit-ring only positions/sizes (static, no animation).
   Inner .orbit-ring-inner rotates. Keeping them separate avoids
   composing a centering transform with a rotate transform. */
.orbit-ring {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.orbit-ring--a {
  width: 56vmax;
  height: 56vmax;
  right: -14vmax;
}
.orbit-ring--b {
  width: 40vmax;
  height: 40vmax;
  right: -8vmax;
}

.orbit-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.orbit-ring-inner--a {
  border: 1px solid rgba(201, 169, 97, 0.36);
  animation: orbitSpin 16s linear infinite;
}
.orbit-ring-inner--b {
  border: 1px dashed rgba(210, 215, 222, 0.26);
  animation: orbitSpin 42s linear infinite reverse;
}
.orbit-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 20px 5px rgba(231, 201, 142, 0.75), 0 0 6px 2px #fff3d6;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring-inner { animation-duration: 260s; }
}
/* vmax sizing is driven by viewport height in portrait mode, which makes
   the rings oversized and overlapping the hero copy on phones. Switch to
   vw-based sizing so they stay a background flourish, not the main event. */
@media (max-width: 640px) {
  .orbit-ring--a {
    width: 88vw;
    height: 88vw;
    right: -32vw;
  }
  .orbit-ring--b {
    width: 62vw;
    height: 62vw;
    right: -18vw;
  }
}

.glow-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(201, 169, 97, 0.05) 0px,
    rgba(201, 169, 97, 0.05) 1px,
    transparent 1px,
    transparent 64px
  );
  mask-image: linear-gradient(115deg, transparent 35%, black 75%, black 100%);
  -webkit-mask-image: linear-gradient(115deg, transparent 35%, black 75%, black 100%);
}

/* ---------------------------------------------------------
   Nav
--------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.nav.is-solid {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand-chip {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #000;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark {
  width: 17px;
  height: 17px;
  color: var(--ink);
}
.brand-mark path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: markDraw 1.4s var(--ease-out) 0.15s forwards;
}
@keyframes markDraw {
  to { stroke-dashoffset: 0; }
}
.brand-word {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding-block: 0.3rem;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out);
}
@media (hover: hover) {
  .nav-link:hover { color: var(--ink); }
  .nav-link:hover::after { right: 0; }
}

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold-deep);
  color: var(--gold-bright);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
@media (hover: hover) {
  .nav-cta:hover { background: var(--gold); color: #14120b; border-color: var(--gold); }
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }
.nav.is-open .nav-burger span { background: transparent; }
.nav.is-open .nav-burger span::before { transform: translateY(6px) rotate(45deg); background: var(--ink); }
.nav.is-open .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); background: var(--ink); }

/* ---------------------------------------------------------
   Buttons (shared) — gold shimmer sweep
--------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
@media (hover: hover) {
  .btn:hover::after { transform: translateX(130%); }
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14120b;
  font-weight: 500;
}
@media (hover: hover) {
  .btn-primary:hover { box-shadow: 0 14px 30px rgba(201, 169, 97, 0.28); transform: translateY(-2px); }
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
@media (hover: hover) {
  .btn-ghost:hover { border-color: var(--silver); color: var(--ink); transform: translateY(-2px); }
}

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 4.5rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--bg-3);
  border: 1px solid var(--gold-deep);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  max-width: 17ch;
  color: var(--ink);
}
.hero-title .accent-line {
  color: var(--gold);
  text-shadow: 0 0 46px rgba(201, 169, 97, 0.25);
}
.hero-sub {
  margin-top: 1.75rem;
  max-width: 42ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  font-weight: 300;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------------------------------------------------------
   Marquee ticker
--------------------------------------------------------- */
.ticker {
  position: relative;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.1rem;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 26s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation-duration: 60s; }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-inline: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.ticker-item .sep {
  color: var(--gold-deep);
}
@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------------------------------------------------------
   Manifesto — short centered statement
--------------------------------------------------------- */
.manifesto {
  padding-block: clamp(4rem, 9vw, 6.5rem);
  text-align: center;
}
.manifesto-rule {
  width: 40px;
  height: 1px;
  background: var(--gold-deep);
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
}
.manifesto-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink-soft);
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}
.manifesto-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------------------------------------------------------
   Section head (shared)
--------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  flex-wrap: wrap;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------------------------------------------------------
   Services (accordion, minimal header)
--------------------------------------------------------- */
.services {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  border-top: 1px solid var(--line-soft);
}

.service-row {
  border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }

.service-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(1.3rem, 3vw, 1.85rem);
  text-align: left;
}
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  color: var(--gold-deep);
  width: 2.2ch;
  flex-shrink: 0;
  transition: color 0.3s var(--ease-out);
}
@media (hover: hover) {
  .service-header:hover .service-num { color: var(--gold); }
}
.service-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 2rem);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  flex: 1;
  color: var(--ink);
}
.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--silver);
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.service-icon svg { width: 12px; height: 12px; transition: transform 0.4s var(--ease-out); }
.service-row.is-open .service-icon { background: var(--gold); border-color: var(--gold); color: #14120b; }
.service-row.is-open .service-icon svg { transform: rotate(45deg); }

@media (hover: hover) {
  .service-header:hover .service-title { color: var(--gold-bright); transform: translateX(6px); }
  .service-header:hover .service-icon { border-color: var(--gold); }
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-in-out);
}
.service-row.is-open .service-panel { grid-template-rows: 1fr; }
.service-panel-inner { overflow: hidden; }
.service-body {
  max-width: 55ch;
  padding-bottom: clamp(1.3rem, 3vw, 2rem);
  padding-left: calc(2.5ch + clamp(1rem, 3vw, 2rem));
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------------------------------------------------------
   Mission / Vision
--------------------------------------------------------- */
.mv {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  border-top: 1px solid var(--line-soft);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.mv-card {
  background: var(--bg-3);
  padding: clamp(1.85rem, 4.5vw, 2.75rem);
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
@media (hover: hover) {
  .mv-card:hover { background: var(--bg-4); }
}
.mv-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.mv-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.mv-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------
   Process (tracker + short steps)
--------------------------------------------------------- */
.process {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.tracker {
  position: relative;
  margin-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
}
.tracker-line {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.tracker-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  will-change: transform;
}
.tracker-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.tracker-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-4);
  border: 1px solid var(--line);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.tracker-dot.is-lit {
  background: var(--gold);
  border-color: var(--gold);
}
.tracker-dot.is-current {
  box-shadow: 0 0 0 5px var(--gold-soft);
  animation: dotPulse 1.7s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--gold-soft); }
  50% { box-shadow: 0 0 0 9px transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .tracker-dot.is-current { animation: none; box-shadow: 0 0 0 5px var(--gold-soft); }
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
}
.process-item {
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.process-figure {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: transform 0.35s var(--ease-out);
}
.figure-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.figure-frame circle,
.figure-frame polygon,
.figure-frame rect {
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.5;
  transition: stroke 0.35s var(--ease-out);
}
.figure-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
}
@media (hover: hover) {
  .process-item:hover .figure-frame circle,
  .process-item:hover .figure-frame polygon,
  .process-item:hover .figure-frame rect { stroke: var(--gold); }
  .process-item:hover .process-figure { transform: translateY(-2px); }
}
.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.process-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.process-body {
  color: var(--ink-mute);
  font-size: 0.86rem;
}

/* ---------------------------------------------------------
   Contact
--------------------------------------------------------- */
.contact {
  position: relative;
  padding-block: clamp(4rem, 10vw, 7rem);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 0; left: 50%;
  width: 60vmax;
  height: 60vmax;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  max-width: 16ch;
  text-wrap: balance;
  color: var(--ink);
}
.contact-title a {
  display: inline-block;
  position: relative;
  color: var(--gold-bright);
}
.contact-title a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
@media (hover: hover) {
  .contact-title a:hover::after { transform: scaleX(1); }
}

.contact-people {
  margin-top: clamp(2.75rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 720px) {
  .contact-people { grid-template-columns: 1fr; }
}
.person-card {
  background: var(--bg-3);
  padding: clamp(1.6rem, 4vw, 2.25rem);
}
.person-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.person-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.3rem;
  display: block;
}
.person-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.person-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
@media (hover: hover) {
  .person-link:hover { color: var(--gold-bright); border-color: var(--gold); }
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  padding-block: 2.25rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-mute);
}
.footer-brand .brand-chip { width: 24px; height: 24px; border-radius: 6px; }
.footer-brand .brand-mark { width: 12px; height: 12px; color: var(--ink-mute); }
.footer-brand .brand-mark path { animation: none; stroke-dashoffset: 0; }
.footer-word {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ---------------------------------------------------------
   Mobile nav overlay
--------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 11, 13, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-menu a:hover { color: var(--gold-bright); }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ---------------------------------------------------------
   Splash
--------------------------------------------------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashSafety 0.01s 4.5s forwards;
}
.splash.is-out {
  animation: splashOut 0.7s var(--ease-out) forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
@keyframes splashOut {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash-mark {
  width: 50px;
  height: 50px;
  color: var(--gold);
  animation: splashPulse 1.3s var(--ease-in-out) infinite;
}
@keyframes splashPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .splash-mark { animation-duration: 0.01s; }
}

/* ---------------------------------------------------------
   Utility
--------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .mv-grid { grid-template-columns: 1fr; }
}
