:root {
  --ink: #0b1220;
  --navy: #14233d;
  --navy-deep: #0a1324;
  --gold: #d4af46;
  --gold-soft: #e6c86a;
  --cream: #f4ecdc;
  --paper: #fbf7ef;
  --sand: #e8dcc4;
  --slate: #5b6578;
  --line: rgba(212, 175, 70, 0.28);
  --shadow: 0 24px 60px rgba(11, 18, 32, 0.18);
  --radius: 22px;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(212, 175, 70, 0.08), transparent 50%),
    var(--paper);
  font-family: var(--font-sans);
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 20;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 239, 0.82);
  border-bottom: 1px solid rgba(20, 35, 61, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.brand-tag { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--slate); text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--navy);
  position: relative;
}
.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
}
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 70, 0.22), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(212, 175, 70, 0.12), transparent 32%),
    linear-gradient(160deg, #09101c 0%, #14233d 55%, #0b1220 100%);
  padding: 5.5rem 0 4.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 48%;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(212, 175, 70, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(212, 175, 70, 0.05),
    0 0 0 86px rgba(212, 175, 70, 0.035);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
}
.hero h1,
.page-hero h1,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(3rem, 7vw, 6.2rem); margin: 0 0 1rem; }
.lede { font-size: 1.15rem; max-width: 38rem; color: rgba(244, 236, 220, 0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-ghost { border-color: rgba(244, 236, 220, 0.28); color: var(--cream); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-line { border-color: rgba(11, 18, 32, 0.18); }

.compass-card {
  justify-self: end;
  width: min(340px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(212,175,70,0.16) 0 2deg, transparent 2deg 15deg),
    radial-gradient(circle at 50% 50%, rgba(20,35,61,0.1), rgba(11,18,32,0.55));
  border: 1px solid rgba(212, 175, 70, 0.35);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}
.compass-card img {
  width: 58%;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}

.section { padding: 5rem 0; }
.section-muted { background: #f3ead8; }
.section-dark {
  background: var(--navy-deep);
  color: var(--cream);
}
.section h2, .prose h1, .prose h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: white;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.section-dark .card {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  box-shadow: none;
  border-color: rgba(212,175,70,0.16);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.4rem;
  border-top: 2px solid var(--gold);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}
.stat span { color: var(--slate); }

.store-row, .stage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.store-row img { height: 52px; width: auto; }
.stage {
  flex: 1 1 180px;
  min-height: 140px;
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,70,0.2);
}
.stage b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.page-hero {
  padding: 4.2rem 0 2.4rem;
  background:
    linear-gradient(180deg, #14233d 0%, #0b1220 100%);
  color: var(--cream);
}
.page-hero p { max-width: 42rem; color: rgba(244,236,220,0.78); }
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p, .prose li { color: #2b3344; }
.section-dark .prose p, .section-dark .prose li { color: rgba(244,236,220,0.82); }
.prose ul { padding-left: 1.2rem; }
.legal ol { padding-left: 1.2rem; }
.legal h2 { font-size: 1.8rem; margin-top: 2.2rem; }

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 640px;
}
label { font-weight: 600; font-size: 0.92rem; }
.field-control, select.field-control, textarea.field-control {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid rgba(20, 35, 61, 0.14);
  background: white;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font: inherit;
}
.errorlist { color: #9b2c2c; padding-left: 1rem; }

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.site-footer a { color: rgba(244, 236, 220, 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244,236,220,0.12);
  font-size: 0.88rem;
}
.fineprint { color: rgba(244,236,220,0.55); font-size: 0.82rem; }

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    inset: 76px 1.2rem auto;
    background: var(--paper);
    border: 1px solid rgba(20,35,61,0.08);
    border-radius: 18px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .hero-grid, .split, .card-grid, .stat-row, .footer-grid {
    grid-template-columns: 1fr;
  }
  .compass-card { justify-self: start; width: 220px; }
  .hero { padding: 3.6rem 0 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
