:root {
  --black: #070707;
  --panel: #121111;
  --panel-soft: #191816;
  --gold: #d6aa2b;
  --gold-soft: #f0d879;
  --ivory: #f5efe2;
  --muted: #b8b0a2;
  --line: rgba(214, 170, 43, 0.28);
  --line-soft: rgba(245, 239, 226, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 170, 43, 0.12), transparent 34rem),
    linear-gradient(180deg, #0c0b0a 0%, #070707 48%, #0f0e0d 100%);
}

a {
  color: var(--gold-soft);
  text-decoration-color: rgba(240, 216, 121, 0.45);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ivory);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  padding: clamp(64px, 12vw, 120px) 0;
}

.page {
  padding: clamp(42px, 8vw, 84px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.6rem, 9vw, 6.3rem);
}

h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2.7vw, 1.35rem);
}

.meta {
  color: var(--gold-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #11100e;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-secondary {
  background: transparent;
  color: var(--gold-soft);
}

.band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(245, 239, 226, 0.035);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 46px 0;
}

.split article,
.panel,
.card {
  border: 1px solid var(--line-soft);
  background: rgba(18, 17, 17, 0.82);
}

.split article,
.panel {
  padding: 26px;
  border-radius: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.cards > div {
  grid-column: 1 / -1;
}

.card {
  display: block;
  min-height: 156px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ivory);
  text-decoration: none;
}

.card:hover {
  border-color: var(--line);
}

.card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.card small {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-list {
  padding-top: 30px;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.panel + .panel {
  margin-top: 18px;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line-soft);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .card {
    min-height: 0;
  }
}
