@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --clay:       #C4714A;
  --clay-dark:  #A35A36;
  --clay-light: #E8A07A;
  --cream:      #F7F2E8;
  --cream-dark: #EDE4D4;
  --linen:      #F0E8D8;
  --sage:       #8FA87A;
  --sage-dark:  #6A8258;
  --bark:       #2A1F17;
  --bark-soft:  #4A3828;
  --stone:      #7A6E64;
  --stone-light:#B8AFA6;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

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

  --shadow-sm:  0 2px 8px rgba(42,31,23,0.08);
  --shadow-md:  0 4px 20px rgba(42,31,23,0.12);
  --shadow-lg:  0 8px 40px rgba(42,31,23,0.16);

  --transition: 0.3s ease;

  --max-w: 1180px;
  --section-py: 96px;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--bark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(247, 242, 232, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42,31,23,0.08);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bark);
  letter-spacing: -0.01em;
}

.nav__logo span { color: var(--clay); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bark-soft);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--clay); }

.nav__cta {
  background: var(--clay);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--clay-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  padding: 24px;
  border-bottom: 1px solid var(--cream-dark);
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bark);
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.nav__mobile.open { display: flex; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42,31,23,0.15) 0%,
    rgba(42,31,23,0.28) 40%,
    rgba(42,31,23,0.72) 100%
  );
}

.hero__bg.loaded { transform: scale(1); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  background: rgba(247,242,232,0.18);
  border: 1px solid rgba(247,242,232,0.35);
  color: rgba(247,242,232,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(42,31,23,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--clay-light);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(247,242,232,0.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clay);
  color: #fff;
}
.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,113,74,0.4);
}

.btn-ghost {
  color: rgba(247,242,232,0.9);
  border: 1.5px solid rgba(247,242,232,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(247,242,232,0.12);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,242,232,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(247,242,232,0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Trust Strip ───────────────────────────────────────────── */
.trust-strip {
  background: var(--bark);
  padding: 20px 0;
  overflow: hidden;
}

.trust-strip__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247,242,232,0.8);
  font-size: 0.9rem;
  white-space: nowrap;
}

.trust-item__icon {
  width: 20px;
  height: 20px;
  color: var(--clay-light);
  flex-shrink: 0;
}

/* ─── Sections shared ───────────────────────────────────────── */
section { padding: var(--section-py) 0; }

/* ─── For Whom ──────────────────────────────────────────────── */
.for-whom { background: var(--cream); }

.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.for-whom__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.for-whom__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.for-whom__image:hover img { transform: scale(1.03); }

.for-whom__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.for-whom__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.for-whom__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
  margin-top: 8px;
}

.for-whom__item p {
  font-size: 0.97rem;
  color: var(--bark-soft);
  line-height: 1.65;
}

/* ─── Outcomes ──────────────────────────────────────────────── */
.outcomes {
  background: var(--linen);
}

.outcomes__header {
  max-width: 580px;
  margin-bottom: 56px;
}

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

.outcome-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition), transform var(--transition);
}

.outcome-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.outcome-card__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--clay);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.7;
}

.outcome-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--bark);
}

.outcome-card p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.7;
}

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

.format__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

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

.format__step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.format__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--cream-dark);
}

.format__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.format__step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--bark);
}

.format__step-content p {
  font-size: 0.93rem;
  color: var(--stone);
  line-height: 1.7;
}

.format__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.format__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format__image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(42,31,23,0.75);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

/* ─── Results ───────────────────────────────────────────────── */
.results {
  background: var(--bark);
  color: var(--cream);
}

.results .section-label { color: var(--clay-light); }
.results .section-title { color: var(--cream); }
.results .section-sub { color: rgba(247,242,232,0.7); }

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: center;
}

.results__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.results__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.results__image:hover img { transform: scale(1.03); }

.results__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(247,242,232,0.1);
}

.result-item:last-child { border-bottom: none; padding-bottom: 0; }

.result-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.result-item__desc {
  font-size: 0.92rem;
  color: rgba(247,242,232,0.65);
  line-height: 1.7;
}

/* ─── Modules ───────────────────────────────────────────────── */
.modules { background: var(--linen); }

.modules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.module-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--cream-dark);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}

.module-card:hover { box-shadow: var(--shadow-sm); }

.module-card__index {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--stone-light);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.module-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--bark);
}

.module-card p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.65;
}

/* ─── Instructor ────────────────────────────────────────────── */
.instructor { background: var(--cream); }

.instructor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}

.instructor__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
}

.instructor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 4px;
}

.instructor__role {
  font-size: 0.9rem;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 24px;
}

.instructor__bio {
  font-size: 0.97rem;
  color: var(--bark-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}

.instructor__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.instructor__fact {
  background: var(--linen);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.87rem;
  color: var(--bark-soft);
}

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

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  background: #fff;
  transition: box-shadow var(--transition);
}

.faq__item.open { box-shadow: var(--shadow-sm); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--bark);
  background: none;
  cursor: pointer;
  transition: background var(--transition);
}

.faq__question:hover { background: var(--cream); }

.faq__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--bark);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--stone);
  line-height: 1.75;
}

/* ─── Lead Form ─────────────────────────────────────────────── */
.lead-form-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--clay);
  opacity: 0.05;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.07;
}

.lead-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.lead-form-wrap .section-sub {
  margin: 0 auto 40px;
  max-width: 500px;
}

.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bark-soft);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--bark);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196,113,74,0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--clay);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,113,74,0.35);
}

.form-note {
  font-size: 0.78rem;
  color: var(--stone-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.form-note a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bark);
  color: rgba(247,242,232,0.65);
  padding: 56px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,242,232,0.1);
  margin-bottom: 28px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer__brand-name span { color: var(--clay-light); }

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.4);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(247,242,232,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(247,242,232,0.4);
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(247,242,232,0.35);
}

/* ─── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--bark);
  color: rgba(247,242,232,0.85);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--clay-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--clay);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--clay-dark); }

/* ─── Success & Legal Pages ─────────────────────────────────── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  background: var(--cream);
  padding: 120px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--stone);
  font-size: 0.97rem;
}

.page-content {
  flex: 1;
  padding: 64px 0;
  background: #fff;
}

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

.prose h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--bark);
}

.prose h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--bark-soft);
}

.prose p, .prose li {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 12px;
}

.prose ul { padding-left: 20px; }
.prose li { list-style: disc; }

.prose a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose .legal-info {
  background: var(--linen);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}

.prose .legal-info p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* ─── Success Page ──────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
  padding: 24px;
}

.success-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  max-width: 480px;
  width: 100%;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--clay);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: #fff;
  font-size: 28px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.success-card p {
  font-size: 0.97rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .outcomes__grid { grid-template-columns: repeat(2, 1fr); }
  .modules__grid { grid-template-columns: 1fr; }
  .instructor__grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-bottom: 60px; }
  .hero h1 { font-size: 2.2rem; }

  .for-whom__grid,
  .format__grid,
  .results__grid,
  .instructor__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .outcomes__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 32px 24px; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .trust-strip__inner { gap: 20px; }
  .trust-item { font-size: 0.82rem; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner__actions {
    flex-direction: row;
    width: 100%;
  }

  .cookie-accept { flex: 1; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .success-card { padding: 40px 24px; }
}
