:root {
  --bg: #14110f;
  --bg-soft: #1c1916;
  --card: #211d19;
  --cream: #f3ece1;
  --muted: #b6ac9d;
  --gold: #c9a24b;
  --gold-soft: #e0c177;
  --line: #322c25;
  --max: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(20,17,15,.85);
  backdrop-filter: blur(6px);
  position: sticky; top: 0; z-index: 10;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: .3px; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold));
  display: grid; place-items: center; color: #1a1611; font-weight: 700;
  flex: none;
}
.brand span.name { color: var(--cream); }
nav.site a { color: var(--muted); margin-left: 22px; font-size: 15px; }
nav.site a:hover { color: var(--cream); text-decoration: none; }

/* Hero */
.hero { padding: 96px 0 72px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero h1 { font-size: 44px; line-height: 1.15; font-weight: 700; letter-spacing: -.5px; }
.hero h1 .accent { color: var(--gold-soft); }
.hero p.lead { color: var(--muted); font-size: 19px; max-width: 620px; margin: 24px auto 0; }
.cta-row { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 16px; transition: .2s;
}
.btn.primary { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #1a1611; }
.btn.primary:hover { filter: brightness(1.08); text-decoration: none; transform: translateY(-1px); }
.btn.ghost { border: 1px solid var(--line); color: var(--cream); }
.btn.ghost:hover { border-color: var(--gold); text-decoration: none; }

/* Sections */
section { padding: 56px 0; border-top: 1px solid var(--line); }
section h2 { font-size: 28px; margin-bottom: 18px; letter-spacing: -.3px; }
section p { color: var(--muted); margin-bottom: 16px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 22px;
}
.card h3 { color: var(--cream); font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 15px; margin: 0; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; margin-top: 6px; }
.info-grid .row { padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-grid .label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); display: block; margin-bottom: 4px; }
.info-grid .value { color: var(--cream); font-size: 16px; }

/* Legal pages */
.legal { padding: 64px 0 40px; }
.legal h1 { font-size: 34px; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 20px; color: var(--cream); margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { margin: 8px 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--cream); }
.back { display: inline-block; margin-bottom: 28px; font-size: 15px; }

/* Footer */
footer.site {
  border-top: 1px solid var(--line); margin-top: 40px;
  padding: 40px 0; color: var(--muted); font-size: 14px;
}
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--cream); }
footer.site .links a { margin-left: 20px; }
footer.site .fineprint {
  flex-basis: 100%; order: 9; margin-top: 6px;
  font-size: 12px; line-height: 1.6; color: var(--muted); opacity: .75;
}

@media (max-width: 720px) {
  .hero h1 { font-size: 34px; }
  .cards, .info-grid { grid-template-columns: 1fr; }
  nav.site a { margin-left: 14px; }
  footer.site .links a { margin: 0 14px 0 0; }
}
