/* ─── Variables ─── */
:root {
  --bg: #FAF8F4;
  --bg-alt: #F2EDE6;
  --fg: #1A1A18;
  --fg-muted: #6B6B64;
  --fg-subtle: #9A9A91;
  --accent: #2A4D1E;
  --accent-light: #E8F0E5;
  --gold: #C8780A;
  --gold-light: #FDF4E3;
  --border: #E0D9CF;
  --border-strong: #C8BFB3;
  --white: #FFFFFF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── Layout ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── HERO ─── */
.hero {
  padding: 7rem 2rem 6rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  margin-top: 0.2rem;
}

.hero-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border-strong);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 24px rgba(42, 77, 30, 0.06);
}

.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 1.25rem;
}

.card-chapter {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.card-chapter:last-child { border-bottom: none; }

.chapter-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  width: 2rem;
}

.card-chapter span:last-child {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.4;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.manifesto-quote blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.manifesto-attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.attr-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.manifesto-attribution span {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.manifesto-body strong {
  color: var(--fg);
}

/* ─── OUTCOMES ─── */
.outcomes {
  padding: 5rem 2rem;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 3rem;
  color: var(--fg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}

.outcome-item {}

.outcome-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.outcome-item h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.outcome-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── TOPICS ─── */
.topics {
  padding: 5rem 2rem;
  background: var(--accent);
}

.topics-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.topics .section-label {
  color: rgba(255,255,255,0.5);
}

.topics h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 3rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.topic-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 2rem;
}

.topic-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.topic-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.topic-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.topic-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.topic-tags li {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* ─── CLOSING ─── */
.closing {
  padding: 6rem 2rem;
  background: var(--bg);
}

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

.closing-rule {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.closing strong {
  color: var(--fg);
}

.closing-note {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--accent-light);
  border: 1px solid rgba(42, 77, 30, 0.15);
  border-radius: 8px;
}

.closing-note span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.closing-note p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--fg);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 24ch;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 2rem; }
  .hero-visual { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .manifesto { padding: 3.5rem 1.5rem; }
  .outcomes { padding: 3.5rem 1.5rem; }
  .topics { padding: 3.5rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .hero-detail { flex-wrap: wrap; }
  .hero-stat { min-width: 80px; }
}