:root {
  --bg: #0F1A0F;
  --bg-mid: #131E13;
  --bg-light: #1A2E1A;
  --surface: #243524;
  --fg: #F5F0E8;
  --fg-muted: rgba(245, 240, 232, 0.55);
  --fg-subtle: rgba(245, 240, 232, 0.3);
  --accent: #C9A84C;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --border: rgba(201, 168, 76, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(36, 53, 36, 0.4) 0%, transparent 70%),
    linear-gradient(to bottom, #0F1A0F 0%, #1A2E1A 40%, #243524 70%, #0F1A0F 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hero-columns {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.columns-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-mid);
  padding: 8rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.quote-attr {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  font-family: var(--font-body);
}

.manifesto-body p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.manifesto-visual {
  flex-shrink: 0;
}

.manifesto-svg {
  width: 220px;
  height: 300px;
  opacity: 0.85;
}

/* ── PRINCIPLES ── */
.principles {
  background: var(--bg);
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.principles-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.principle-card {
  background: var(--bg-mid);
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid var(--border);
}

.principle-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.principle-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.principle-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── WHY NOW ── */
.whynow {
  background: var(--bg-light);
  padding: 8rem 2rem;
}

.whynow-inner {
  max-width: 900px;
  margin: 0 auto;
}

.whynow-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.whynow-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg);
  padding: 10rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-emblem {
  width: 72px;
  height: 72px;
  margin: 0 auto 3rem;
  opacity: 0.85;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-subtle);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  letter-spacing: 0.05em;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
    gap: 3rem;
  }

  .manifesto-visual {
    display: none;
  }

  .whynow-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

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