:root {
  --bg: #FAF6F1;
  --bg-alt: #F2EBE3;
  --fg: #1C1409;
  --fg-muted: #6B5B4F;
  --primary: #C4602A;
  --primary-dark: #A34E20;
  --accent: #E8B86A;
  --accent-warm: #D4917A;
  --rose: #C4897A;
  --text-light: #F5EDE6;
  --radius: 14px;
  --radius-lg: 24px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — NAV — */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 20px 0;
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav__logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* — HERO — */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero__bg-shape {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,184,106,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero__stat {
  padding: 0 28px 0 0;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(196,96,42,0.2);
  margin-right: 28px;
}

/* Card Stack */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.hero__card-stack {
  position: relative;
  width: 260px;
  height: 300px;
}
.hero__card {
  position: absolute;
  width: 240px;
  background: var(--bg-alt);
  border: 1px solid rgba(196,96,42,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero__card--back {
  top: 0; left: 20px;
  background: var(--fg);
  color: var(--text-light);
}
.hero__card--mid {
  top: 55px; left: 10px;
  background: var(--primary);
  color: var(--text-light);
}
.hero__card--front {
  top: 115px; left: 0;
  background: white;
  box-shadow: 0 8px 40px rgba(28,20,9,0.12);
}
.hero__card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.hero__card-desc {
  font-size: 13px;
  opacity: 0.7;
}

/* — MODULES — */
.modules {
  background: var(--bg-alt);
  padding: 100px 0;
}
.modules__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.modules__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.modules__label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.modules__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}
.modules__subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.modules__card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(28,20,9,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.modules__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,20,9,0.08);
}
.modules__icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}
.modules__card-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.modules__card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* — MANIFESTO — */
.manifesto {
  padding: 100px 0;
}
.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto__bar {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 28px;
}
.manifesto__sub {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* — OUTCOMES — */
.outcomes {
  background: var(--fg);
  padding: 100px 0;
}
.outcomes__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes__header {
  margin-bottom: 64px;
}
.outcomes__label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.outcomes__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-light);
}
.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.outcomes__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.outcomes__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}
.outcomes__item-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.outcomes__item-desc {
  font-size: 15px;
  color: rgba(245,237,230,0.65);
  line-height: 1.65;
}

/* — CLOSING — */
.closing {
  padding: 100px 0 120px;
}
.closing__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing__sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 60px;
}
.closing__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  gap: 16px;
}
.closing__ring {
  border-radius: 50%;
  border: 2px solid rgba(196,96,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing__ring--large {
  width: 100px;
  height: 100px;
  border-color: rgba(196,96,42,0.2);
}
.closing__ring--medium {
  width: 70px;
  height: 70px;
  border-color: rgba(196,96,42,0.4);
}
.closing__ring--small {
  width: 44px;
  height: 44px;
  border-color: var(--primary);
}
.closing__center {
  font-size: 18px;
  color: var(--primary);
  position: absolute;
}

/* — FOOTER — */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(28,20,9,0.08);
  padding: 48px 0;
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer__copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* — RESPONSIVE — */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .modules__grid { grid-template-columns: 1fr; }
  .outcomes__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }
  .hero__stat-row { flex-wrap: wrap; gap: 16px; }
  .hero__stat-divider { display: none; }
  .manifesto__quote { font-size: 20px; }
}