/* ——— Reset & Base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf9f7;
  --fg: #1a1a2e;
  --accent: #e8a020;
  --accent-dark: #c47d0a;
  --nav-bg: #1a1a2e;
  --nav-fg: #faf9f7;
  --hero-bg: #1a1a2e;
  --hero-fg: #faf9f7;
  --hero-accent: #e8a020;
  --section-pad: 80px 24px;
  --max-w: 1100px;
  --radius: 4px;
}

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.65;
  -webkit-font-smoothing: antialiased;
}

/* ——— Typography ——— */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.15; }

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 560px;
}

/* ——— Navigation ——— */
.nav {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 16px 24px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.nav-tagline {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 500;
}

/* ——— Hero ——— */
.hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 100px 24px 90px;
}

.hero-inner { max-width: var(--max-w); margin: 0 auto; }

.hero-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(48px, 8vw, 88px);
  color: var(--hero-fg);
  margin-bottom: 32px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 18px;
  color: rgba(250,249,247,0.7);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-pillars {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1;
  min-width: 240px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-text strong {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.pillar-text span {
  font-size: 13px;
  color: rgba(250,249,247,0.6);
}

/* ——— Stats ——— */
.stats {
  background: var(--accent);
  padding: 56px 24px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.stat-block {
  flex: 1;
  text-align: center;
  padding: 16px 32px;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6vw, 72px);
  color: #1a1a2e;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: rgba(26,26,46,0.75);
  line-height: 1.5;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(26,26,46,0.15);
  align-self: stretch;
}

/* ——— Process ——— */
.process { padding: var(--section-pad); }
.process-inner { max-width: var(--max-w); margin: 0 auto; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(26,26,46,0.1);
  padding-left: 48px;
  position: relative;
}

.step { padding: 0 0 64px; position: relative; }
.step:last-child { padding-bottom: 0; }

.step::before {
  content: '';
  position: absolute;
  left: calc(-48px - 5px);
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
  outline: 2px solid var(--accent);
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-body h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--fg);
}

.step-body p {
  font-size: 15px;
  color: #4a4a5a;
  max-width: 480px;
  line-height: 1.7;
}

/* ——— Features ——— */
.features { background: #f2f0ed; padding: var(--section-pad); }
.features-inner { max-width: var(--max-w); margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.feature-col-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,26,46,0.12);
}

.feature-item { margin-bottom: 36px; }
.feature-item:last-child { margin-bottom: 0; }

.feature-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #4a4a5a;
  line-height: 1.65;
}

/* ——— Manifesto ——— */
.manifesto { background: #1a1a2e; padding: var(--section-pad); }
.manifesto-inner { max-width: var(--max-w); margin: 0 auto; }

.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 30px);
  color: #faf9f7;
  line-height: 1.5;
  margin-bottom: 32px;
  font-style: italic;
}

.manifesto-body {
  font-size: 15px;
  color: rgba(250,249,247,0.6);
  max-width: 560px;
  line-height: 1.75;
}

/* ——— Closing ——— */
.closing { padding: var(--section-pad); }
.closing-inner { max-width: var(--max-w); margin: 0 auto; }

.closing-headline {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 600px;
}

.closing-sub {
  font-size: 17px;
  color: #4a4a5a;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--accent-dark);
  font-style: italic;
}

/* ——— Footer ——— */
.footer {
  background: #0f0f1a;
  padding: 48px 24px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #faf9f7;
  margin-bottom: 12px;
}

.footer-mission {
  font-size: 13px;
  color: rgba(250,249,247,0.4);
  margin-bottom: 24px;
}

.footer-note {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.2);
}

/* ——— Responsive ——— */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .hero-pillars { flex-direction: column; gap: 16px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: auto; height: 1px; }
  .process-steps { padding-left: 32px; }
  .step::before { left: calc(-32px - 5px); }
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-title { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .stat-block { padding: 12px 16px; }
  .nav-tagline { display: none; }
}