/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ TOKENS ============ */
:root {
  --cream: #f7f3ec;
  --cream-2: #ece4d4;
  --ink: #1a1a1a;
  --ink-2: #2a2a2a;
  --muted: #6b6257;
  --line: #d9cfbd;
  --accent: #b8735a;         /* terracotta */
  --accent-deep: #8f5238;
  --gold: #b9935a;

  --max: 1180px;
  --pad: clamp(20px, 4vw, 48px);

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ BASE ============ */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container.narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 24px;
  font-weight: 500;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
  color: var(--ink);
}
.section-title.center { text-align: center; }
.section-title em { font-style: italic; color: var(--accent-deep); font-weight: 400; }

h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
h4 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--ink);
}
p { margin: 0 0 14px; color: var(--ink-2); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background .25s ease, transform .25s ease;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-small { padding: 10px 20px; font-size: 13px; }
.btn-large { padding: 20px 36px; font-size: 15px; }

.link-underline {
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.link-underline:hover { opacity: 0.6; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo span {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent-deep); }

/* ============ HERO ============ */
.hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,115,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  max-width: 56ch;
  color: var(--muted);
  margin: 0 0 40px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 620px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============ PROBLEM ============ */
.section-problem { background: var(--cream-2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 56px;
  margin: 56px 0;
}
.problem-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cross {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent-deep);
  margin-top: 2px;
}
.problem-item p { margin: 0; font-size: 17px; }

.problem-punch {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
  margin-top: 56px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ============ METHOD / PILLARS ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.pillar {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26,26,26,0.15);
}
.pillar-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 18px;
}
.pillar h3 { font-size: 28px; }
.pillar p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }

/* ============ SYSTEM ============ */
.system-list { margin-top: 64px; }
.system-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.system-item:last-child { border-bottom: 1px solid var(--line); }
.system-num {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.system-left h3 { font-size: 32px; line-height: 1.1; }
.system-right p { font-size: 17px; color: var(--muted); margin-bottom: 20px; }
.system-right ul li {
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-2);
}
.system-right ul li:first-child { border-top: none; padding-top: 4px; }

/* ============ PROGRAM ============ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.program-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 4px;
  transition: background .3s;
}
.program-card:hover { background: var(--cream-2); }
.program-card h3 { font-size: 22px; margin-bottom: 14px; }
.program-card p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ============ STANDARDS ============ */
.section-standards { background: var(--ink); color: var(--cream); border-top: none; }
.section-standards .eyebrow { color: var(--gold); }
.section-standards .section-title { color: var(--cream); }
.standards-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
}
.standards-col h4 { color: var(--gold); }
.check-list li, .cross-list li {
  padding: 14px 0 14px 34px;
  border-top: 1px solid rgba(217, 207, 189, 0.15);
  font-size: 16px;
  color: var(--cream);
  position: relative;
  line-height: 1.55;
}
.check-list li:first-child, .cross-list li:first-child { border-top: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--gold);
  font-size: 16px;
}
.cross-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent);
  font-size: 14px;
}

/* ============ BELIEFS ============ */
.beliefs { margin-top: 40px; }
.beliefs p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.beliefs p:last-child { border-bottom: 1px solid var(--line); }
.beliefs em { color: var(--accent-deep); font-style: italic; }

/* ============ TESTIMONIALS ============ */
.section-testimonials { background: var(--cream-2); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.testimonial {
  margin: 0;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.testimonial blockquote {
  margin: 0 0 24px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}
.testimonial figcaption {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============ APPLY ============ */
.steps {
  margin: 48px 0 56px;
}
.steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  color: var(--accent-deep);
  font-weight: 400;
}
.steps h4 { font-size: 16px; text-transform: none; letter-spacing: 0; font-family: var(--f-display); font-weight: 500; margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); font-size: 16px; }

.apply-cta {
  text-align: center;
  padding-top: 24px;
}
.apply-cta .small {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
}
.footer-tag {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.6);
  margin: 0;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.7);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(247, 243, 236, 0.4);
  margin: 0;
  text-align: right;
  letter-spacing: 0.04em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .system-item { grid-template-columns: 1fr; gap: 24px; }
  .standards-cols { grid-template-columns: 1fr; gap: 40px; }
  .testimonials { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 540px) {
  .program-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .steps li { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }
