:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0a0a0f;
  --surface-soft: #13131f;
  --gold: #d4a04a;
  --gold-light: #e8b659;
  --text: #ffffff;
  --muted: #b8b8c7;
  --line: rgba(212, 160, 74, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 160, 74, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(232, 182, 89, 0.1), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 70%);
}

a { color: inherit; }

.site-header,
.site-footer {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.logo span,
.gold { color: var(--gold); }

.nav-links,
.footer-links,
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.nav-links a,
.footer-links a,
.page-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.page-links a:hover { color: var(--gold-light); }

.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 3rem;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: var(--gold-light);
  background: rgba(212, 160, 74, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 980px;
  margin-top: 1.2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 { font-size: 1.15rem; }

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
}

.section { padding: 3.5rem 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.answer-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.card { padding: 1.25rem; }

.answer-box {
  max-width: 920px;
  padding: 1.35rem;
  color: var(--muted);
}

ul,
ol { padding-left: 1.2rem; }

li + li { margin-top: 0.45rem; }

.faq details {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.faq summary {
  color: var(--gold-light);
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
}

@media (max-width: 780px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
}
