:root {
  --bg: #0b0c0d;
  --bg-soft: #121417;
  --bg-card: #171a1f;
  --text: #f2eee6;
  --muted: #b9afa0;
  --gold: #c8a45d;
  --gold-soft: #80683a;
  --line: rgba(242, 238, 230, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 164, 93, 0.12), transparent 34rem),
    linear-gradient(135deg, #070809 0%, var(--bg) 45%, #101216 100%);
  color: var(--text);
  line-height: 1.65;
}

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

img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.88rem;
}

.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--gold); }
.nav-toggle { display: none; }

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  padding: 5rem 0 4rem;
}

.eyebrow, .section-label, .card-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  letter-spacing: -0.055em;
}

h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.45rem; }

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
}

.button.primary {
  background: var(--gold);
  color: #15110a;
  border-color: var(--gold);
}

.button.secondary { color: var(--text); }
.button:hover { transform: translateY(-1px); }

.section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.split p:last-child, .page-intro { color: var(--muted); font-size: 1.15rem; margin: 0; }

.card-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 4rem;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.card p { color: var(--muted); }
.card .card-label { color: var(--gold); margin-top: 0; }

.quote-block blockquote {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  max-width: 980px;
}

.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}

.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); }
.page-intro { max-width: 760px; margin-top: 1rem; }

.list-stack { display: grid; gap: 1rem; }

.list-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.028);
  padding: 1.25rem;
}

.list-item h2, .list-item h3 { margin-bottom: 0.5rem; }
.list-item p { color: var(--muted); margin-bottom: 0; }

.status {
  display: inline-block;
  color: #15110a;
  background: var(--gold);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.45rem 0.65rem;
    font-size: 1.1rem;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 4.2rem;
    padding: 1rem;
    background: rgba(18, 20, 23, 0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .split, .card-grid.three, .card-grid.two { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
