/* === TOKENS === */
:root {
  --bg: #0F1A0F;
  --bg-alt: #0D150D;
  --bg-card: #142014;
  --accent: #E8A84B;
  --accent-dim: rgba(232, 168, 75, 0.15);
  --text: #F5F2E8;
  --text-muted: #9EA89A;
  --text-dim: #5C6B56;
  --border: rgba(232, 168, 75, 0.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(15, 26, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(232,168,75,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(14, 28, 14, 0.9) 0%, transparent 80%);
  pointer-events: none;
}
.hero-content {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
}
.hero-stat-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
}

/* === MISSION === */
.mission {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.mission-inner {
  max-width: 680px;
  margin: 0 auto;
}
.mission-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.mission-headline {
  color: var(--text);
  margin-bottom: 1.75rem;
}
.mission-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* === CAPABILITIES === */
.capabilities {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.capabilities-header {
  max-width: 680px;
  margin: 0 auto 4rem;
}
.capabilities-headline {
  color: var(--text);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.cap-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
}
.cap-icon {
  margin-bottom: 1.25rem;
}
.cap-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cap-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* === OUTCOMES === */
.outcomes {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.outcome {}
.outcome-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.outcome-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 7rem 2rem 8rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 620px;
  margin: 0 auto;
}
.closing-headline {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.tag {
  font-size: 0.7rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--serif);
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero-stat-row { gap: 1.5rem; }
  .mission, .capabilities, .outcomes, .closing { padding: 4rem 1.5rem; }
  .cap-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing-tags { gap: 0.5rem; }
  .site-nav { padding: 1rem 1.5rem; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* === SELECTION === */
::selection { background: var(--accent); color: var(--bg); }
