/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF6F0;
  --cream-dark: #F0E9DF;
  --terracotta: #C2614A;
  --terracotta-dark: #A84F3A;
  --terracotta-light: #D47D67;
  --sage: #7A9E7E;
  --sage-dark: #5E8162;
  --amber: #E8A96A;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --mid-gray: #888;
  --border: rgba(0,0,0,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  line-height: 1.25;
  color: var(--charcoal);
}

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

p { line-height: 1.7; color: var(--charcoal-light); }

.sans { font-family: -apple-system, 'Segoe UI', sans-serif; }

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

section { padding: 80px 0; }

.section-label {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

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

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--terracotta);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--charcoal);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

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

.header-nav a {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  transition: color var(--transition);
}

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

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

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

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { text-align: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  padding: 0;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  border: 1px solid rgba(194,97,74,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  color: var(--terracotta);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  margin-bottom: 24px;
}

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

.hero-lead {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-note {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: normal;
  color: var(--charcoal);
}

.hero-stat-label {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

.hero-image-wrap {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 68px);
  overflow: hidden;
}

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

.hero-image-badge {
  position: absolute;
  bottom: 48px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-badge-text {
  font-family: -apple-system, 'Segoe UI', sans-serif;
}

.hero-badge-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.hero-badge-sub {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* ===== FOR WHOM ===== */
.for-whom {
  background: var(--cream-dark);
}

.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.whom-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.whom-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.whom-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.whom-card p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--mid-gray);
}

/* ===== WHAT YOU LEARN ===== */
.learn-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.learn-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.learn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.learn-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 2px;
}

.learn-text h4 {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.learn-text p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

/* ===== COURSE FORMAT ===== */
.format-section {
  background: var(--charcoal);
  color: #fff;
}

.format-section h2 { color: #fff; }
.format-section .section-label { color: var(--amber); }
.format-section .section-header p { color: rgba(255,255,255,0.65); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.format-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background var(--transition);
}

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

.format-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.format-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.format-card p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--cream-dark), var(--terracotta-light), var(--cream-dark));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 3px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.process-step p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--mid-gray);
}

/* ===== GALLERY / PORTFOLIO ===== */
.gallery-section {
  background: var(--cream-dark);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

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

.gallery-main-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery-note {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: var(--mid-gray);
  margin-top: 12px;
  font-style: italic;
}

/* ===== TEACHER ===== */
.teacher-layout {
  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%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.teacher-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.3;
}

.teacher-name {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.teacher-role {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.teacher-desc {
  margin-bottom: 32px;
}

.teacher-desc p {
  margin-bottom: 14px;
}

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

.teacher-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.teacher-fact::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== MATERIALS ===== */
.materials-section {
  background: var(--cream-dark);
}

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

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

.materials-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.materials-intro {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.materials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.materials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

.mat-icon {
  color: var(--sage);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.materials-note {
  margin-top: 24px;
  background: rgba(122,158,126,0.12);
  border-left: 3px solid var(--sage);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-name {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.review-city {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream-dark);
}

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

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--charcoal);
  gap: 16px;
  transition: background var(--transition);
}

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

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--terracotta);
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

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

/* ===== LEAD FORM ===== */
.lead-section {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.lead-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

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

.lead-section .section-label { color: var(--amber); }
.lead-section h2 { color: #fff; }
.lead-section .section-header { margin-bottom: 32px; }
.lead-section .section-header p { color: rgba(255,255,255,0.75); }

.lead-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.perk-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  margin-top: 2px;
}

.lead-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.lead-form-title {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.lead-form-subtitle {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 28px;
}

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

.form-field label {
  display: block;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-light);
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

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

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

.form-legal {
  margin-top: 14px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  color: var(--mid-gray);
  text-align: center;
  line-height: 1.5;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: #1C1C1C;
  color: #fff;
  padding: 60px 0 32px;
}

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

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

.footer-brand p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer-col a {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

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

.footer-legal {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1C1C1C;
  color: #fff;
  padding: 20px 24px;
  z-index: 200;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

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

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

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

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

.cookie-accept {
  padding: 10px 24px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

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

.cookie-decline {
  padding: 10px 16px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.75); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 80px 0;
  min-height: 70vh;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-date {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

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

.legal-content p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--charcoal-light);
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 14px;
  color: var(--charcoal-light);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content ul li { margin-bottom: 8px; }

.legal-details {
  margin-top: 40px;
  padding: 24px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.success-content {
  max-width: 520px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(194,97,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 28px;
}

.success-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-content p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  color: var(--mid-gray);
  margin-bottom: 36px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  section { padding: 60px 0; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-image-wrap {
    min-height: 300px;
    margin: 32px -24px 0;
  }

  .hero-image-badge { left: 16px; }

  .learn-layout,
  .teacher-layout,
  .materials-layout,
  .gallery-intro,
  .lead-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .teacher-photo img,
  .learn-image img {
    height: 320px;
  }

  .teacher-layout .teacher-photo { order: -1; }

  .process-steps::before { display: none; }

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

  .footer-brand { grid-column: 1 / -1; }

  .header-nav { display: none; }
  .burger { display: flex; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .lead-form-wrap { padding: 28px 20px; }

  .process-steps { grid-template-columns: 1fr 1fr; }
}
