/* ═══════════════════════════════════════════════════════════════
   LOCKBOX — ENTER THE VAULT
   Black. Bone. Gold. Nothing else.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #0E0F12;
  --panel: #141519;
  --panel-2: #16171B;
  --bone: #F5F3EE;
  --stone: #9A988F;
  --gold: #D9B45A;
  --gold-deep: #B8863B;
  --gold-hi: #F3E3A3;
  --gold-dark: #A9772F;
  --foil: linear-gradient(115deg, #B8863B 0%, #F3E3A3 45%, #A9772F 100%);
  --foil-v: linear-gradient(175deg, #B8863B 0%, #F3E3A3 48%, #A9772F 100%);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-label: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-vault: cubic-bezier(0.16, 1, 0.3, 1);      /* heavy, expensive */
  --ease-mass: cubic-bezier(0.7, 0, 0.2, 1);

  --nav-h: 72px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* The walls: clip sideways overflow at the viewport itself (body alone
   isn't enough on iOS Safari) and kill horizontal rubber-banding. */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
html.lenis { scroll-behavior: auto; }
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body.is-loading { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold-deep); color: var(--ink); }

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

@media (pointer: fine) {
  html.js.has-cursor, html.js.has-cursor * { cursor: none; }
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-label); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 18px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ── Type ──────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
}
.eyebrow--gold { color: var(--gold); }

.display {
  font-family: var(--font-display);
  font-size: clamp(52px, 9.5vw, 148px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
}

.display-sub {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.lede {
  max-width: 52ch;
  color: var(--stone);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
}

.container { width: min(1280px, 100% - 2 * var(--gutter)); margin-inline: auto; }

.section { position: relative; padding: clamp(96px, 14vh, 180px) 0; }
.section__head { display: grid; gap: 22px; margin-bottom: clamp(40px, 7vh, 84px); }

/* Gold foil text */
.foil-text {
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Grain ─────────────────────────────────────────────────── */
/* The jiggling texture lives on an oversized ::before, clipped by a
   viewport-sized frame — nothing ever pokes past the walls. */
.grain {
  position: fixed; inset: 0; z-index: 210;
  pointer-events: none;
  overflow: clip;
}
.grain::before {
  content: '';
  position: absolute; inset: -60px;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-22px, 14px); }
  50% { transform: translate(14px, -18px); }
  75% { transform: translate(-8px, -24px); }
  100% { transform: translate(0, 0); }
}

/* ── Cursor ────────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 260;
  pointer-events: none;
  display: none;
}
html.js.has-cursor .cursor { display: block; }
.cursor__ring {
  position: absolute; top: -14px; left: -14px;
  width: 28px; height: 28px;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-vault), opacity 0.3s, border-color 0.3s;
}
.cursor__keyhole {
  position: absolute; top: -15px; left: -12px;
  width: 24px; height: 30px;
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.3s var(--ease-vault), opacity 0.25s;
}
.cursor.is-key .cursor__ring { transform: scale(1.9); border-color: rgba(217, 180, 90, 0.35); }
.cursor.is-key .cursor__keyhole { opacity: 1; transform: scale(1); }
.cursor.is-down .cursor__ring { transform: scale(0.75); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-label); font-weight: 600;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid rgba(217, 180, 90, 0.55);
  color: var(--gold-hi);
  background: transparent;
  overflow: hidden;
  transition: color 0.45s var(--ease-vault), border-color 0.45s;
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--foil);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s var(--ease-vault);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover, .btn:focus-visible { color: var(--ink); }
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn--small { padding: 12px 22px; font-size: 11px; }
.btn--big { padding: 22px 44px; font-size: 14px; }
.btn__arrow { width: 12px; height: 14px; }

/* ── Preloader ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 240;
  display: grid; place-items: center;
  overflow: clip; /* the opened doors park off-screen — keep them there */
}
.loader__door {
  position: absolute; top: 0; bottom: 0; width: 50.5%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 30%),
    var(--panel);
}
.loader__door--l { left: 0; box-shadow: inset -1px 0 0 rgba(217,180,90,0.35), inset -18px 0 40px -20px rgba(0,0,0,0.9); }
.loader__door--r { right: 0; box-shadow: inset 1px 0 0 rgba(217,180,90,0.35), inset 18px 0 40px -20px rgba(0,0,0,0.9); }
.loader__door { transition: transform 1.15s var(--ease-mass); will-change: transform; }
.loader.is-open .loader__door--l { transform: translateX(-101%); }
.loader.is-open .loader__door--r { transform: translateX(101%); }
.loader__core, .loader__bar { transition: opacity 0.4s; }
.loader.is-open .loader__core, .loader.is-open .loader__bar { opacity: 0; }
.loader.is-jolt .loader__core { transform: translate(1.5px, -1px); }
/* Once the doors start parting, the hero behind is live — don't eat its clicks. */
.loader.is-open { pointer-events: none; }
.loader.is-done { visibility: hidden; pointer-events: none; }
.loader.is-reduced .loader__dial { display: none; }

.loader__core {
  position: relative; z-index: 2;
  display: grid; place-items: center; gap: 28px;
  text-align: center;
}
.loader__dial { width: clamp(180px, 28vw, 260px); height: auto; }
.loader__dial-rotor { transform-origin: 100px 100px; }
.loader__readout { display: grid; gap: 14px; justify-items: center; }
.loader__pct {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.loader__hint { color: var(--stone); }
.loader__enter {
  font-family: var(--font-label); font-size: 12px; letter-spacing: 0.4em;
  color: var(--gold-hi);
  padding: 12px 30px;
  border: 1px solid rgba(217,180,90,0.5);
  transition: background 0.4s, color 0.4s;
}
.loader__enter:hover { background: var(--gold); color: var(--ink); }
.loader__bar {
  position: absolute; left: 20%; right: 20%; bottom: 18vh; z-index: 2;
  height: 1px; background: rgba(217,180,90,0.2);
}
.loader__bar i { display: block; height: 100%; width: 0%; background: var(--foil); }

/* ── Portal (keyhole transition) ───────────────────────────── */
.portal {
  position: fixed; inset: 0; z-index: 230;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.portal.is-active { opacity: 1; visibility: visible; }
.portal svg { width: 100%; height: 100%; }
/* chromatic fringe — only ever during the keyhole transition */
.portal.is-active svg {
  filter: drop-shadow(3px 0 0 rgba(255, 70, 90, 0.14)) drop-shadow(-3px 0 0 rgba(70, 140, 255, 0.14));
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gutter);
  transition: background 0.5s, backdrop-filter 0.5s, transform 0.6s var(--ease-vault);
}
.nav.is-scrolled {
  background: rgba(14, 15, 18, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(217, 180, 90, 0.12);
}
body.is-loading .nav { transform: translateY(-110%); }

.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__mark { width: 26px; height: 26px; color: var(--gold); }
.nav__word {
  font-family: var(--font-display); font-size: 19px; letter-spacing: 0.06em;
  color: var(--bone);
}

.nav__links { display: flex; gap: clamp(18px, 3vw, 40px); }
.nav__links a {
  font-family: var(--font-label); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-vault);
}
.nav__links a:hover { color: var(--gold-hi); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__tools { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }

.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.18em;
  color: var(--stone);
}
.lang-toggle button {
  color: var(--stone); padding: 6px 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.lang-toggle button.is-active { color: var(--gold-hi); border-bottom-color: var(--gold-hi); }
.lang-toggle button:hover { color: var(--bone); }

.sound-toggle { width: 34px; height: 34px; display: grid; place-items: center; }
.sound-toggle svg { width: 22px; height: 22px; fill: var(--stone); transition: fill 0.3s; }
.sound-toggle:hover svg { fill: var(--bone); }
.sound-toggle[aria-pressed="true"] svg { fill: var(--gold); }
.sound-toggle .sound-toggle__bars rect { transform-origin: center; transform: scaleY(0.45); transition: transform 0.4s var(--ease-vault); }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars rect { animation: soundbar 1.1s ease-in-out infinite alternate; }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars rect:nth-child(2) { animation-delay: 0.15s; }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars rect:nth-child(3) { animation-delay: 0.3s; }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars rect:nth-child(4) { animation-delay: 0.45s; }
@keyframes soundbar { from { transform: scaleY(0.35); } to { transform: scaleY(1); } }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  display: grid; place-items: center;
  overflow: hidden;
  overflow: clip;
}
.hero__canvas, .hero__canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
/* the scene arrives when it's ready — never blocks the doors */
.hero__canvas { opacity: 0; transition: opacity 1.4s var(--ease-vault); }
.hero__canvas.is-ready { opacity: 1; }
.hero__fallback {
  position: absolute; inset: 0;
  display: none;
  place-items: center;
  background: radial-gradient(60% 50% at 50% 42%, rgba(184, 134, 59, 0.14), transparent 70%), var(--ink);
}
.hero__fallback-keyhole { width: clamp(150px, 22vw, 280px); opacity: 0.38; filter: drop-shadow(0 0 70px rgba(217, 180, 90, 0.18)); }
html.no-webgl .hero__fallback { display: grid; }
html.no-webgl .hero__canvas { display: none; }

/* Vignette between the metal and the type — the void wins at the edges */
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(56% 40% at 50% 54%, rgba(14, 15, 18, 0.58), transparent 74%),
    radial-gradient(130% 110% at 50% 50%, transparent 52%, rgba(14, 15, 18, 0.88) 100%);
}

.hero__content {
  position: relative; z-index: 3;
  display: grid; justify-items: center; gap: clamp(18px, 3vh, 30px);
  text-align: center;
  padding-inline: var(--gutter);
}
.hero__eyebrow { color: var(--stone); }
/* Desktop: the role and location read as one line, joined by an em-dash.
   Phones drop the dash and stack them (see the mobile block below). */
.hero__eyebrow-loc::before { content: ' — '; }
.hero__word {
  font-family: var(--font-display);
  font-size: clamp(72px, 17vw, 240px);
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: var(--bone);
  display: flex;
}
.hero__word span { display: inline-block; will-change: transform, opacity; }
/* The O in LOCK carries the gold — the keyhole letter */
.hero__word span:nth-child(2) {
  position: relative;
  background: var(--foil-v);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tagline {
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--stone); font-size: clamp(14px, 1.5vw, 17px); }
.hero__cta-wrap { display: grid; justify-items: center; gap: 14px; margin-top: 10px; }
.hero__cta { margin-top: 0; }
.hero__pricenote {
  font-family: var(--font-label); font-weight: 500;
  font-size: clamp(11px, 1.15vw, 13px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone);
}

.hero__scrollhint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; overflow: hidden; z-index: 3;
  background: rgba(217, 180, 90, 0.18);
}
.hero__scrollhint i {
  display: block; width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollhint 2s var(--ease-mass) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(260%); }
}

/* ── Hero on phones: keep the eyebrow tidy and off the vault rings ── */
@media (max-width: 640px) {
  /* Two tidy lines instead of an auto-balanced 3-line wrap: the role on one
     line over a gold location stamp — no orphaned words or leading dashes. */
  .hero__eyebrow { line-height: 1.5; }
  .hero__eyebrow-role,
  .hero__eyebrow-loc { display: block; }
  .hero__eyebrow-role { letter-spacing: 0.13em; }
  .hero__eyebrow-loc {
    margin-top: 5px;
    letter-spacing: 0.3em;
    color: var(--gold);
  }
  .hero__eyebrow-loc::before { content: none; }
  .hero__content { gap: clamp(16px, 2.4vh, 26px); }
  .hero__sub { max-width: 26ch; }
  .hero__pricenote { letter-spacing: 0.1em; max-width: 30ch; text-wrap: balance; }
  /* The vault now fills the screen — pool the type in the keyhole's shadow so the
     wordmark keeps full contrast where it crosses the gold, and sink the corners. */
  .hero__veil {
    background:
      radial-gradient(80% 48% at 50% 45%, rgba(14, 15, 18, 0.86), rgba(14, 15, 18, 0.46) 60%, transparent 82%),
      radial-gradient(150% 125% at 50% 50%, transparent 34%, rgba(14, 15, 18, 0.94) 100%);
  }
  /* The nav rides over the gold plate now — darken the top strip so the lock mark,
     language switch and menu stay legible instead of vanishing into the metal. */
  .nav::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0; height: 210%;
    background: linear-gradient(180deg, rgba(14, 15, 18, 0.62) 0%, rgba(14, 15, 18, 0.22) 55%, transparent 100%);
    pointer-events: none; z-index: -1;
  }
}
.studio { background: linear-gradient(180deg, var(--ink), #0B0C0F 55%, var(--ink)); }

/* Natively scrollable by default — the GSAP drive takes over on desktop */
.gear { position: relative; overflow-x: auto; scrollbar-width: none; }
.gear::-webkit-scrollbar { display: none; }
.gear.gear--driven { overflow: hidden; }
.gear__track {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  padding-inline: var(--gutter);
  width: max-content;
}
.gear__panel {
  position: relative;
  width: min(78vw, 520px);
  flex-shrink: 0;
  display: grid;
  gap: 18px;
  padding-top: clamp(40px, 6vh, 70px);
}
.gear__num {
  position: absolute; top: 0; left: -0.04em; z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(110px, 16vw, 210px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 180, 90, 0.35);
  pointer-events: none;
}
.gear__plate {
  position: relative; z-index: 1;
  aspect-ratio: 3 / 3.6;
  max-height: 52vh;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(184, 134, 59, 0.10), transparent 55%),
    linear-gradient(160deg, var(--panel-2), #101115 65%);
  border: 1px solid rgba(217, 180, 90, 0.14);
  overflow: hidden;
  display: grid; place-items: center;
}
.gear__plate::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(243, 227, 163, 0.07) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease-vault);
}
@media (hover: hover) {
  .gear__panel:hover .gear__plate::after { transform: translateX(120%); }
}
.plate__art { width: 68%; height: auto; opacity: 0.95; }
.plate__glow {
  position: absolute; inset: auto -20% -35% -20%; height: 70%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(184, 134, 59, 0.22), transparent 70%);
}
.plate__led { position: absolute; width: 3px; border-radius: 3px; }
.plate__led--pink { top: 12%; left: 8%; height: 34%; background: linear-gradient(var(--gold-hi), transparent); opacity: 0.5; }
.plate__led--gold { bottom: 10%; right: 8%; height: 42%; background: linear-gradient(transparent, var(--gold-deep)); opacity: 0.6; }

.gear__name {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: 0.01em;
  color: var(--bone);
}
.gear__body { color: var(--stone); max-width: 44ch; }

.studio__micro { margin-top: clamp(48px, 8vh, 90px); color: var(--gold); }

/* Mobile: native swipe with snap */
@media (max-width: 768px) {
  .gear { scroll-snap-type: x mandatory; }
  .gear__panel { scroll-snap-align: center; width: 82vw; }
}

/* ── Rates / plaques ───────────────────────────────────────── */
.plaques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  align-items: stretch;
  perspective: 1200px;
}
@media (max-width: 900px) { .plaques { grid-template-columns: 1fr; max-width: 480px; } }

.plaque {
  position: relative;
  padding: clamp(30px, 3.4vw, 46px) clamp(24px, 2.8vw, 38px) clamp(34px, 3.6vw, 50px);
  background:
    repeating-linear-gradient(90deg, rgba(245, 243, 238, 0.012) 0 1px, transparent 1px 3px),
    radial-gradient(140% 100% at 50% -20%, rgba(184, 134, 59, 0.13), transparent 55%),
    linear-gradient(165deg, var(--panel) 0%, #101114 70%);
  border: 1px solid rgba(217, 180, 90, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(243, 227, 163, 0.1),
    0 30px 60px -30px rgba(0, 0, 0, 0.8);
  transform-style: preserve-3d;
  will-change: transform;
  display: grid;
  gap: 18px;
  align-content: start;
}
.plaque__screws i {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-hi), var(--gold-dark) 70%);
  opacity: 0.55;
}
.plaque__screws i:nth-child(1) { top: 12px; left: 12px; }
.plaque__screws i:nth-child(2) { top: 12px; right: 12px; }
.plaque__screws i:nth-child(3) { bottom: 12px; left: 12px; }
.plaque__screws i:nth-child(4) { bottom: 12px; right: 12px; }

.plaque__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-label); font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink);
  background: var(--foil);
  padding: 7px 16px;
}
.plaque--featured {
  border-color: rgba(217, 180, 90, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(243, 227, 163, 0.16),
    0 0 50px -18px rgba(184, 134, 59, 0.35),
    0 30px 60px -30px rgba(0, 0, 0, 0.85);
}

.plaque__name {
  font-family: var(--font-label); font-weight: 600;
  font-size: 14px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--stone);
}
.plaque--featured .plaque__name { color: var(--gold-hi); }
.plaque__price {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 62px);
  line-height: 1;
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.plaque__price small {
  font-family: var(--font-label); font-weight: 400;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone);
  -webkit-text-fill-color: var(--stone);
}
.plaque__list { display: grid; gap: 10px; }
.plaque__list li {
  color: var(--stone); font-size: 14.5px;
  padding-left: 20px; position: relative;
}
.plaque__list li::before {
  content: ''; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 1px; background: var(--gold);
}

.rates__packages-label { margin-top: clamp(56px, 9vh, 110px); margin-bottom: 26px; color: var(--gold); }
.packages {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 30px);
  perspective: 1200px;
}
@media (max-width: 760px) { .packages { grid-template-columns: 1fr; } }
.package {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto;
  gap: 8px 24px; align-items: baseline;
  padding: clamp(26px, 3vw, 40px);
  background: linear-gradient(160deg, var(--panel-2), #0F1013 70%);
  border: 1px solid rgba(217, 180, 90, 0.16);
  box-shadow: inset 0 1px 0 rgba(243, 227, 163, 0.07);
  will-change: transform;
}
.package__name {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.015em; color: var(--bone);
}
.package__price {
  grid-column: 2; grid-row: 1;
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px);
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.package__body { grid-column: 1 / -1; color: var(--stone); font-size: 14.5px; max-width: 52ch; }

.plaque__sub {
  font-family: var(--font-label); font-weight: 500;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(217, 180, 90, 0.28);
  padding: 8px 14px;
  justify-self: start;
}

/* Book CTA under the prices — the studio-booking conversion point. */
.rates__cta { display: grid; justify-items: center; gap: 16px; margin-top: clamp(40px, 6vh, 72px); }
.rates__firsttime {
  font-family: var(--font-label); font-weight: 500;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); text-align: center;
}

.rates__lockout {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(28px, 4vh, 44px);
  padding: 18px 22px;
  border: 1px solid rgba(217, 180, 90, 0.18);
  color: var(--stone);
  font-family: var(--font-label); font-weight: 400;
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
}
.rates__lockout svg { width: 16px; height: 20px; flex-shrink: 0; color: var(--gold); }

/* Ticker */
.ticker {
  position: relative;
  margin-top: clamp(64px, 10vh, 120px);
  border-top: 1px solid rgba(217, 180, 90, 0.18);
  border-bottom: 1px solid rgba(217, 180, 90, 0.18);
  padding: 18px 0;
  overflow: hidden;
}
.ticker__pause {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid rgba(217, 180, 90, 0.32);
  background: var(--ink);
  transition: background 0.3s;
}
.ticker__pause svg { width: 10px; height: 12px; fill: var(--gold); }
.ticker__pause[aria-pressed="true"] { background: var(--gold); }
.ticker__pause[aria-pressed="true"] svg { fill: var(--ink); }
.ticker.is-paused .ticker__track,
.ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__track {
  display: flex; gap: 48px; width: max-content;
  animation: ticker var(--ticker-duration, 40s) linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-label); font-weight: 400;
  font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Founding 20 ───────────────────────────────────────────── */
.founding {
  background: linear-gradient(180deg, var(--ink), #0A0B0E 40%, var(--ink));
  overflow: clip;
}
.founding__glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: min(900px, 120vw); aspect-ratio: 2/1;
  background: radial-gradient(50% 60% at 50% 40%, rgba(184, 134, 59, 0.13), transparent 70%);
  pointer-events: none;
}
.founding__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 960px) { .founding__grid { grid-template-columns: 1fr; } }

.founding__offer { display: grid; gap: 24px; justify-items: start; }
.founding__lock {
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.founding__subline { color: var(--bone); font-size: clamp(15px, 1.7vw, 18px); }
.founding__perks { display: grid; gap: 14px; }
.founding__perks li {
  color: var(--stone); font-size: 15px; max-width: 52ch;
  padding-left: 26px; position: relative;
}
.founding__perks li::before {
  content: ''; position: absolute; left: 0; top: 0.28em;
  width: 12px; height: 15px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 28%, 100% 42%, 62% 42%, 62% 100%, 38% 100%, 38% 42%, 0 42%, 0 28%);
  opacity: 0.8;
}
.founding__counter {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-label); font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stone); font-size: 13px;
  margin-top: 8px;
}
.founding__counter-num {
  font-family: var(--font-display); font-size: clamp(54px, 6vw, 84px);
  line-height: 0.9; letter-spacing: 0;
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.keys {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.6vw, 20px);
}
.key {
  aspect-ratio: 1 / 1.6;
  display: grid; place-items: center;
  border: 1px solid rgba(217, 180, 90, 0.14);
  background: linear-gradient(170deg, rgba(22, 23, 27, 0.9), rgba(14, 15, 18, 0.9));
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-vault);
}
.key svg { width: 46%; height: auto; }
@media (hover: hover) {
  .key--free:hover {
    border-color: rgba(217, 180, 90, 0.5);
    box-shadow: 0 0 34px -10px rgba(217, 180, 90, 0.4);
    transform: translateY(-4px);
  }
}
.key--claimed { opacity: 0.85; }
.key--claimed svg .key-fill { fill: #1B1C21; stroke: rgba(154, 152, 143, 0.25); }
.key--claimed { border-color: rgba(245, 243, 238, 0.05); }

/* ── Label ─────────────────────────────────────────────────── */
.affil {
  display: flex; align-items: center; justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(18px, 3.5vw, 44px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-top: 1px solid rgba(217, 180, 90, 0.16);
  border-bottom: 1px solid rgba(217, 180, 90, 0.16);
}
.affil span {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.affil__key { width: 14px; height: 18px; color: rgba(217, 180, 90, 0.45); flex-shrink: 0; }

.labelsec__services {
  margin-top: clamp(48px, 8vh, 90px);
  color: var(--stone);
  line-height: 2.2;
}
.labelsec__line {
  margin-top: 18px;
  font-family: var(--font-label); font-weight: 400;
  font-size: clamp(14px, 1.8vw, 19px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  max-width: 40ch;
  line-height: 1.8;
}

/* ── Booking ───────────────────────────────────────────────── */
.booking { background: linear-gradient(180deg, var(--ink), #0B0C0F 60%, var(--ink)); }
.booking__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .booking__grid { grid-template-columns: 1fr; } }

.booking__channels { display: grid; }
.channel {
  display: grid; gap: 6px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(217, 180, 90, 0.14);
  transition: padding-left 0.45s var(--ease-vault), background 0.45s;
}
.channel:first-child { border-top: 1px solid rgba(217, 180, 90, 0.14); }
@media (hover: hover) {
  .channel[href]:hover { padding-left: 16px; background: rgba(184, 134, 59, 0.04); }
  .channel[href]:hover .channel__value { color: var(--gold-hi); }
}
.channel__value {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.02em;
  color: var(--bone);
}
.booking__form { display: grid; gap: 26px; }
.booking__form-note {
  color: var(--stone); font-size: 14.5px; line-height: 1.7;
  border: 1px solid rgba(217, 180, 90, 0.28);
  padding: 16px 20px;
}
.booking__form-note a {
  color: var(--gold-hi);
  border-bottom: 1px solid rgba(243, 227, 163, 0.4);
  padding-bottom: 2px;
}
.field { display: grid; gap: 10px; }
/* Honeypot — kept out of sight and out of the tab order; bots fill it, people can't */
.field--hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.field input {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(217, 180, 90, 0.25);
  color: var(--bone);
  font-family: var(--font-body); font-size: 17px;
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 0.3s;
}
.field input::placeholder { color: rgba(154, 152, 143, 0.85); }
.field input:focus { outline: none; border-color: var(--gold); }
.booking__form .btn { justify-self: start; }
.booking__form.is-sent .btn { border-color: var(--gold); color: var(--ink); }
.booking__form.is-sent .btn::before { transform: scaleY(1); }

.booking__fine {
  margin-top: clamp(56px, 9vh, 100px);
  color: var(--stone);
  font-size: 12px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  max-width: 88ch;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  display: grid; justify-items: center; gap: 18px;
  padding: clamp(70px, 10vh, 120px) var(--gutter) 46px;
  border-top: 1px solid rgba(217, 180, 90, 0.1);
  text-align: center;
}
.footer__keyhole { width: 30px; opacity: 0.95; }
.footer__slogan { color: var(--gold); }
.footer__social { display: flex; gap: 26px; }
.footer__social a {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s;
}
.footer__social a:hover { color: var(--gold-hi); }
.footer__copy { color: var(--stone); font-size: 12px; }

/* ── Responsive nav + mobile menu ──────────────────────────── */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 20px; height: 1.6px;
  background: var(--gold);
  transition: transform 0.35s var(--ease-vault), opacity 0.25s;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; z-index: 195;
  background: rgba(14, 15, 18, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: grid; place-content: center; gap: 6px;
  text-align: center;
  padding-top: var(--nav-h);
}
.mobilemenu[hidden] { display: none; }
.mobilemenu a {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 56px);
  text-transform: uppercase;
  color: var(--bone);
  padding: 10px 0;
  transition: color 0.3s;
}
.mobilemenu a:hover, .mobilemenu a:focus-visible { color: var(--gold-hi); }
.mobilemenu a:last-child { color: var(--gold); }
body.menu-open { overflow: hidden; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  .nav { padding-inline: 16px; }
  .nav__word { display: none; }
  .nav__tools .btn { display: none; } /* LOCK IN lives in the menu on small phones */
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain::before { animation: none; }
  .hero__scrollhint { display: none; }
  .ticker { overflow-x: auto; }
  .ticker__track { animation: none; }
  .sound-toggle[aria-pressed="true"] .sound-toggle__bars rect { animation: none; transform: scaleY(1); }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
