/* =========================================================
   GN SCALES — SHARED STYLESHEET
   Tokens, reset, typography, brand lockup, header/nav,
   footer, buttons, cards, cursor, reveal, shared sections.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Navy ramp — 900 is the brand anchor */
  --navy-950: #00050f;
  --navy-900: #00081a;
  --navy-800: #030d24;
  --navy-700: #071431;
  --navy-600: #0d1e42;
  --navy-500: #16294f;

  /* Gold ramp — 500 is the brand anchor, sampled from the logo */
  --gold-200: #f7e7be;
  --gold-400: #e9c883;
  --gold-500: #d2ad5c;
  --gold-600: #b4914a;
  --gold-700: #8a6e36;

  /*
   * Secondary and tertiary text are the one ivory at reduced alpha rather
   * than separate grays: over navy they pick up the background's blue, so
   * the page stays in a single temperature. Contrast on --navy-900:
   * ink 19:1, ink-2 9.4:1, ink-3 4.8:1, gold-500 9.4:1 — all pass AA.
   */
  --ink: #ede6d3;
  --ink-2: rgba(237, 230, 211, 0.66);
  --ink-3: rgba(237, 230, 211, 0.42);
  --ink-4: rgba(237, 230, 211, 0.28);

  --line: rgba(237, 230, 211, 0.09);
  --line-2: rgba(237, 230, 211, 0.16);
  --line-gold: rgba(210, 173, 92, 0.26);
  --wash-gold: rgba(210, 173, 92, 0.08);
  --focus: #f2d98a;
  --danger: #c9564e;
  --danger-ink: #e08a83;

  /* Seven stops: dark → light → dark → light is what the eye reads as
     curved metal. A two-stop gradient reads as plastic. */
  --metal: linear-gradient(96deg, #8a6e36 0%, #d2ad5c 16%, #f7e7be 33%, #d2ad5c 46%, #b4914a 58%, #f5dfa8 76%, #d2ad5c 92%);

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-ui: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

  --shell: clamp(20px, 5.5vw, 100px);
  --maxw: 1440px;

  --t-micro: 160ms ease-out;
  --t-hover: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-reveal: 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }

ul[class], ol[class] { list-style: none; 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; }

input, textarea, select { font: inherit; color: inherit; }

html, body { overflow-x: clip; }

body {
  background-color: var(--navy-900);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

::selection { background-color: var(--gold-500); color: var(--navy-900); }

html { scrollbar-color: var(--gold-700) var(--navy-900); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background-color: var(--navy-600); border: 2px solid var(--navy-900); border-radius: 99px; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background-color: var(--gold-700); background-clip: padding-box; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3rem, 9.4vw, 9.25rem); line-height: 0.87; letter-spacing: -0.033em; }
h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.9rem); line-height: 1.1; }

p { max-width: 66ch; }

.metal {
  background: var(--metal);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s linear infinite;
  /* italic display type is where the metal ramp reads best */
  font-style: italic;
}

@keyframes sheen {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead { font-size: clamp(1rem, 1.25vw, 1.1875rem); line-height: 1.62; color: var(--ink-2); }

.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--shell); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: var(--shell); top: -100px; z-index: 1000;
  background: var(--gold-500); color: var(--navy-900);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.85rem 1.5rem; transition: top var(--t-micro);
}
.skip-link:focus { top: 1rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 0.875rem;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::after {
  content: ''; width: 48px; height: 1px; background: rgba(210, 173, 92, 0.35); flex-shrink: 0;
}
.eyebrow-fill::after { flex: 1 1 auto; width: auto; }

/* ---------- Brand lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.8rem; }

.brand-mark { width: auto; height: 38px; color: var(--gold-500); flex-shrink: 0; }
.brand-mark path { fill: currentColor; }

.brand-type { display: flex; flex-direction: column; line-height: 1; }

.brand-gn {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--gold-500);
}

.brand-scales {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 0.28rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-micro), background-color var(--t-micro);
}
/*
 * The blurred backdrop lives on a pseudo-element, not on .site-header:
 * backdrop-filter makes an element the containing block for position:fixed
 * descendants, which breaks the fixed mobile nav panel.
 */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(0, 8, 26, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity var(--t-micro);
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 92px;
  transition: height var(--t-micro);
}
.site-header.is-scrolled .header-inner { height: 74px; }

.site-nav { display: flex; align-items: center; gap: clamp(1.6rem, 3vw, 2.6rem); }
.nav-list { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.4rem); }
.nav-end { display: flex; align-items: center; gap: 1.25rem; }

.nav-list a {
  position: relative;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); padding-block: 0.4rem;
  transition: color var(--t-micro);
}
.nav-list a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-500);
  transition: right var(--t-hover);
}
.nav-list a:hover, .nav-list a[aria-current='page'] { color: var(--ink); }
.nav-list a:hover::after, .nav-list a[aria-current='page']::after { right: 0; }

.spots { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; color: var(--ink-3); white-space: nowrap; }

.nav-toggle {
  display: none; flex-direction: column; align-items: flex-end; justify-content: center;
  gap: 6px; width: 48px; height: 48px; margin-right: -8px;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--gold-500); transition: transform var(--t-hover), width var(--t-hover), opacity var(--t-micro); }
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { width: 24px; transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { width: 24px; transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 1.05rem 2rem; border: 1px solid transparent; white-space: nowrap;
  transition: background-color var(--t-hover), border-color var(--t-hover),
              color var(--t-hover), transform var(--t-hover),
              box-shadow var(--t-hover), letter-spacing var(--t-hover);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500);
  box-shadow: 0 18px 44px -18px rgba(210, 173, 92, 0.6);
}
.btn-primary:hover {
  background: var(--gold-400); border-color: var(--gold-400);
  transform: translateY(-2px); letter-spacing: 0.07em;
  box-shadow: 0 24px 52px -18px rgba(233, 200, 131, 0.7);
}

.btn-secondary { color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover {
  color: var(--gold-500); border-color: var(--gold-500);
  background: var(--wash-gold); transform: translateY(-2px);
}

.btn-ghost { color: var(--gold-500); border-color: rgba(210, 173, 92, 0.42); }
.btn-ghost:hover { background: var(--wash-gold); border-color: var(--gold-500); transform: translateY(-2px); }

.btn-sm { padding: 0.78rem 1.35rem; font-size: 0.78rem; }
.btn-lg { padding: 1.25rem 2.4rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold-500);
  border-bottom: 1px solid rgba(210, 173, 92, 0.4); padding-bottom: 5px;
  transition: color var(--t-micro), border-color var(--t-micro), gap var(--t-hover);
}
.link-arrow:hover { color: var(--gold-200); border-color: var(--gold-200); gap: 1.1rem; }
.link-arrow svg { width: 14px; height: 14px; }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.btn-row-center { justify-content: center; }

/* ---------- Shared small components ----------
   These are used by more than one page, so they belong here rather than
   in a per-page sheet — a tick list styled only in services.css renders
   as full-size SVGs on pricing.html, which is exactly what happened. */

.ticks { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.35rem; }
.ticks li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.96rem; line-height: 1.55; color: var(--ink-2); }
.ticks svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-500); margin-top: 0.2rem; }

.note-rule {
  border-left: 2px solid rgba(210, 173, 92, 0.45);
  padding: 0.3rem 0 0.3rem 1.2rem;
  font-size: 0.9375rem !important; color: var(--ink-3) !important;
}

.hair { border: 0; border-top: 1px solid var(--line); margin: 0; width: 100%; }

.hero-flag {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-500);
  max-width: none;
}
.hero-flag-rule { width: 56px; height: 1px; background: rgba(210, 173, 92, 0.35); }
.hero-flag-dim { color: var(--ink-3); letter-spacing: 0.18em; }
.closing .hero-flag { justify-content: center; }

.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(210, 173, 92, 0.16); flex-shrink: 0;
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(210, 173, 92, 0.16); }
  50% { box-shadow: 0 0 0 9px rgba(210, 173, 92, 0.05); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); position: relative; }
.section-alt { background: var(--navy-800); border-block: 1px solid var(--line); }

.section-head { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.section-head h2 { max-width: 20ch; }

.section-head-split {
  flex-direction: row; align-items: flex-end; justify-content: space-between;
  gap: clamp(2rem, 5vw, 3.75rem); flex-wrap: wrap;
}
/* The wrapper holding eyebrow + heading has to restack them itself, since
   the parent is a row here rather than a column. */
.section-head-split > div,
.page-intro-grid > div {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
}
.section-head-split .lead { max-width: 40ch; margin-bottom: 0.5rem; }

/* ---------- Cards ---------- */
.card {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-700); border: 1px solid var(--line);
  padding: clamp(1.75rem, 2.4vw, 2.125rem);
  transition: transform var(--t-hover), border-color var(--t-hover), box-shadow var(--t-hover), background-color var(--t-hover);
}
/* Cursor-tracked spotlight; --mx/--my set from pointermove in main.js */
.card::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(210, 173, 92, 0.12), transparent 62%);
  transition: opacity var(--t-hover); pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-4px); background: var(--navy-600);
  border-color: rgba(210, 173, 92, 0.42);
  box-shadow: 0 30px 60px -34px rgba(210, 173, 92, 0.5);
}
.card-gold {
  background: linear-gradient(150deg, rgba(210, 173, 92, 0.09), rgba(210, 173, 92, 0) 58%), var(--navy-700);
  border-color: var(--line-gold); border-top: 2px solid var(--gold-500);
}
.card h3 { margin-bottom: 0.15rem; }
/*
 * :where() keeps this at .card specificity (0,1,0) instead of (0,1,1).
 * As a plain `.card p` it outranked every single-class rule on a
 * paragraph inside a card — .tier-figure, .founder-role, .result-title —
 * silently resetting them all to 0.96rem.
 */
.card :where(p) { color: var(--ink-2); font-size: 0.96rem; line-height: 1.62; }

.icon { width: 28px; height: 28px; color: var(--gold-500); flex-shrink: 0; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--navy-800);
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem; width: max-content;
  padding-block: 1.25rem; animation: marquee 42s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}
.marquee-track .dot { color: var(--gold-500); font-size: 0.4rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Closing CTA ---------- */
.closing {
  position: relative; overflow: hidden;
  background: var(--navy-950); border-top: 1px solid rgba(210, 173, 92, 0.22);
  padding-block: clamp(5rem, 9vw, 9rem);
  text-align: center;
}
.closing::before {
  content: ''; position: absolute; left: 50%; top: -30%;
  width: min(1000px, 130%); aspect-ratio: 3 / 2; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(210, 173, 92, 0.2), transparent 66%);
  filter: blur(40px); animation: drift-a 22s ease-in-out infinite; pointer-events: none;
}
.closing .shell { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.closing h2 { font-size: clamp(2.6rem, 6.4vw, 5.75rem); line-height: 0.94; max-width: 16ch; }
.closing p { max-width: 54ch; }

/* ---------- Atmosphere ---------- */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@keyframes drift-a { 0%, 100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.18); } }

/* ---------- Page intro (inner pages) ---------- */
.page-intro {
  position: relative; overflow: hidden;
  background: var(--navy-950); border-bottom: 1px solid var(--line);
  padding-block: clamp(4rem, 7vw, 7rem);
}
.page-intro::before {
  content: ''; position: absolute; right: -10%; top: -60%;
  width: min(820px, 90%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 173, 92, 0.22), transparent 66%);
  filter: blur(34px); animation: drift-b 20s ease-in-out infinite; pointer-events: none;
}
@keyframes drift-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-6%, 8%) scale(1.16); } }
.page-intro .shell { position: relative; }
.page-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 26rem); gap: clamp(2rem, 6vw, 5.5rem); align-items: end; }
.page-intro h1 { max-width: 14ch; }
.page-intro .lead { margin-bottom: 0.75rem; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item.is-open { border-top-color: rgba(210, 173, 92, 0.3); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.9rem; width: 100%; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.6875rem);
  line-height: 1.2; letter-spacing: -0.015em; color: var(--ink);
  padding-block: clamp(1.25rem, 2vw, 1.75rem);
  transition: color var(--t-micro);
}
.faq-q:hover { color: var(--gold-500); }
.faq-item.is-open .faq-q { color: var(--gold-500); }

.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: currentColor;
  transform: translate(-50%, -50%); transition: transform var(--t-hover), opacity var(--t-hover);
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-reveal); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--ink-2); font-size: 1rem; line-height: 1.68; max-width: 68ch; padding-bottom: 1.75rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-block: clamp(3rem, 5vw, 4.75rem) 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.75rem); padding-bottom: 3.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: var(--ink-3); max-width: 34ch; }

.footer-col { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.footer-col h2 {
  font-family: var(--font-mono); font-size: 0.625rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 0.15rem;
}
.footer-col a, .footer-col span { font-size: 0.9rem; color: var(--ink-2); transition: color var(--t-micro); }
.footer-col a:hover { color: var(--gold-500); }
.footer-mail { color: var(--gold-500) !important; border-bottom: 1px solid rgba(210, 173, 92, 0.35); padding-bottom: 3px; }

.footer-base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem; border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.footer-base p { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--ink-4); max-width: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--t-reveal), transform var(--t-reveal); }
.reveal.is-in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity var(--t-reveal), transform var(--t-reveal); }
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(2) { transition-delay: 70ms; }
.stagger.is-in > *:nth-child(3) { transition-delay: 140ms; }
.stagger.is-in > *:nth-child(4) { transition-delay: 210ms; }
.stagger.is-in > *:nth-child(5) { transition-delay: 280ms; }
.stagger.is-in > *:nth-child(6) { transition-delay: 350ms; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  will-change: transform; opacity: 0;
  transition: opacity 240ms ease;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold-500); margin: -2.5px 0 0 -2.5px; }
.cursor-ring {
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1px solid var(--gold-500);
  transition: opacity 240ms ease, width 280ms cubic-bezier(0.22, 1, 0.36, 1),
              height 280ms cubic-bezier(0.22, 1, 0.36, 1),
              margin 280ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 280ms ease, border-color 280ms ease;
}
body.cursor-ready .cursor-dot, body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-ready.cursor-hidden .cursor-dot, body.cursor-ready.cursor-hidden .cursor-ring { opacity: 0; }

body.cursor-link .cursor-ring { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: rgba(210, 173, 92, 0.1); }
body.cursor-link .cursor-dot { opacity: 0; }
body.cursor-drag .cursor-ring { width: 62px; height: 62px; margin: -31px 0 0 -31px; background: var(--gold-500); border-color: var(--gold-500); }
body.cursor-drag .cursor-dot { opacity: 0; }
body.cursor-text .cursor-ring { width: 3px; height: 24px; margin: -12px 0 0 -1.5px; border-radius: 0; background: var(--gold-500); }
body.cursor-text .cursor-dot { opacity: 0; }

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready summary,
  body.cursor-ready [role='button'] { cursor: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-list { gap: 1.6rem; }
  .spots { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(420px, 86vw); z-index: 90;
    display: flex; flex-direction: column; align-items: stretch; justify-content: center;
    gap: 2.5rem; padding: 5.5rem var(--shell) 3rem;
    background: var(--navy-950); border-left: 1px solid var(--line-gold);
    transform: translateX(101%); transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-nav { transform: none; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a {
    display: block; font-family: var(--font-display); font-size: 2rem;
    letter-spacing: -0.02em; text-transform: none; color: var(--ink);
    padding-block: 1rem;
  }
  .nav-list a::after { display: none; }

  .nav-end { flex-direction: column; align-items: stretch; gap: 1.5rem; margin-top: 0.5rem; }
  .spots { display: block; text-align: center; }

  .page-intro-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn-row .btn { width: 100%; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .stagger > * { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
