:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #1c1a17;
  --ink-2: #6b6560;
  --ink-3: #a8a09a;
  --amber: #c8873a;
  --amber-light: #f5e6d3;
  --navy: #1e2a3a;
  --green: #5a7c5a;
  --green-light: #e8f0e8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(28,26,23,0.07);
}

.nav__brand { display: flex; align-items: center; gap: 10px; }

.nav__logo {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav__name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.nav__tagline {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(48px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 700;
}

.hero__sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 480px;
}

.hero__quote {
  border-left: 3px solid var(--amber);
  padding-left: 24px;
}

.hero__quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero__quote cite {
  font-size: 13px;
  color: var(--ink-3);
  font-style: normal;
}

/* Orb / rings */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.hero__orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5e6d3, #c8873a 60%, #8a5e2a);
  box-shadow:
    0 0 60px rgba(200, 135, 58, 0.25),
    0 0 120px rgba(200, 135, 58, 0.12);
  animation: orbPulse 6s ease-in-out infinite;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 135, 58, 0.18);
}

.hero__ring--1 { width: 360px; height: 360px; animation: ringRotate 18s linear infinite; }
.hero__ring--2 { width: 440px; height: 440px; animation: ringRotate 28s linear infinite reverse; }
.hero__ring--3 { width: 520px; height: 520px; border-style: dashed; animation: ringRotate 40s linear infinite; }

@keyframes orbPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--navy);
  padding: 100px 48px;
}

.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.manifesto__text {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
}

/* ── PROGRAMS ── */
.programs {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.programs__header {
  margin-bottom: 64px;
}

.programs__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.programs__title {
  font-size: clamp(32px, 3vw, 48px);
  color: var(--ink);
}

.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.program-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(28,26,23,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,26,23,0.08);
}

.program-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.program-card--featured .program-card__number { color: rgba(255,255,255,0.25); }
.program-card--featured .program-card__name { color: #fff; }
.program-card--featured .program-card__desc { color: rgba(255,255,255,0.7); }
.program-card--featured .program-card__bullets li { color: rgba(255,255,255,0.6); }

.program-card__number {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(28,26,23,0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.program-card__name {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 16px;
}

.program-card__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.program-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-card__bullets li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}

.program-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* ── PROCESS ── */
.process {
  background: var(--amber-light);
  padding: 100px 48px;
}

.process__inner { max-width: 900px; margin: 0 auto; }

.process__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.process__title {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink);
  margin-bottom: 72px;
  font-weight: 300;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(28,26,23,0.1);
}

.step:last-child { border-bottom: none; }

.step__num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(200,135,58,0.25);
  line-height: 1;
  padding-top: 4px;
}

.step__heading {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 48px;
  background: var(--surface);
}

.testimonials__inner { max-width: 1200px; margin: 0 auto; }

.testimonials__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.testimonials__title {
  font-size: clamp(32px, 3vw, 48px);
  color: var(--ink);
  margin-bottom: 64px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(28,26,23,0.06);
}

.testimonial-card__quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--ink-3);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--navy);
  text-align: center;
}

.closing__inner { max-width: 700px; margin: 0 auto; }

.closing__headline {
  font-size: clamp(40px, 5vw, 72px);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
}

.closing__sub {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.closing__body {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(28,26,23,0.07);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand { display: flex; align-items: center; gap: 10px; }

.footer__logo {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
}

.footer__name {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.footer__tagline {
  font-size: 13px;
  color: var(--ink-3);
}

.footer__note {
  font-size: 13px;
  color: var(--ink-3);
  max-width: 280px;
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px; }
  .hero__visual { display: none; }
  .programs__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .nav { padding: 18px 32px; }
  .manifesto, .process, .testimonials, .closing, .programs { padding-left: 32px; padding-right: 32px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer__note { text-align: center; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .nav { padding: 14px 24px; }
  .hero, .manifesto, .process, .testimonials, .closing, .programs { padding-left: 24px; padding-right: 24px; }
  .manifesto { padding-top: 64px; padding-bottom: 64px; }
  .programs { padding-top: 64px; padding-bottom: 64px; }
  .process { padding-top: 64px; padding-bottom: 64px; }
  .testimonials { padding-top: 64px; padding-bottom: 64px; }
  .closing { padding-top: 80px; padding-bottom: 80px; }
}