:root {
  --bg: #040404;
  --panel: rgba(12, 12, 12, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.02);
  --text: #f4efe8;
  --muted: #b8b0a4;
  --gold: #d4af37;
  --border: rgba(212, 175, 55, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 28%),
    linear-gradient(180deg, #050505 0%, #000 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.topbar {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav a,
.pill,
.cta,
.card-cta {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.pill:hover,
.cta:hover,
.card-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.58);
  color: var(--gold);
}

.hero {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  padding: 12px 0 6px;
}

.brand-mark {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.subhead {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.divider {
  width: 118px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.hero-copy {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero-copy p,
.intro-copy {
  margin: 0;
  color: #d7d1c8;
  line-height: 1.8;
  max-width: 60ch;
}

.cta-row,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.cta.primary {
  background: rgba(212, 175, 55, 0.14);
}

.cards,
.grid-2,
.grid-3,
.stack {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 30px;
  width: 100%;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.section h2,
.card h2,
.mini h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.section h2 {
  font-size: 1rem;
}

.section h3,
.card h3,
.mini h4 {
  margin: 0 0 8px;
  color: #efe8dd;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.section p,
.section li,
.card p,
.mini p,
.mini li,
.page-copy,
.page-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.card,
.mini {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: var(--panel-soft);
  padding: 22px;
}

.page-title {
  margin: 0 0 10px;
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
}

.page-subtitle {
  margin: 0;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.page-copy {
  max-width: 940px;
  margin: 0 auto;
}

.note {
  color: #d7d1c8;
  font-style: italic;
}

.split-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.toggle-link {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.88rem;
}

.toggle-link.active {
  color: var(--gold);
  text-decoration: underline;
}

.center-list {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.callout-line {
  color: #d7d1c8;
}

footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #cabdbf;
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 940px) {
  .nav {
    justify-content: center;
  }
}
