@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --clay:        #C4713A;
  --clay-dark:   #9E5626;
  --clay-light:  #E8936A;
  --sage:        #7A9E7E;
  --sage-dark:   #5C7B60;
  --cream:       #FAF7F2;
  --cream-dark:  #EDE8DE;
  --stone:       #D5CBBA;
  --bark:        #2C2016;
  --bark-mid:    #5C4A36;
  --bark-light:  #8B7355;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 8px rgba(44, 32, 22, 0.08);
  --shadow-md:   0 4px 24px rgba(44, 32, 22, 0.12);
  --shadow-lg:   0 8px 48px rgba(44, 32, 22, 0.16);

  --container:   1160px;
  --gap:         1.5rem;
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay-dark);
  letter-spacing: -0.02em;
}
.logo span { color: var(--sage-dark); }

.main-nav { display: flex; gap: 0.25rem; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark-mid);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--clay); background: var(--cream-dark); }

.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--clay);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 99px !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.15s !important;
}
.header-cta:hover { background: var(--clay-dark) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  min-height: 86vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--bark-mid);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-image-wrap:hover img { transform: scale(1.03); }

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(6px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero-badge strong { font-size: 1.125rem; font-weight: 700; color: var(--clay); }
.hero-badge span { font-size: 0.75rem; color: var(--bark-mid); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
}
.btn-primary:hover { background: var(--clay-dark); }

.btn-secondary {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid var(--stone);
}
.btn-secondary:hover { background: var(--cream-dark); border-color: var(--bark-mid); }

.btn-white {
  background: var(--white);
  color: var(--clay-dark);
}
.btn-white:hover { background: var(--cream); }

.btn-lg { font-size: 1rem; padding: 1rem 2.5rem; }

/* ─── SECTION COMMON ─────────────────────────────── */
section { padding: 5rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--clay);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--bark-mid);
  max-width: 56ch;
  line-height: 1.7;
}

/* ─── PROBLEM ────────────────────────────────────── */
.problem { background: var(--bark); color: var(--cream); }
.problem .section-label { color: var(--clay-light); }
.problem .section-label::before { background: var(--clay-light); }
.problem .section-title { color: var(--cream); }
.problem .section-lead { color: var(--stone); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.pain-item:hover { background: rgba(255,255,255,0.08); }

.pain-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(196, 113, 58, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pain-item p {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.5;
  margin-top: 0.1rem;
}
.pain-item strong { display: block; color: var(--cream); font-weight: 600; margin-bottom: 0.2rem; }

.problem-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.problem-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.problem-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(44, 32, 22, 0.85));
  color: var(--cream);
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: italic;
}

/* ─── LEARN ──────────────────────────────────────── */
.learn { background: var(--cream); }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.learn-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.learn-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.learn-card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clay-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.learn-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.6rem;
}

.learn-card p { font-size: 0.9rem; color: var(--bark-mid); line-height: 1.6; }

/* ─── FORMAT ─────────────────────────────────────── */
.format { background: var(--cream-dark); }

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.step:last-child { padding-bottom: 0; }

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-line {
  width: 2px;
  flex: 1;
  background: var(--stone);
  margin-top: 4px;
}
.step:last-child .step-line { display: none; }

.step-body { padding-top: 0.5rem; }
.step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.375rem;
}
.step-body p { font-size: 0.9rem; color: var(--bark-mid); line-height: 1.6; }

.format-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.format-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ─── RESULTS ────────────────────────────────────── */
.results { background: var(--cream); }

.results-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.outcomes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.outcome-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.outcome-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.outcome-check svg { width: 12px; height: 12px; }
.outcome-item p { font-size: 0.9375rem; color: var(--bark-mid); line-height: 1.5; }
.outcome-item strong { color: var(--bark); }

.results-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.results-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ─── INSTRUCTOR ─────────────────────────────────── */
.instructor { background: var(--bark); color: var(--cream); }
.instructor .section-label { color: var(--clay-light); }
.instructor .section-label::before { background: var(--clay-light); }
.instructor .section-title { color: var(--cream); }

.instructor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.instructor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }

.instructor-bio p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.instructor-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.fact-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clay-light);
  margin-bottom: 0.2rem;
}
.fact-card span { font-size: 0.8125rem; color: var(--stone); }

/* ─── MATERIALS ──────────────────────────────────── */
.materials { background: var(--cream-dark); }

.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.materials-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.materials-visual img { width: 100%; height: 100%; object-fit: cover; }

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.material-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  font-size: 0.9375rem;
  color: var(--bark-mid);
  transition: border-color 0.2s;
}
.material-row:hover { border-color: var(--clay-light); }
.material-row span:first-child { font-size: 1.25rem; }
.material-row strong { color: var(--bark); font-weight: 500; }

.materials-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(196, 113, 58, 0.08);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--bark-mid);
}

/* ─── FAQ ────────────────────────────────────────── */
.faq { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}
.faq-question h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.25s;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform 0.25s; }
.faq-item.open .faq-icon { background: var(--clay); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); fill: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--bark-mid);
  line-height: 1.65;
}

/* ─── LEAD FORM ──────────────────────────────────── */
.lead-form-section {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 113, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.form-wrap .section-label { justify-content: center; }
.form-wrap .section-label::before { display: none; }
.form-wrap .section-lead { margin: 0 auto 2.5rem; }

#lead-form {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.field label span { color: var(--clay); }

.field input,
.field select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 113, 58, 0.12);
}
.field input.error { border-color: #d94f4f; }
.field .field-error {
  display: none;
  font-size: 0.75rem;
  color: #d94f4f;
  margin-top: 0.375rem;
}
.field input.error + .field-error { display: block; }

.form-consent {
  font-size: 0.75rem;
  color: var(--bark-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}
.form-consent a { color: var(--clay); text-decoration: underline; }
.form-consent a:hover { color: var(--clay-dark); }

.form-submit { width: 100%; margin-top: 1.5rem; }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--bark);
  color: var(--stone);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-size: 1.375rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--bark-light);
  line-height: 1.6;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--bark-light);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--clay-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--bark-light);
  line-height: 1.6;
}
.footer-legal strong { color: var(--stone); font-weight: 500; }

.footer-copy {
  font-size: 0.8rem;
  color: var(--bark-light);
  white-space: nowrap;
}

/* ─── COOKIE BANNER ──────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--bark);
  color: var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: slideUp 0.35s ease;
}
#cookie-banner.visible { display: flex; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.cookie-text a { color: var(--clay-light); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }

.btn-cookie-ok {
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-ok:hover { background: var(--clay-dark); }

.btn-cookie-decline {
  background: transparent;
  color: var(--bark-light);
  border: none;
  font-size: 0.8125rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 0.2s;
  text-decoration: underline;
}
.btn-cookie-decline:hover { color: var(--stone); }

/* ─── SUCCESS PAGE ───────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 3rem 1.5rem;
}

.success-card {
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(122, 158, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}
.success-icon svg { width: 36px; height: 36px; }

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.75rem;
}
.success-card p {
  font-size: 0.9375rem;
  color: var(--bark-mid);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ─── LEGAL PAGES ────────────────────────────────── */
.legal-page { padding: 5rem 0; }

.legal-header {
  background: var(--cream-dark);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--stone);
}
.legal-header .section-title { margin-bottom: 0.5rem; }
.legal-header p { font-size: 0.875rem; color: var(--bark-light); }

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--bark);
  margin: 2rem 0 0.75rem;
}
.legal-body p, .legal-body li {
  font-size: 0.9375rem;
  color: var(--bark-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.legal-body ul { padding-left: 1.5rem; list-style: disc; }
.legal-body a { color: var(--clay); text-decoration: underline; }
.legal-body .legal-updated {
  font-size: 0.8125rem;
  color: var(--bark-light);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

/* ─── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bark-mid);
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--cream-dark); color: var(--clay); }

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 2.5rem;
  }
  .hero-image-wrap { order: -1; aspect-ratio: 16/9; }
  .hero h1 { font-size: clamp(2rem, 6vw, 2.75rem); }

  .problem-grid,
  .format-inner,
  .results-top,
  .instructor-inner,
  .materials-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .instructor-inner { grid-template-columns: 1fr; }
  .instructor-photo { aspect-ratio: 16/9; max-width: 100%; }

  .learn-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .instructor-facts { grid-template-columns: 1fr 1fr; }

  #lead-form { padding: 1.75rem; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .hero-inner { padding: 2.5rem 1.5rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .instructor-facts { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; }

  #cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
  }
  .cookie-actions { width: 100%; }
  .btn-cookie-ok { flex: 1; text-align: center; }
}
