:root {
  --cream: #FAF6F0;
  --warm-white: #FFFDF9;
  --clay: #C4622D;
  --clay-light: #D97B4A;
  --clay-dark: #A04E22;
  --sage: #6B8A6E;
  --sage-light: #8FA892;
  --dust: #D6C5B0;
  --dust-light: #EBE2D7;
  --dust-dark: #B8A493;
  --bark: #4A3728;
  --bark-light: #6B5444;
  --ink: #2A1F16;
  --text: #3D2E22;
  --text-muted: #7A6557;
  --text-light: #A8978A;
  --border: #DDD3C7;

  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', 'Arial', sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(74, 55, 40, 0.08);
  --shadow: 0 4px 16px rgba(74, 55, 40, 0.10);
  --shadow-lg: 0 12px 40px rgba(74, 55, 40, 0.14);

  --transition: 0.25s ease;
}

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

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

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.25;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text); }

.text-muted { color: var(--text-muted); }
.text-serif { font-family: var(--font-serif); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--clay);
  color: white;
  box-shadow: 0 2px 8px rgba(196, 98, 45, 0.30);
}

.btn-primary:hover {
  background: var(--clay-dark);
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--clay);
  border: 2px solid var(--clay);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-clay {
  background: rgba(196, 98, 45, 0.12);
  color: var(--clay-dark);
}

.badge-sage {
  background: rgba(107, 138, 110, 0.12);
  color: var(--sage);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

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

.header:not(.scrolled) .logo {
  color: white;
}

.header:not(.scrolled) .logo span {
  color: rgba(255, 200, 160, 0.95);
}

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

.header-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.header:not(.scrolled) .header-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.header-nav a:hover,
.header:not(.scrolled) .header-nav a:hover {
  color: var(--clay-light);
}

.header.scrolled .header-nav a:hover {
  color: var(--clay);
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.92rem;
}

.header:not(.scrolled) .header-cta {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.header:not(.scrolled) .header-cta:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(26, 16, 10, 0.72) 0%,
    rgba(26, 16, 10, 0.40) 55%,
    rgba(26, 16, 10, 0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  max-width: 620px;
}

.hero-badge {
  margin-bottom: 24px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-title {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title em {
  font-style: italic;
  color: rgba(255, 200, 160, 1);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
}

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

.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dust-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  font-size: 1rem;
  flex-shrink: 0;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-badge {
  margin-bottom: 16px;
}

.about {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--warm-white);
}

.about-image-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-text .badge {
  margin-bottom: 20px;
}

.about-text h2 {
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196, 98, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--clay);
}

.about-feature-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-feature-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.outcomes {
  background: var(--cream);
}

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

.outcome-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.outcome-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--dust);
  line-height: 1;
  margin-bottom: 16px;
}

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

.outcome-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.results {
  background: var(--warm-white);
  overflow: hidden;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.results-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.results-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.results-image:hover img {
  transform: scale(1.03);
}

.results-text h2 {
  margin-bottom: 18px;
}

.results-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.results-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.results-list li::before {
  content: '✦';
  color: var(--clay);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.8rem;
}

.for-whom {
  background: var(--bark);
  color: white;
}

.for-whom .section-header h2 {
  color: white;
}

.for-whom .section-header p {
  color: rgba(255,255,255,0.65);
}

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

.audience-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition);
}

.audience-card:hover {
  background: rgba(255,255,255,0.10);
}

.audience-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.audience-card h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.audience-card p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.curriculum {
  background: var(--cream);
}

.curriculum-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.curriculum-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

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

.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dust);
  line-height: 1;
  padding-top: 4px;
  text-align: right;
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--bark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.teacher {
  background: var(--warm-white);
}

.teacher-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.teacher-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.teacher-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.teacher-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(26,16,10,0.7));
  color: white;
  font-size: 0.85rem;
  text-align: center;
  font-style: italic;
}

.teacher-text .badge {
  margin-bottom: 20px;
}

.teacher-text h2 {
  margin-bottom: 8px;
}

.teacher-name-sub {
  color: var(--clay);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}

.teacher-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.teacher-credentials {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.credential {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}

.credential-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--clay);
  margin-bottom: 2px;
}

.credential-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  transition: color var(--transition);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dust-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
  color: var(--bark-light);
}

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

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--bark) 0%, #2D1A0E 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196, 98, 45, 0.12);
  pointer-events: none;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(107, 138, 110, 0.08);
  pointer-events: none;
}

.lead-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-form-copy h2 {
  color: white;
  margin-bottom: 18px;
}

.lead-form-copy p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.75;
}

.lead-form-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.lead-form-guarantee::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(107, 138, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #8FA892;
  flex-shrink: 0;
}

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-sans);
  outline: none;
}

.form-input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input.error {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  margin-top: 4px;
}

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}

.footer p,
.footer-legal,
.footer-copy {
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: white;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-serif);
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 680px;
}

.footer-copy {
  font-size: 0.8rem;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 1px solid var(--border);
  display: none;
  align-items: flex-start;
  gap: 16px;
}

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

.cookie-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cookie-content h4 {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.cookie-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cookie-content p a {
  color: var(--clay);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
}

.success-icon {
  width: 88px;
  height: 88px;
  background: rgba(107, 138, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
}

.success-page h1 {
  margin-bottom: 16px;
  color: var(--bark);
}

.success-page p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--warm-white);
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  margin-bottom: 8px;
}

.legal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--bark);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-body ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .burger span { background: var(--ink); }
.header:not(.scrolled) .burger span { background: white; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,16,10,0.97);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: white;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--clay-light); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: white;
  line-height: 1;
}

@media (max-width: 1023px) {
  .about-grid { gap: 48px; }
  .teacher-grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .lead-form-wrapper { grid-template-columns: 1fr; }
  .lead-form-wrapper .lead-form-copy { order: 2; }
  .lead-form-wrapper .form-card { order: 1; max-width: 480px; }
}

@media (max-width: 860px) {
  .header-nav, .header-cta { display: none; }
  .burger { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-accent { display: none; }

  .outcomes-grid { grid-template-columns: 1fr; gap: 16px; }

  .results-layout { grid-template-columns: 1fr; gap: 40px; }

  .audience-grid { grid-template-columns: 1fr; gap: 14px; }

  .teacher-grid { grid-template-columns: 1fr; gap: 40px; }
  .teacher-photo { max-width: 320px; }

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

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

  .trust-items { gap: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .container { padding: 0 18px; }
  .form-card { padding: 28px 20px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
