:root {
  --bg: #14100c;
  --bg-alt: #1c1712;
  --panel: #241d16;
  --border: #3a2f22;
  --text: #e8dfd0;
  --text-dim: #a99d89;
  --gold: #c9a24b;
  --gold-bright: #e3bd63;
  --red: #7a2e2e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: "Trajan Pro", "Cinzel", "Georgia", serif;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}

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

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-header .logo {
  font-family: "Trajan Pro", "Cinzel", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
}

.site-header nav a {
  margin-left: 28px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.site-header nav a:hover {
  color: var(--gold-bright);
}

/* Hero */

.hero {
  padding: 100px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 720px;
  margin: 0 auto 0.4em;
}

.hero .tagline {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-dim);
  font-size: 1.15rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: "Trajan Pro", "Cinzel", "Georgia", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--gold);
  color: #1a1510;
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: #1a1510;
}

.btn-secondary {
  background: transparent;
  color: var(--gold-bright);
}

.btn-secondary:hover {
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold-bright);
}

.fine-print {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* How it works */

.how-it-works {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: "Trajan Pro", "Cinzel", "Georgia", serif;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0;
}

.reassurance {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 40px auto 0;
  max-width: 560px;
}

/* Features */

.features {
  padding: 80px 0 100px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 26px 28px;
}

.feature h3 {
  font-size: 1.15rem;
}

.feature p {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.97rem;
}

/* Support */

.support {
  padding: 70px 0 90px;
  text-align: center;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at bottom, rgba(201, 162, 75, 0.06), transparent 60%),
    var(--bg-alt);
}

.support p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--text-dim);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 28px 0;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer span {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 720px) {
  .hero { padding: 70px 0 56px; }
  .hero h1 { font-size: 1.9rem; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }

  .site-header .wrap {
    flex-wrap: wrap;
    row-gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .site-header nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .site-header nav a {
    margin-left: 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}
