/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg: #13110f;
  --surface: #1d1a16;
  --surface-2: #242019;
  --text: #f2ece0;
  --text-muted: #9a8e7e;
  --amber: #c9852a;
  --amber-dim: #8a5c1a;
  --sage: #8b9e7c;
  --sage-dim: #5a634e;
  --border: rgba(201, 133, 42, 0.18);
  --radius: 6px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::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: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); border-radius: 3px; }

/* ── Selection ─────────────────────────────────────────── */
::selection { background: var(--amber); color: var(--bg); }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  background: rgba(19, 17, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: baseline; gap: 10px; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-tagline { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(201, 133, 42, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139, 158, 124, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; padding-right: 60px; }
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  font-weight: 300;
}

.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-card-stack { position: relative; width: 320px; height: 340px; }
.hero-card {
  position: absolute;
  width: 240px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease;
}
.hero-card-1 { top: 0; left: 0; transform: rotate(-3deg); }
.hero-card-2 { top: 70px; left: 40px; transform: rotate(1deg); }
.hero-card-3 { top: 140px; left: 10px; transform: rotate(-2deg); }
.card-icon { font-size: 1.2rem; color: var(--amber); }
.card-label { font-size: 0.9rem; font-weight: 500; color: var(--text); }

/* ── Story ─────────────────────────────────────────────── */
.story { padding: 100px 80px; border-top: 1px solid var(--border); }
.story-inner { display: grid; grid-template-columns: 80px 1fr; gap: 40px; max-width: 900px; }
.story-number { font-family: 'Fraunces', serif; font-size: 4rem; color: var(--amber-dim); line-height: 1; font-weight: 300; }
.story-heading { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 400; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 28px; color: var(--text); }
.story-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.story-body em { color: var(--text); font-style: italic; }

/* ── Pillars ───────────────────────────────────────────── */
.pillars { padding: 100px 80px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pillars-header { display: flex; align-items: baseline; gap: 24px; margin-bottom: 60px; }
.pillars-number { font-family: 'Fraunces', serif; font-size: 4rem; color: var(--amber-dim); font-weight: 300; line-height: 1; }
.pillars-heading { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 400; letter-spacing: -0.02em; color: var(--text); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar { padding: 36px 32px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); }
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pillar-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; }
.pillar-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── Proof ─────────────────────────────────────────────── */
.proof { padding: 100px 80px; border-top: 1px solid var(--border); }
.proof-inner { display: grid; grid-template-columns: 80px 1fr; gap: 40px; }
.proof-number { font-family: 'Fraunces', serif; font-size: 4rem; color: var(--amber-dim); font-weight: 300; line-height: 1; }
.proof-heading { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 400; letter-spacing: -0.02em; color: var(--text); margin-bottom: 48px; }
.proof-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.proof-stat { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-number { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 600; color: var(--amber); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; font-weight: 300; }
.proof-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 600px; font-weight: 300; }

/* ── Process ───────────────────────────────────────────── */
.process { padding: 100px 80px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-inner { max-width: 800px; }
.process-number { font-family: 'Fraunces', serif; font-size: 4rem; color: var(--amber-dim); font-weight: 300; line-height: 1; margin-bottom: 24px; }
.process-heading { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 400; letter-spacing: -0.02em; color: var(--text); margin-bottom: 56px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 300; color: var(--amber-dim); line-height: 1; padding-top: 4px; }
.step-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.step-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── Manifesto ──────────────────────────────────────────── */
.manifesto { padding: 120px 80px; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 133, 42, 0.05) 0%, transparent 70%);
}
.manifesto-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 80px 1fr; gap: 40px; max-width: 900px; }
.manifesto-number { font-family: 'Fraunces', serif; font-size: 4rem; color: var(--amber-dim); font-weight: 300; line-height: 1; }
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  border-left: 2px solid var(--amber);
  padding-left: 28px;
}
.manifesto-attribution { font-size: 0.85rem; color: var(--amber); font-weight: 500; padding-left: 30px; }

/* ── Closing ────────────────────────────────────────────── */
.closing { padding: 120px 80px; background: var(--surface); border-top: 1px solid var(--border); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { padding: 40px 80px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; color: var(--amber); }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; margin-left: 12px; }
.footer-meta { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 48px 80px; }
  .hero-visual { display: none; }
  .hero-content { padding-right: 0; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .proof-stat-row { grid-template-columns: 1fr 1fr; }
  .proof-inner, .story-inner, .manifesto-inner { grid-template-columns: 1fr; }
  .story-number, .proof-number, .manifesto-number { font-size: 2rem; margin-bottom: 16px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero, .story, .pillars, .proof, .process, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .proof-stat-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 40px 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .closing-headline { font-size: 2rem; }
}