:root {
  --ink: #0f0b06;
  --paper: #f3eee6;
  --text: #e8e0d0;
  --muted: rgba(232, 224, 208, 0.45);
  --accent: #d4b46a;
  --line: rgba(255, 255, 255, 0.08);
  --font-display: "Young Serif", "Iowan Old Style", Palatino, serif;
  --font-sans: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-mono: "Martian Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--ink); color: var(--text); font-family: var(--font-sans); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mono { font-family: var(--font-mono); letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.62rem; }
.display { font-family: var(--font-display); }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(180deg, rgba(15,11,6,0.85), transparent);
}
.nav a { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.nav-links { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: flex-end; }
.svh { position: relative; height: 280vh; background: #000; }
.svh-pin { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.svh-pin video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.svh-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,6,.35) 0%, transparent 28%, transparent 62%, rgba(15,11,6,.72) 100%);
  pointer-events: none;
}
.svh-copy {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 0 1.5rem 4.5rem; text-align: center;
}
.svh-copy h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.95; margin: 0.4rem 0 1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.55);
}
.svh-cue { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 5; color: var(--accent); opacity: .8; }
.cta {
  display: inline-flex; margin-top: 1.6rem; padding: 0.85rem 1.6rem;
  background: #2b2723; color: #f6f3ec;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.section { padding: 7rem 1.5rem; position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; }
.headline { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 5.6vw, 4.8rem); line-height: 0.96; letter-spacing: -0.03em; margin: 0 0 1.4rem; }
.headline .mute { color: rgba(232,224,208,.4); }
.headline .gold { color: var(--accent); }
.lead { max-width: 58ch; margin-left: auto; color: rgba(232,224,208,.62); font-weight: 300; line-height: 1.65; font-size: 1.05rem; }
.map-wrap { position: relative; }
.hotspot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 8px rgba(212,180,106,.18);
  cursor: pointer; border: 0; transform: translate(-50%, -50%);
}
.panel {
  position: absolute; right: 1rem; top: 1rem; width: min(320px, 86vw);
  background: rgba(15,11,6,.88); border: 1px solid var(--line); padding: 1.1rem 1.2rem;
}
.panel h3 { font-family: var(--font-display); font-size: 1.6rem; margin: .2rem 0 .4rem; }
.panel p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.tiers { display: grid; gap: 1rem; }
@media (min-width: 900px) { .tiers { grid-template-columns: 1fr 1.15fr 1fr; } }
.tier { border: 1px solid var(--line); padding: 1.5rem; background: rgba(255,255,255,.02); }
.tier.rec { border-color: var(--accent); background: rgba(212,180,106,.06); }
.tier h3 { font-family: var(--font-display); font-size: 1.8rem; margin: .4rem 0; }
.price { color: var(--accent); font-size: 1.8rem; font-weight: 500; }
.footer { padding: 3rem 1.5rem 4rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 767px) { .panel { position: static; width: 100%; margin-top: 1rem; } }
