@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0c;
  --bg-alt: #131316;
  --card: #16161a;
  --card-hover: #1b1b20;
  --gold: #c9a24b;
  --gold-bright: #e6c876;
  --gold-dim: #8a7333;
  --text: #ece9e2;
  --text-dim: #9b9995;
  --text-faint: #6f6d6a;
  --danger: #c14b4b;
  --danger-bg: rgba(193, 75, 75, 0.08);
  --safe: #4a9a6e;
  --safe-bg: rgba(74, 154, 110, 0.08);
  --border: #232326;
  --border-soft: #1d1d20;
  --radius: 3px;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(201, 162, 75, 0.06), transparent);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Header ---------- */
header {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg-alt) 90%, rgba(201,162,75,0.02));
  border-bottom: 1px solid var(--gold-dim);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}
.brand-lockup { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.brand-lockup img.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}
.footer-logo {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .brand-lockup img.brand-logo { height: 38px; }
}
header nav { display: flex; align-items: center; gap: 4px; }
header nav a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 6px;
  padding: 8px 14px;
  font-size: 12.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.15s ease, background 0.15s ease;
}
header nav a:hover { color: var(--gold-bright); background: rgba(201,162,75,0.06); }
header nav form button {
  background: none; border: none; color: var(--text-faint); padding: 8px 10px;
  margin-left: 6px; font-size: 12.5px; letter-spacing: 0.4px; cursor: pointer;
  font-family: 'Inter', sans-serif; text-transform: uppercase;
}
header nav form button:hover { color: var(--gold); }

main { max-width: 880px; margin: 0 auto; padding: 48px 24px 100px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 84px 32px 76px;
  border-bottom: 1px solid var(--border-soft);
  margin: -48px -24px 48px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.88) 62%, var(--bg) 100%),
    url('/images/hero-strip.jpg');
  background-size: cover;
  background-position: center 60%;
}
.hero .eyebrow {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: var(--gold-bright);
  margin: 0 0 16px;
  letter-spacing: 0.3px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.hero p.lede {
  color: var(--text);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.hero-actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; }

/* ---------- Feature strip (icons) ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 44px;
}
.feature-strip .feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.feature-strip .feature:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.feature-strip img.feature-icon {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  margin-bottom: 14px;
}
.feature-strip h3 {
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--gold-bright);
}
.feature-strip p {
  color: var(--text-dim);
  font-size: 12.5px;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .hero { padding: 56px 20px 48px; margin: -32px -16px 36px; }
  .hero h1 { font-size: 30px; }
  .feature-strip { grid-template-columns: 1fr; }
}

/* ---------- Disclaimer / notice ---------- */
.disclaimer {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-dim);
  color: var(--text-dim);
  font-size: 13px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  line-height: 1.6;
}
.disclaimer strong {
  color: var(--gold-bright);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  color: var(--gold-bright);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}
h1 { font-size: 28px; margin-bottom: 20px; }
h2 { font-size: 19px; margin: 32px 0 16px; }
h3 { font-size: 16px; margin: 0 0 12px; }

/* ---------- Forms ---------- */
input, textarea, select {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 13px;
  border-radius: var(--radius);
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 14px;
  transition: border-color 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold-dim);
}
label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

button, .btn {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0a0c;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: filter 0.15s ease, transform 0.1s ease;
}
button:hover, .btn:hover { filter: brightness(1.08); }
button:active, .btn:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold-bright);
}
.btn-outline:hover { background: rgba(201,162,75,0.08); filter: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.card:hover { border-color: var(--gold-dim); background: var(--card-hover); }
.card a.title {
  color: var(--gold-bright);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.card a.title:hover { color: var(--gold); }

.tag {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-left: 8px;
  vertical-align: middle;
}

.error { color: var(--danger); background: var(--danger-bg); border: 1px solid rgba(193,75,75,0.25); padding: 10px 14px; border-radius: var(--radius); margin-bottom: 14px; font-size: 13.5px; }
.success { color: var(--safe); background: var(--safe-bg); border: 1px solid rgba(74,154,110,0.25); padding: 10px 14px; border-radius: var(--radius); margin-bottom: 14px; font-size: 13.5px; }
.meta { color: var(--text-faint); font-size: 12.5px; letter-spacing: 0.2px; }
.vouch-legit { color: var(--safe); font-weight: 600; }
.vouch-scam { color: var(--danger); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  color: var(--text-faint);
  font-size: 12px;
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border-soft);
  max-width: 1040px;
  margin: 0 auto;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  text-align: left;
  margin-bottom: 32px;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12.5px;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p { margin: 0 0 10px; }
.footer-non-affiliation { color: var(--text-faint); font-size: 11px; }
.footer-heading {
  color: var(--gold-dim);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
footer .footer-brand {
  color: var(--gold-dim);
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-bottom {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}

/* ---------- Policy / long-form content ---------- */
.policy-body h2 { margin-top: 32px; }
.policy-body ul, .policy-body ol { padding-left: 22px; }
.policy-body li { margin-bottom: 6px; }
.policy-body p { margin-bottom: 14px; }
.policy-body strong { color: var(--gold-bright); }

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

@media (max-width: 640px) {
  header { padding: 16px 20px; flex-direction: column; gap: 14px; }
  header nav a, header nav form button { margin-left: 0; padding: 6px 10px; }
  .hero h1 { font-size: 28px; }
  main { padding: 32px 16px 80px; }
  .footer-grid { grid-template-columns: 1fr; }
}

