:root {
  --warm-black: #1a1410;
  --deep-brown: #2a2018;
  --gold: #d4a043;
  --gold-light: #e8c373;
  --gold-glow: rgba(212, 160, 67, 0.15);
  --cream: #f5efe6;
  --cream-muted: #e8dfd3;
  --warm-gray: #8a7e72;
  --text-primary: #f5efe6;
  --text-secondary: #c4b8a8;
  --accent-coral: #c47a5a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-black);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 122, 90, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 160, 67, 0.3);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--cream);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Manifesto ── */
.manifesto {
  padding: 120px 40px;
  background: var(--deep-brown);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

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

.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 24px;
}

.manifesto-credit {
  font-size: 0.95rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Pillars ── */
.pillars {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-header {
  margin-bottom: 80px;
}

.pillars-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.pillars-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.pillar-card {
  padding: 48px 40px;
  background: var(--deep-brown);
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.pillar-card:hover {
  border-left-color: var(--gold);
  background: rgba(42, 32, 24, 0.8);
}

.pillar-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Story ── */
.story {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--warm-black) 0%, var(--deep-brown) 100%);
}

.story-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 40px;
}

.story-line {
  background: linear-gradient(to bottom, var(--gold), var(--accent-coral), transparent);
  border-radius: 2px;
}

.story-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-content p strong {
  color: var(--gold-light);
}

/* ── Closing ── */
.closing {
  padding: 140px 40px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ── Footer ── */
.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(212, 160, 67, 0.1);
}

.footer p {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: 85vh;
  }
  .manifesto {
    padding: 80px 24px;
  }
  .pillars {
    padding: 80px 24px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card {
    padding: 32px 24px;
  }
  .story {
    padding: 80px 24px;
  }
  .story-inner {
    gap: 24px;
  }
  .closing {
    padding: 100px 24px;
  }
  .footer {
    padding: 32px 24px;
  }
}