:root {
  --bg: #FDFCF9;
  --bg-alt: #F4EFE6;
  --fg: #1C1C1C;
  --fg-muted: #6B6560;
  --accent: #1B4332;
  --accent-warm: #F5A623;
  --accent-light: #E8F0EC;
  --border: #DDD8D0;
}

*, *::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: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 60px 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 36px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-warm);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--accent);
  max-width: 700px;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-shapes {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
}

.shape-left {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
}

.shape-right {
  position: absolute;
  right: 22%;
  bottom: 20%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.6;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--accent);
  color: var(--bg);
  padding: 90px 60px;
}

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

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  padding-top: 6px;
}

.manifesto-statement {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

/* ── PROOF ── */
.proof {
  padding: 90px 60px;
  border-bottom: 1px solid var(--border);
}

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

.proof-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 48px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.proof-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0 12px;
}

.proof-card p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CURRICULUM ── */
.curriculum {
  background: var(--bg-alt);
  padding: 90px 60px;
}

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

.curriculum-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.curriculum-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.curriculum-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 60px;
  font-weight: 300;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.module {
  background: var(--bg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
}

.module-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  padding-top: 2px;
}

.module-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.module-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.testimonial-inner { max-width: 720px; margin: 0 auto; }

.testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 48px;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--fg);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 60px;
  background: var(--accent);
  color: var(--bg);
}

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

.closing-deco { margin-bottom: 40px; }

.deco-bar {
  width: 60px;
  height: 3px;
  background: var(--accent-warm);
}

.closing-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: italic;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(253, 252, 249, 0.65);
  font-weight: 300;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 60px 40px;
}

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

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--fg);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 72px 32px 64px; }
  .manifesto { padding: 64px 32px; }
  .proof { padding: 72px 32px; }
  .curriculum { padding: 72px 32px; }
  .testimonial { padding: 72px 32px; }
  .closing { padding: 72px 32px; }
  .site-footer { padding: 48px 32px 32px; }
  .hero-shapes { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 20px; }
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .modules-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .module { padding: 32px 28px; grid-template-columns: 40px 1fr; gap: 16px; }
  .module-number { font-size: 2rem; }
}