:root {
  --bg: #0d0d0f;
  --bg-alt: #141418;
  --fg: #f0ebe0;
  --fg-muted: #9a9388;
  --accent: #d4a520;
  --accent-bright: #f5c842;
  --accent-dark: #8a6010;
  --text-muted: #7a7268;
  --border: rgba(212, 165, 32, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,165,32,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  max-width: 760px;
}

.hero-crown-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(245, 200, 66, 0.3));
}

.hero-crown {
  width: 120px;
  height: auto;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
  background: linear-gradient(160deg, #f0ebe0 30%, #d4a520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 56px;
}

.hero-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-tag-strip .sep {
  color: var(--accent);
  opacity: 0.6;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
  font-style: italic;
}

.manifesto-text strong {
  color: var(--accent-bright);
  font-weight: 600;
  font-style: normal;
}

.manifesto-crown-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  filter: drop-shadow(0 0 12px rgba(245, 200, 66, 0.25));
}

.mini-crown {
  width: 40px;
  height: auto;
}

/* ── PILLARS ── */
.pillars {
  padding: 100px 32px;
  background: var(--bg);
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--bg-alt);
  padding: 48px 40px;
}

.pillar-icon {
  margin-bottom: 24px;
  filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.2));
}

.pillar-icon svg {
  width: 48px;
  height: auto;
}

.pillar h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-bright);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 32px 120px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,165,32,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.closing-crown {
  width: 120px;
  height: auto;
  margin: 0 auto 48px;
  display: block;
  filter: drop-shadow(0 0 60px rgba(245, 200, 66, 0.4));
}

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.closing-statement strong {
  color: var(--accent-bright);
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent-bright);
}

.footer-est {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-note {
  text-align: center;
}

.footer-note p {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.footer-copy {
  text-align: right;
}

.footer-copy p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--accent);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-crown-wrapper {
    margin-bottom: 32px;
  }

  .hero-crown {
    width: 90px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .hero-sub br { display: none; }

  .hero-tag-strip {
    gap: 6px 12px;
    font-size: 0.72rem;
  }

  .manifesto {
    padding: 60px 20px;
  }

  .manifesto-text {
    font-size: 1.05rem;
  }

  .pillars {
    padding: 60px 20px;
  }

  .pillars-heading {
    margin-bottom: 40px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 36px 28px;
  }

  .closing {
    padding: 80px 20px 100px;
  }

  .closing-crown {
    width: 90px;
    margin-bottom: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand, .footer-copy {
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }
}

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