@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Crimson+Pro:ital,wght@0,400;1,400&display=swap');

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

:root {
  --bg:       #100f0c;
  --surface:  #161410;
  --border:   #222018;
  --gold:     #c9a84c;
  --text:     #f0ece4;
  --muted:    #a09880;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Layout ── */

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 15, 12, 0.95);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--text);
}

/* ── Hero ── */

.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.85;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* ── Section shared ── */

section {
  padding: 80px 0;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

/* ── Topics grid ── */

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

.topic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.topic-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.topic-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.topic-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── How it works ── */

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

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
}

.footer-sep {
  color: var(--border);
}

/* ── Support page ── */

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.page-hero .sub {
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}

.contact-block {
  margin-bottom: 64px;
}

.contact-block p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-email {
  display: inline-block;
  font-size: 18px;
  color: var(--gold);
  text-decoration: none;
  margin: 4px 0 16px;
  transition: opacity 0.2s;
}

.contact-email:hover {
  opacity: 0.8;
}

.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}

.faq-list {
  list-style: none;
}

.faq-item {
  padding: 28px 0;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Privacy page ── */

.privacy-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.policy-section p,
.policy-section ul {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.policy-section ul {
  list-style: none;
  padding-left: 4px;
}

.policy-section ul li::before {
  content: '—';
  margin-right: 10px;
  color: var(--gold);
}

.policy-section a {
  color: var(--gold);
  text-decoration: none;
}

.policy-section a:hover {
  opacity: 0.8;
}

/* ── Responsive ── */

@media (max-width: 720px) {
  .hero h1 {
    font-size: 36px;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 18px;
  }
}
