:root {
  --bg: #0e0e1a;
  --bg-2: #13131f;
  --fg: #f0ede8;
  --fg-muted: #8a8a9a;
  --accent: #e8c547;
  --accent-dim: #b89e36;
  --border: rgba(240, 237, 232, 0.08);
  --section-pad: clamp(80px, 12vw, 140px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  padding: 28px clamp(24px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero { padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-side { padding-top: 12px; }
.hero-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 340px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.meta-label { color: var(--fg-muted); }
.meta-value { color: var(--fg); }
.meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 40px;
}

/* ── OPERATIONS ── */
.operations {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  background: var(--bg-2);
}
.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ops-item {
  background: var(--bg-2);
  padding: clamp(28px, 4vw, 48px);
}
.ops-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 400;
}
.ops-item h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--fg);
}
.ops-item p {
  color: var(--fg-muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
}

/* ── DAILY ── */
.daily { padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.daily-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.daily-label { padding-top: 8px; }
.daily-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--fg);
}
.daily-body {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.daily-stats {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
}
.stat {}
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── MANIFESTO ── */
.manifesto { padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.manifesto-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 56px;
}
.manifesto-rule-2 { margin-top: 56px; margin-bottom: 0; }
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-style: italic;
  text-align: center;
  max-width: 840px;
  margin: 0 auto 32px;
}
.manifesto-attribution {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.attribution-sep { color: var(--accent); }

/* ── CLOSING ── */
.closing {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  background: var(--bg-2);
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--fg);
}
.closing-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 64px;
}
.vision-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}
.vision-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  max-width: 600px;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  padding: 40px clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.wordmark-footer {
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.7;
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { padding-top: 0; }
  .daily-inner { grid-template-columns: 1fr; }
  .daily-label { margin-bottom: 24px; }
  .ops-grid { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .daily-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .daily-headline { font-size: 32px; }
  .manifesto-quote { font-size: 22px; }
}