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

:root {
  --ink:        #1c1410;
  --ink-light:  #3d2f27;
  --rust:       #b84c2a;
  --rust-dark:  #963d22;
  --rust-pale:  #f4ede8;
  --cream:      #faf7f3;
  --warm-gray:  #8a7c74;
  --line:       #ddd5ce;
  --white:      #ffffff;

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

  --max-w: 1100px;
  --section-gap: 96px;
  --radius: 4px;
}

*, *::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(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--ink-light); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

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

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

.btn-primary {
  background: var(--rust);
  color: #fff;
  border: 2px solid var(--rust);
}
.btn-primary:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 76, 42, 0.28);
}

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

.btn-white {
  background: #fff;
  color: var(--rust);
  border: 2px solid #fff;
}
.btn-white:hover {
  background: var(--rust-pale);
  border-color: var(--rust-pale);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo span { color: var(--rust); }

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.15s;
}
.nav a:hover { color: var(--rust); }

.nav-cta { display: none; }

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

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  padding: 80px 0 80px 24px;
  max-width: 560px;
  margin-left: auto;
  padding-right: 48px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.hero h1 {
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--rust);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 90vh;
  background: #2b1f18;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  mix-blend-mode: normal;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

.hero-sketch-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 20px;
}
.hero-sketch-badge strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--rust);
  line-height: 1;
}
.hero-sketch-badge small {
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin-top: 2px;
  display: block;
}

.benefits {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.benefits-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.benefits-header h2 { margin-bottom: 14px; }

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

.benefit-item {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  transition: box-shadow 0.2s;
}
.benefit-item:hover {
  box-shadow: 0 8px 32px rgba(28,20,16,0.08);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.benefit-item h4 { margin-bottom: 8px; color: var(--ink); }
.benefit-item p { font-size: 0.9rem; }

.about-course {
  padding: var(--section-gap) 0;
}

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

.about-course-media {
  position: relative;
}

.about-course-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(28,20,16,0.14);
}

.media-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--rust);
  border-radius: 6px;
  pointer-events: none;
}

.about-course-text h2 { margin-bottom: 18px; }
.about-course-text .lead {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.course-facts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-light);
}
.fact-row::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

.curriculum {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.curriculum-header {
  max-width: 560px;
  margin-bottom: 56px;
}
.curriculum-header h2 { margin-bottom: 14px; }

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

.module-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
  transition: background 0.15s;
}
.module-item:first-child { border-top: 1px solid var(--line); }

.module-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--line);
  line-height: 1;
  padding-top: 2px;
}

.module-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.module-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
}

.process {
  padding: var(--section-gap) 0;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.process-header h2 { margin-bottom: 14px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rust-pale);
  border: 2px solid var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rust);
  background: var(--white);
}

.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

.outcomes {
  padding: var(--section-gap) 0;
  background: #2b1f18;
  color: #fff;
}

.outcomes-header {
  max-width: 560px;
  margin-bottom: 56px;
}
.outcomes-header .section-label { color: #e8a07a; }
.outcomes-header h2 { color: #fff; margin-bottom: 14px; }
.outcomes-header p { color: #c4b5ae; }

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

.outcome-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 28px;
}

.outcome-card h4 {
  color: #fff;
  margin-bottom: 8px;
}
.outcome-card p { color: #c4b5ae; font-size: 0.9rem; }

.outcome-visual {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.outcome-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.outcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.outcome-img:hover img { opacity: 1; }

.sketch-svg {
  width: 100%;
  height: 100%;
}

.instructor {
  padding: var(--section-gap) 0;
  background: var(--white);
}

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

.instructor-photo {
  position: relative;
}

.instructor-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(28,20,16,0.12);
}

.instructor-photo-frame {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--rust);
  border-radius: 6px;
  z-index: -1;
}

.instructor-text .section-label { margin-bottom: 8px; }
.instructor-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 6px;
}
.instructor-role {
  font-size: 0.9rem;
  color: var(--rust);
  margin-bottom: 24px;
  font-weight: 500;
}

.instructor-bio {
  font-size: 0.97rem;
  color: var(--ink-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.instructor-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 4px;
}

.testimonials {
  padding: var(--section-gap) 0;
}

.testimonials-header {
  max-width: 520px;
  margin-bottom: 56px;
}
.testimonials-header h2 { margin-bottom: 14px; }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(28,20,16,0.08);
}

.testimonial-quote {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--rust);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rust-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rust);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.author-city {
  font-size: 0.78rem;
  color: var(--warm-gray);
}

.format {
  padding: var(--section-gap) 0;
  background: var(--rust-pale);
}

.format-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.format-header h2 { margin-bottom: 14px; }

.format-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.format-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
}

.format-card.featured {
  border-color: var(--rust);
  box-shadow: 0 8px 32px rgba(184, 76, 42, 0.14);
}

.format-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--rust);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.format-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.format-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.format-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.format-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-light);
}

.format-feature::before {
  content: '✓';
  color: var(--rust);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-intro h2 { margin-bottom: 14px; }
.faq-intro p { font-size: 0.92rem; }

.faq-list {
  display: flex;
  flex-direction: column;
}

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

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

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--warm-gray);
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.lead-form-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #2b1f18 0%, #1c1410 100%);
}

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

.form-intro .section-label { color: #e8a07a; }
.form-intro h2 {
  color: #fff;
  margin-bottom: 18px;
}
.form-intro p { color: #c4b5ae; margin-bottom: 28px; }

.form-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #c4b5ae;
}
.promise-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #e8a07a;
  border-radius: 50%;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.form-card .form-sub {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rust);
  background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--warm-gray);
}

.form-consent {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 12px;
  line-height: 1.6;
}
.form-consent a { color: var(--rust); text-decoration: underline; }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
  margin-bottom: 10px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

.footer-col h5 {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

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

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  z-index: 999;
  display: none;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.4s ease forwards;
}
.cookie-banner.visible { display: flex; }

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

.cookie-text {
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.5;
}
.cookie-text a { color: #e8a07a; text-decoration: underline; }

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

.cookie-accept {
  background: var(--rust);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 9px 18px;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--rust-dark); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-decline:hover { color: rgba(255,255,255,0.8); }

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rust-pale);
  border: 2px solid var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.8rem;
}

.success-page h1 { font-size: 2.2rem; margin-bottom: 14px; }
.success-page p { color: var(--warm-gray); max-width: 480px; margin: 0 auto 32px; }

.legal-page {
  padding: 80px 0;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-header h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-header p { font-size: 0.88rem; color: var(--warm-gray); }

.legal-content h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content {
    max-width: 100%;
    padding: 64px 24px;
    margin: 0;
  }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .about-course-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-course-media { order: -1; }
  .instructor-inner { grid-template-columns: 1fr; gap: 40px; }
  .instructor-photo { max-width: 320px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .format-cards { grid-template-columns: 1fr; max-width: 440px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-gap: 64px; }
  .nav { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0;
    background: var(--cream);
    padding: 32px 24px;
    z-index: 99;
    gap: 28px;
  }
  .nav.open a { font-size: 1.1rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .outcomes-visual { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; }
  .cookie-actions { flex-direction: row; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
