/*
 * ============================================================
 * TEST MY DRIVE — style.css
 * Mobile-first. Desktop layers on top via media queries.
 * Breakpoints: 768px (tablet), 1024px (desktop), 1440px (wide)
 * DO NOT add vw units for font sizes or spacing.
 * DO NOT hardcode colours — use CSS variables.
 * ============================================================
 */

/* ── VARIABLES ── */
:root {
  --navy:      #0d1f3c;
  --navy2:     #162d54;
  --amber:     #f5a623;
  --amber2:    #ffc255;
  --white:     #ffffff;
  --offwhite:  #f7f8fa;
  --grey:      #6b7280;
  --lightgrey: #e5e7eb;
  --text:      #1a1a2e;
  --condensed: 'Barlow Condensed', sans-serif;
  --body:      'Barlow', sans-serif;
  --content-max: 900px;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ════════════════════════════════
   NAV — mobile first
   hamburger visible, links hidden
════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 80px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo { text-decoration: none; }
.nav-logo img { height: 76px; width: auto; display: block; }

/* text fallback for index.html footer logo */
.nav-logo-text {
  font-family: var(--condensed);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo-text span { color: var(--amber); }

.nav-links { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a.mob-cta {
  margin-top: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  text-align: center;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  padding: 0.75rem;
}

/* ════════════════════════════════
   HERO — index.html (navy bg)
════════════════════════════════ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem 3rem;
  min-height: 420px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber2), var(--amber));
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--amber); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ════════════════════════════════
   HERO — suburb pages (photo bg)
   Add class="hero hero-photo" on wrapper
════════════════════════════════ */
.hero-photo {
  background: none !important;
  padding: 0 !important;
  min-height: 0 !important;
  display: block !important;
  margin: 0;
  width: 100%;
}
.hero-photo::before,
.hero-photo::after { display: none !important; }
.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.45);
  margin: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}
.hero-overlay .hero-inner {
  text-align: center;
}
.hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber2), var(--amber));
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ════════════════════════════════
   TRUST BAR
════════════════════════════════ */
.trust-bar {
  background: var(--offwhite);
  border-bottom: 1px solid var(--lightgrey);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
}

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
.section {
  padding: 3rem 1.5rem;
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ════════════════════════════════
   CONTENT BODY (suburb pages)
════════════════════════════════ */
.content-body { font-size: 0.92rem; color: var(--grey); line-height: 1.8; }
.content-body p { margin-bottom: 1.25rem; }
.content-body h2 {
  font-family: var(--condensed);
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 800;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.content-body h3 {
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}

/* ════════════════════════════════
   HIGHLIGHT BOX
════════════════════════════════ */
.highlight-box {
  background: rgba(245,166,35,0.07);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.highlight-box p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
}

/* ════════════════════════════════
   CHECKLIST
════════════════════════════════ */
.checklist {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}
.checklist li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ════════════════════════════════
   LESSON CARDS (home page)
════════════════════════════════ */
.lessons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lesson-card {
  border: 1.5px solid var(--lightgrey);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.lesson-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(245,166,35,0.12);
  transform: translateY(-2px);
}
.lesson-card.featured { border-color: var(--amber); background: #fffbf2; }
.lesson-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0; right: 0;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 0 10px 0 6px;
}
.lesson-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.lesson-title { font-family: var(--condensed); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.lesson-desc { font-size: 0.8rem; color: var(--grey); line-height: 1.6; margin-bottom: 1rem; }
.lesson-price { font-family: var(--condensed); font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.lesson-price span { font-size: 0.78rem; font-weight: 500; color: var(--grey); font-family: var(--body); }

/* ════════════════════════════════
   PRICING CARDS
════════════════════════════════ */
.pricing-section {
  background: var(--offwhite);
  border-top: 1px solid var(--lightgrey);
  border-bottom: 1px solid var(--lightgrey);
}
.pricing-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--lightgrey);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--amber); }
.pricing-card.highlight { background: var(--navy); border-color: var(--navy); }
.pricing-card.highlight .pricing-label { color: var(--amber); }
.pricing-card.highlight .pricing-amount,
.pricing-card.highlight .pricing-desc,
.pricing-card.highlight .pricing-duration { color: var(--white); }
.pricing-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
.pricing-amount { font-family: var(--condensed); font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.pricing-duration { font-size: 0.78rem; color: var(--grey); margin-bottom: 0.75rem; }
.pricing-desc { font-size: 0.8rem; color: var(--grey); line-height: 1.5; }

/* ════════════════════════════════
   STAT BOXES
════════════════════════════════ */
.about-stats,
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat-number { font-family: var(--condensed); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.stat-number span { color: var(--amber); }
.stat-label { font-size: 0.72rem; color: var(--grey); font-weight: 500; }

/* ════════════════════════════════
   BADGES
════════════════════════════════ */
.about-badge,
.badge {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin: 0.2rem 0.2rem 0.2rem 0;
}

/* ════════════════════════════════
   INSTRUCTOR CARD
════════════════════════════════ */
.instructor-card {
  background: var(--offwhite);
  border: 1.5px solid var(--lightgrey);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--amber);
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.instructor-body { flex: 1; min-width: 200px; }
.instructor-name { font-family: var(--condensed); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }

/* ════════════════════════════════
   LANGUAGE BOX
════════════════════════════════ */
.lang-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.lang-box-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.3rem; }
.lang-box-langs { font-size: 0.82rem; color: var(--navy); font-weight: 600; }
.lang-box-sub { font-size: 0.73rem; color: var(--grey); margin-top: 0.2rem; }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--lightgrey);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--amber); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s;
}
.faq-item.open .faq-question { background: #fffbf2; }
.faq-chevron { font-size: 0.8rem; color: var(--grey); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--amber); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0.75rem 1.25rem 1rem;
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.7;
  border-top: 1px solid var(--lightgrey);
  background: #fffbf2;
}

/* ════════════════════════════════
   BOOKING / FORMS
════════════════════════════════ */
.booking-section { background: var(--offwhite); border-top: 1px solid var(--lightgrey); }
.booking-inner { max-width: 640px; margin: 0 auto; padding: 3rem 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }
.form-input, .form-select, .form-textarea {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--lightgrey);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 0.75rem;
  line-height: 1.5;
  background: #fff8e7;
  border: 1px solid rgba(245,166,35,0.3);
  padding: 0.6rem 0.8rem;
  border-radius: 5px;
}
.form-submit {
  width: 100%;
  margin-top: 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--navy2); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  margin-top: 1rem;
}
.form-success .tick { font-size: 2rem; margin-bottom: 0.5rem; }
.form-success h3 { color: #166534; font-family: var(--condensed); font-size: 1.2rem; margin-bottom: 0.4rem; }
.form-success p { color: #166534; font-size: 0.82rem; }

/* ════════════════════════════════
   PAGE HERO (internal SPA pages)
════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber2), var(--amber));
}
.page-hero-inner { max-width: var(--content-max); margin: 0 auto; }
.page-hero h2 {
  font-family: var(--condensed);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 0.4rem; }

/* ════════════════════════════════
   SPA PAGE SYSTEM (index.html)
════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ════════════════════════════════
   NEARBY SUBURB PILLS
════════════════════════════════ */
.nearby-box { background: var(--offwhite); border: 1.5px solid var(--lightgrey); border-radius: 12px; padding: 1.25rem 1.5rem; }
.nearby-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.nearby-link {
  font-size: 0.8rem;
  color: var(--grey);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--lightgrey);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  transition: all 0.2s;
}
.nearby-link:hover { border-color: var(--amber); color: var(--navy); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
}
.footer-logo { font-family: var(--condensed); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--amber); }
footer p { line-height: 1.7; }
footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer a:hover { color: var(--amber); }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ════════════════════════════════
   SUBURB PAGE SECTIONS
════════════════════════════════ */
.suburb-instructor-section {
  background: var(--offwhite);
  border-top: 1px solid var(--lightgrey);
  border-bottom: 1px solid var(--lightgrey);
  padding: 3.5rem 1.5rem;
}
.suburb-section-inner {
  max-width: 860px;
  margin: 0 auto;
}
.suburb-section-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.suburb-section-heading .section-title {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
}
.suburb-nearby-section {
  padding: 0 1.5rem 3.5rem;
}
.instructor-loading {
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
  padding: 2rem 0;
}
.hero-buttons .btn-primary {
  min-width: 220px;
  text-align: center;
}
.footer-tagline {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-copy {
  font-size: 0.7rem;
  opacity: 0.4;
}
.suburb-section { border-bottom: 1px solid var(--lightgrey); padding: 2rem 0; max-width: 680px; margin: 0 auto; }
.suburb-section:last-of-type { border-bottom: none; }
.suburb-heading { font-family: var(--condensed); font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.1; }
.suburb-body { font-size: 0.88rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.25rem; max-width: 580px; }

/* ════════════════════════════════
   TABLET — 768px+
════════════════════════════════ */
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .nav-cta { background: var(--amber) !important; color: var(--navy) !important; font-weight: 700 !important; padding: 0.4rem 1rem !important; }
  .nav-cta:hover { background: var(--amber2) !important; }
  .hamburger { display: none; }

  .lessons-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .hero-img { height: 460px; }
}

/* ════════════════════════════════
   DESKTOP — 1024px+
════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --content-max: 1100px; }

  .section { padding: 4rem 2rem; }
  .pricing-inner { padding: 4rem 2rem; }
  .booking-inner { padding: 4rem 2rem; }

  .hero { padding: 3.5rem 2rem 4rem; min-height: 500px; }
  .hero.hero-photo { padding: 0 !important; min-height: 0 !important; }
  .hero h1 { font-size: 4.5rem; }
  .hero-eyebrow { font-size: 0.85rem; padding: 0.4rem 1.2rem; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 1.15rem; max-width: 640px; }
  .hero-buttons .btn-primary { min-width: 220px; font-size: 1rem; padding: 1rem 2.5rem; }

  .hero-img { height: 560px; }

  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .instructor-card { flex-wrap: nowrap; }

  .page-hero { padding: 3.5rem 2rem 3rem; }
}

/* ════════════════════════════════
   WIDE — 1440px+
════════════════════════════════ */
@media (min-width: 1440px) {
  :root { --content-max: 1280px; }
  .hero h1 { font-size: 4.5rem; }
}
