:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --amber: #C8922A;
  --amber-light: #D4A843;
  --amber-dim: #8A6420;
  --amber-glow: rgba(200,146,42,0.06);
  --text-primary: #EEEAE0;
  --text-secondary: #9E9A8E;
  --text-ghost: #4A4844;
  --divider: #2A2A2A;
  --green: #5A8A5A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98'%3E%3Cpath d='M28 2 L54 17 L54 47 L28 62 L2 47 L2 17 Z' fill='none' stroke='%23C8922A' stroke-width='0.5' stroke-opacity='0.05'/%3E%3Cpath d='M28 52 L54 67 L54 97 L28 112 L2 97 L2 67 Z' fill='none' stroke='%23C8922A' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

.container { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
  padding: 16px 0;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px; font-weight: 300; letter-spacing: 0.25em;
  color: var(--text-primary); text-decoration: none;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); }

/* ── HERO ── */
.hero { padding: 100px 0 80px; text-align: center; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; color: var(--amber);
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(52px, 10vw, 88px); font-weight: 300;
  letter-spacing: 0.15em; color: var(--text-primary);
  line-height: 1; margin-bottom: 16px;
}
.hero-subtitle {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 3vw, 24px); font-weight: 300;
  font-style: italic; color: var(--text-secondary); margin-bottom: 12px;
}
.hero-tagline {
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--text-ghost); text-transform: uppercase; margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--amber); color: var(--black);
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; padding: 14px 36px; border-radius: 6px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--amber-light); color: var(--black); }
.btn-outline {
  display: inline-block; border: 1px solid var(--divider);
  color: var(--text-secondary); text-decoration: none; font-size: 14px;
  font-weight: 500; letter-spacing: 0.04em; padding: 13px 36px;
  border-radius: 6px; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-label {
  font-size: 11px; letter-spacing: 0.2em; color: var(--amber);
  text-transform: uppercase; margin-bottom: 12px;
}
.section-label.center { text-align: center; }
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 300;
  color: var(--text-primary); margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title em { color: var(--amber); font-style: normal; }
.section-intro {
  font-size: 17px; color: var(--text-secondary); max-width: 600px;
  margin-bottom: 48px; line-height: 1.7;
}
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-divider { border-top: 1px solid var(--divider); }

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px; margin: 32px 0;
}
.card {
  background: var(--charcoal); border: 1px solid var(--divider);
  border-radius: 12px; padding: 28px;
}
.card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0; }
.card-icon { font-size: 28px; margin-bottom: 12px; display: block; }

/* ── STATS ── */
.stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin: 48px 0; }
.stat { text-align: center; }
.stat-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px; font-weight: 300; color: var(--amber); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 8px; letter-spacing: 0.05em; }

/* ── HIGHLIGHT ── */
.highlight {
  background: var(--amber-glow); border: 1px solid rgba(200,146,42,0.12);
  border-radius: 14px; padding: 40px; margin: 48px 0; text-align: center;
}
.highlight p { color: var(--text-primary); font-size: 17px; line-height: 1.7; margin: 0; }
.highlight strong { color: var(--amber); }

/* ── FLOW STEPS ── */
.flow { margin: 32px 0; }
.flow-step {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--divider);
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px; color: var(--amber); font-weight: 300; min-width: 48px;
}
.flow-step h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.flow-step p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  text-align: center; padding: 40px 24px;
  font-size: 13px; color: var(--text-ghost);
  border-top: 1px solid var(--divider);
  position: relative; z-index: 1;
}
footer a { color: var(--text-ghost); margin: 0 8px; }
footer a:hover { color: var(--amber); }
.footer-tagline {
  display: block; margin-top: 12px;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
  .stats { gap: 24px; }
  .grid { grid-template-columns: 1fr; }
}
