:root {
  --sand: #f5efe6;
  --sand-light: #faf6f1;
  --blush: #e8c9b8;
  --blush-deep: #c9957a;
  --sage: #8a9e8c;
  --sage-light: #b8cdb9;
  --charcoal: #2d2d2d;
  --charcoal-soft: #4a4a4a;
  --muted: #8a8a8a;
  --white: #ffffff;
  --border: #e2d8ce;
  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);
}

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

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

body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; }
.section--tight { padding: var(--space-xl) 0; }
.section--sand { background: var(--sand-light); }
.section--blush { background: var(--blush); }

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--charcoal-soft);
  max-width: 540px;
  line-height: 1.65;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-soft);
  border-color: var(--charcoal-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-blush {
  background: var(--blush-deep);
  color: var(--white);
  border-color: var(--blush-deep);
}
.btn-blush:hover {
  background: #b5826a;
  border-color: #b5826a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo span { color: var(--blush-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--blush-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: var(--space-sm); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md);
  z-index: 99;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: var(--fs-md);
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--sand-light);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blush);
  color: var(--charcoal-soft);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, var(--fs-4xl));
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  color: var(--blush-deep);
}

.hero-text {
  font-size: var(--fs-md);
  color: var(--charcoal-soft);
  margin-bottom: var(--space-lg);
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.hero-proof-item { display: flex; flex-direction: column; }

.hero-proof-item strong {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--charcoal);
}

.hero-proof-item span {
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image { position: relative; }

.hero-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-image-tag {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-image-tag-icon {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.hero-image-tag-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.hero-image-tag-text span {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.benefit-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.benefit-card h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }

.benefit-card p {
  font-size: var(--fs-sm);
  color: var(--charcoal-soft);
  line-height: 1.65;
}

.program-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.program-modules {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}

.module-item:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-sm);
}

.module-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sand-light);
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--blush-deep);
}

.module-content h4 {
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.module-content p { font-size: var(--fs-sm); color: var(--muted); }

.program-image-block { position: relative; }

.program-image-block img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.program-highlight {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: var(--fs-sm);
  max-width: 200px;
  box-shadow: var(--shadow-md);
}

.program-highlight strong {
  display: block;
  font-size: var(--fs-lg);
  font-family: var(--ff-heading);
}

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.format-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.format-item { display: flex; gap: var(--space-md); align-items: flex-start; }

.format-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.format-item-text h4 {
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.format-item-text p { font-size: var(--fs-sm); color: var(--charcoal-soft); }

.results-image-wrap {
  margin-top: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.results-image-wrap img { width: 100%; height: 400px; object-fit: cover; }

.results-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  justify-content: center;
}

.tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.375rem 1rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: var(--transition);
}

.tag:hover { border-color: var(--blush-deep); color: var(--blush-deep); }

.instructor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.instructor-photo { position: relative; }

.instructor-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.instructor-photo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 2px solid var(--blush);
  z-index: -1;
}

.instructor-name { font-size: var(--fs-2xl); margin-bottom: 0.25rem; }

.instructor-role {
  color: var(--blush-deep);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  display: block;
}

.instructor-bio {
  font-size: var(--fs-md);
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.instructor-facts { display: flex; gap: var(--space-lg); flex-wrap: wrap; }

.instructor-fact { display: flex; flex-direction: column; }

.instructor-fact strong {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--charcoal);
}

.instructor-fact span { font-size: var(--fs-xs); color: var(--muted); }

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.materials-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.materials-list { display: flex; flex-direction: column; gap: var(--space-md); }

.material-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.material-row:last-child { border-bottom: none; }

.material-icon { font-size: 1.25rem; line-height: 1; padding-top: 0.1rem; }

.material-row h4 {
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.material-row p { font-size: var(--fs-sm); color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  transition: var(--transition-slow);
}

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

.review-stars { display: flex; gap: 2px; margin-bottom: var(--space-sm); }

.review-stars span { color: #e8b84b; font-size: 1rem; }

.review-text {
  font-size: var(--fs-sm);
  color: var(--charcoal-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.review-text::before {
  content: '\201C';
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--blush);
  margin-right: 0.15em;
}

.review-author { display: flex; align-items: center; gap: var(--space-sm); }

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--blush-deep);
  flex-shrink: 0;
}

.review-author-info strong { display: block; font-size: var(--fs-sm); font-weight: 600; }

.review-author-info span { font-size: var(--fs-xs); color: var(--muted); }

.faq-list { max-width: 720px; margin: var(--space-xl) auto 0; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--ff-body);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blush-deep); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.875rem;
  color: var(--blush-deep);
}

.faq-item.open .faq-icon {
  background: var(--blush-deep);
  border-color: var(--blush-deep);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--charcoal-soft);
  line-height: 1.75;
  max-width: 600px;
}

.faq-item.open .faq-answer { display: block; }

.form-section {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blush-deep) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 65%);
  opacity: 0.1;
  pointer-events: none;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-copy .section-label { color: var(--blush); }

.form-copy .section-title {
  color: var(--white);
  font-size: var(--fs-3xl);
  line-height: 1.1;
}

.form-copy .section-subtitle { color: rgba(255,255,255,0.7); }

.form-copy-points {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-copy-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
}

.form-copy-point::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush);
  flex-shrink: 0;
}

.form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.form-box-title { font-family: var(--ff-heading); font-size: var(--fs-xl); margin-bottom: 0.5rem; }

.form-box-sub { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--space-lg); }

.form-field { margin-bottom: var(--space-md); }

.form-field label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--blush-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,149,122,0.15);
}

.form-field input::placeholder { color: var(--muted); }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: var(--space-md);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blush-deep);
  cursor: pointer;
}

.form-consent label { font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; }

.form-consent a { color: var(--blush-deep); text-decoration: underline; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}

.form-submit:hover {
  background: var(--blush-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cta-band {
  background: linear-gradient(135deg, var(--blush) 0%, var(--sand-light) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-band-title { font-family: var(--ff-heading); font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }

.cta-band-sub { color: var(--charcoal-soft); margin-bottom: var(--space-lg); }

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-brand p { font-size: var(--fs-sm); line-height: 1.65; max-width: 280px; }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col ul li a { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); transition: var(--transition); }

.footer-col ul li a:hover { color: var(--blush); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); line-height: 1.75; }

.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: underline; transition: var(--transition); }
.footer-legal a:hover { color: var(--blush); }

.footer-legal-links { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.footer-legal-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--blush); }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  z-index: 200;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: flex-start;
  gap: var(--space-md);
}

.cookie-banner.visible { display: flex; }

.cookie-text { flex: 1; }

.cookie-text p { font-size: var(--fs-sm); color: rgba(255,255,255,0.8); line-height: 1.6; }

.cookie-text a { color: var(--blush); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-accept {
  background: var(--blush-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}
.cookie-accept:hover { background: #b5826a; }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.legal-page { padding-top: 100px; padding-bottom: var(--space-2xl); }

.legal-page h1 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }

.legal-date { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--space-xl); display: block; }

.legal-body h2 { font-size: var(--fs-lg); margin: var(--space-lg) 0 var(--space-sm); }

.legal-body p, .legal-body li {
  font-size: var(--fs-base);
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-body ul { list-style: disc; padding-left: var(--space-md); }

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  padding: var(--space-xl) var(--space-md);
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
}

.success-card h1 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }

.success-card p { color: var(--charcoal-soft); font-size: var(--fs-md); margin-bottom: var(--space-lg); }

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

.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
.fade-up-delay-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { 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; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-image { order: -1; }
  .hero-image img { height: 360px; }
  .hero-image-tag { left: 0; bottom: -12px; }
  .program-header { grid-template-columns: 1fr; }
  .program-image-block { display: none; }
  .instructor-inner { grid-template-columns: 1fr; }
  .instructor-photo img { height: 360px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .format-inner { grid-template-columns: 1fr; }
  .format-image { order: -1; }
  .format-image img { height: 300px; }
  .materials-grid { grid-template-columns: 1fr; }
  .materials-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --fs-3xl: 2.25rem;
    --fs-4xl: 2.75rem;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: var(--space-md); }
  .hero-proof-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; }
  .footer-legal-links { flex-direction: column; gap: var(--space-xs); }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; }
  .cookie-actions { justify-content: flex-end; }
  .form-box { padding: var(--space-md); }
}

@media (max-width: 480px) {
  .section { padding: var(--space-xl) 0; }
  .section--tight { padding: var(--space-lg) 0; }
  .form-section { padding: var(--space-2xl) 0; }
}
