@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');

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

:root {
  --color-bg: #FAF7F3;
  --color-bg-alt: #F2EBE0;
  --color-surface: #FFFFFF;
  --color-terracotta: #C4714A;
  --color-terracotta-dark: #A85D38;
  --color-terracotta-light: #E8C4AE;
  --color-brown: #2C1A0E;
  --color-brown-mid: #5C3D27;
  --color-sage: #7A9E7E;
  --color-sage-light: #C4D9C6;
  --color-text: #2C1A0E;
  --color-text-muted: #7A6355;
  --color-border: #D9CEC5;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(44,26,14,0.08);
  --shadow-md: 0 4px 16px rgba(44,26,14,0.10);
  --shadow-lg: 0 12px 40px rgba(44,26,14,0.13);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1120px;
  --section-padding: 88px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-terracotta-dark);
}

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

/* ─── HEADER / NAV ─────────────────────────────── */

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--color-terracotta);
}

.nav-cta {
  background: var(--color-terracotta);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--color-terracotta-dark) !important;
  transform: translateY(-1px);
}

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

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

.mobile-menu {
  display: none;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 8px;
}

/* ─── HERO ─────────────────────────────────────── */

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

.hero-content {
  padding: 80px 48px 80px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-terracotta-light);
  color: var(--color-brown-mid);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-terracotta);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-brown);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

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

.hero-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--color-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--color-sage);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 560px;
}

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

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 25%);
}

/* ─── BUTTONS ───────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-terracotta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,113,74,0.35);
}

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

.btn-outline:hover {
  background: var(--color-terracotta);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ─── SECTION HEADERS ──────────────────────────── */

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-brown);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

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

/* ─── VALUES / BENEFITS ────────────────────────── */

.values {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

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

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--color-terracotta-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 10px;
}

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

/* ─── COURSE FORMAT ────────────────────────────── */

.format {
  padding: var(--section-padding);
}

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

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

.format-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--color-terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 6px;
}

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

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

/* ─── AUDIENCE ─────────────────────────────────── */

.audience {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

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

.audience-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border-left: 4px solid var(--color-terracotta);
}

.audience-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ─── INSTRUCTOR ────────────────────────────────── */

.instructor {
  padding: var(--section-padding);
}

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

.instructor-photo {
  position: relative;
}

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

.instructor-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-terracotta);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.instructor-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.instructor-badge span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.instructor-content .section-title {
  margin-bottom: 20px;
}

.instructor-bio {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.instructor-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.instructor-fact::before {
  content: '✦';
  color: var(--color-terracotta);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── PORTFOLIO ────────────────────────────────── */

.portfolio {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio-item:nth-child(1) { grid-column: span 7; height: 340px; }
.portfolio-item:nth-child(2) { grid-column: span 5; height: 340px; }
.portfolio-item:nth-child(3) { grid-column: span 5; height: 280px; }
.portfolio-item:nth-child(4) { grid-column: span 7; height: 280px; }

/* ─── TESTIMONIALS ──────────────────────────────── */

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

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

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-terracotta-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-terracotta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-terracotta-dark);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brown);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-stars span {
  color: #E8B84B;
  font-size: 0.9rem;
}

/* ─── FAQ ───────────────────────────────────────── */

.faq {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

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

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

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

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

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-terracotta);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--color-terracotta);
  color: #fff;
}

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

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

/* ─── LEAD FORM ─────────────────────────────────── */

.lead-form-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-mid) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(196,113,74,0.12);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

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

.lead-form-content .section-label {
  color: var(--color-terracotta-light);
}

.lead-form-content .section-title {
  color: #fff;
}

.lead-form-content .section-subtitle {
  color: rgba(255,255,255,0.72);
}

.lead-form-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.lead-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.perk-icon {
  width: 32px;
  height: 32px;
  background: rgba(196,113,74,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 6px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brown-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C4B5A8;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--color-terracotta);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

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

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ─── TRUST ─────────────────────────────────────── */

.trust {
  padding: 64px 0;
  background: var(--color-bg-alt);
}

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

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ─── FOOTER ─────────────────────────────────────── */

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 12px;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--color-terracotta-light);
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal p {
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 540px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.footer-legal-links a:hover {
  color: var(--color-terracotta-light);
}

/* ─── COOKIE BANNER ──────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-brown);
  color: rgba(255,255,255,0.88);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  flex-wrap: wrap;
}

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

.cookie-text {
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: var(--color-terracotta-light);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--color-terracotta);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--color-terracotta-dark);
}

.cookie-btn-decline {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.2);
}

/* ─── LEGAL PAGES ────────────────────────────────── */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-brown);
  margin: 36px 0 12px;
}

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

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 14px;
}

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

.legal-page a {
  color: var(--color-terracotta);
}

/* ─── SUCCESS PAGE ───────────────────────────────── */

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

.success-card {
  max-width: 500px;
  width: 100%;
}

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

.success-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── UTILITIES ──────────────────────────────────── */

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* ─── ANIMATIONS ─────────────────────────────────── */

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 0 40px;
    order: 2;
  }
  .hero-image {
    order: 1;
    min-height: 380px;
    height: 380px;
  }
  .hero-image::after {
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 35%);
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .format-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .format-image { order: -1; }
  .format-image img { height: 320px; }
  .instructor-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .instructor-photo { max-width: 380px; }
  .instructor-badge { bottom: -12px; right: 12px; }
  .lead-form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .portfolio-item:nth-child(4) {
    grid-column: span 1;
    height: 220px;
  }
  .trust-items {
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: auto; }
  .footer-legal {
    flex-direction: column;
    gap: 16px;
  }
  .form-card {
    padding: 32px 24px;
  }
  .lead-form-layout {
    gap: 32px;
  }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item:nth-child(n) {
    grid-column: span 1;
    height: 260px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .trust-items {
    gap: 28px;
  }
}
