/* ============================================================
   FilmLab — Global Styles
   Colors sourced from FilmLab postcard (teal + gold + white)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  --teal-900: #052830;
  --teal-800: #0b3f4e;
  --teal-700: #115565;
  --teal-600: #186b7d;
  --teal-500: #1e8295;
  --teal-400: #27a0b5;
  --teal-300: #60c4d4;
  --gold:      #ffaf00;
  --gold-dim:  #e69e00;
  --gold-soft: rgba(255,175,0,.15);
  --gold-border: rgba(255,175,0,.35);
  --white: #ffffff;
  --off-white: #f0f8fa;
  --text-dark: #0b3f4e;
  --text-muted-dark: rgba(11,63,78,.72);
  --text-on-teal: rgba(255,255,255,.90);
  --text-muted: rgba(255,255,255,.65);
  --border: rgba(255,255,255,.12);
  --border-teal: rgba(255,255,255,.16);
  --max: 1200px;
  --r-lg: 22px;
  --r-xl: 30px;
  --section-pad: 92px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--teal-800);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.6;
}
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; height: auto; display: block; }
ul    { list-style: none; }

/* ── FIXED-WIDTH PAGE WRAPPER ───────────────────────── */
/* Constrains the entire site to 1280px. The body background
   shows as a border on very wide monitors. No overflow set here
   so position:sticky on the topbar still works correctly. */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  box-shadow: 0 0 80px rgba(0,0,0,.45);
}

/* ── UTILITY ────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: 46px; font-weight: 900;
  line-height: 1.04; letter-spacing: -.03em;
}
.section-lead {
  margin-top: 18px; font-size: 18px; line-height: 1.85;
  color: var(--text-muted); max-width: 760px;
}
.gold { color: var(--gold); }

/* ── GEOMETRIC BACKGROUND ───────────────────────────── */
/* Subtle repeating diamond outline pattern — matches postcard */
.geo-bg {
  background-color: var(--teal-800);
  background-image:
    url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='44,4 84,44 44,84 4,44' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 88px 88px;
}
.geo-bg-dark {
  background-color: var(--teal-900);
  background-image:
    url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='44,4 84,44 44,84 4,44' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 88px 88px;
}

/* ── NAV ────────────────────────────────────────────── */
.topbar {
  background: var(--teal-900);
  border-bottom: 1px solid var(--border-teal);
  position: sticky; top: 0; z-index: 200;
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 50px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 14px; font-weight: 600; color: var(--text-on-teal);
}
.nav-links a { transition: color .18s; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.btn-nav {
  background: var(--gold); color: #000;
  padding: 10px 24px; border-radius: 999px;
  font-weight: 800; font-size: 13px; letter-spacing: .03em;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--gold-dim); transform: translateY(-1px); }

/* Mobile menu toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  position: relative; z-index: 201;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 999px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── VIDEO HERO ──────────────────────────────────────── */
/* YouTube iframe is scaled up to cover the banner area like object-fit:cover */
.video-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background: var(--teal-900);
}
/* overflow:hidden lives here so only the video is clipped, not the text */
.video-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.video-hero-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: calc(100vw * 9 / 16);
  min-width: calc(100vh * 16 / 9);
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}
.video-hero-overlay {
  position: relative; z-index: 1;
  min-height: 88vh;
  background:
    linear-gradient(to right, rgba(5,40,48,.88), rgba(5,40,48,.25) 55%, rgba(5,40,48,.55)),
    linear-gradient(to top,   rgba(5,40,48,.95), rgba(5,40,48,.10) 50%);
  display: flex; align-items: flex-end;
}
@media (max-width: 720px) {
  .video-hero,
  .video-hero-overlay { min-height: 100vh; }
  /* Break out of page-wrap so video fills full device width */
  .video-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* ── HERO ────────────────────────────────────────────── */
/* Image is absolutely positioned so text content drives the height —
   prevents text from being clipped by aspect-ratio on large screens. */
.hero { position: relative; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: relative; z-index: 1;
  min-height: 600px;
  background:
    linear-gradient(to right, rgba(5,40,48,.90), rgba(5,40,48,.30) 52%, rgba(5,40,48,.65)),
    linear-gradient(to top,   rgba(5,40,48,.92), rgba(5,40,48,.10) 48%);
  display: flex; align-items: flex-end;
}
.hero-copy { padding: 52px 48px; max-width: 680px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--gold-border);
  background: var(--gold-soft);
  color: #ffe177; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-size: 60px; line-height: 1.02; font-weight: 900;
  letter-spacing: -.04em;
}
.hero-copy .sub {
  margin-top: 18px; font-size: 19px; line-height: 1.8;
  color: var(--text-muted); max-width: 560px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.hero-stats {
  display: flex; gap: 36px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block; font-size: 34px; font-weight: 900; color: var(--gold);
}
.hero-stat span {
  display: block; margin-top: 4px;
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: #000; font-weight: 800;
  padding: 15px 30px; border-radius: 999px; font-size: 15px;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--border-teal); color: #fff; font-weight: 700;
  padding: 15px 30px; border-radius: 999px; font-size: 15px;
  background: rgba(255,255,255,.04);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold-border); color: #ffe177; }

/* ── SECTIONS ────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

.section-dark {
  background-color: var(--teal-900);
  background-image:
    url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='44,4 84,44 44,84 4,44' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 88px 88px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-light {
  background: var(--off-white);
  color: var(--text-dark);
}
.section-light .section-title { color: var(--teal-900); }
.section-light .section-lead  { color: var(--text-muted-dark); }
.section-light .eyebrow        { color: var(--teal-600); }
.section-light .card           {
  background: #fff; border-color: rgba(24,107,125,.18);
}
.section-light .card h3        { color: var(--teal-800); }
.section-light .card p         { color: var(--text-muted-dark); }

/* ── CARDS ───────────────────────────────────────────── */
.cards {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px; margin-top: 40px;
}
.card {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-teal);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
/* Image card variant — image sits above the text content */
.card.card-has-img {
  padding: 0;
  overflow: hidden;
}
.card-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.card.card-has-img:hover .card-img-wrap img { transform: scale(1.04); }
.card-body { padding: 22px 24px 26px; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.25); }
.card-bar { width: 44px; height: 5px; border-radius: 999px; background: var(--gold); margin-bottom: 18px; }
.card h3 { font-size: 17px; font-weight: 800; margin-bottom: 12px; line-height: 1.35; }
.card p  { font-size: 14px; line-height: 1.85; color: var(--text-muted); }
.card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 18px;
}

/* ── THREE-UP FEATURE STRIP ──────────────────────────── */
.features {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px; margin-top: 48px;
  border: 1px solid var(--border-teal); border-radius: var(--r-xl);
  overflow: hidden;
}
.feature {
  padding: 36px 30px;
  background: rgba(255,255,255,.04);
  border-right: 1px solid var(--border-teal);
  transition: background .2s;
}
.feature:last-child { border-right: none; }
.feature:hover { background: rgba(255,255,255,.08); }
.feature-icon {
  font-size: 28px; margin-bottom: 14px;
}
.feature h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.feature p  { font-size: 14px; line-height: 1.8; color: var(--text-muted); }

/* ── SPLIT LAYOUT ────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.split-wide { grid-template-columns: 1.35fr 1fr; }

/* ── PANEL ───────────────────────────────────────────── */
.panel {
  background: var(--teal-900); border: 1px solid var(--border-teal);
  border-radius: var(--r-xl); padding: 34px;
}
.panel-title { font-size: 19px; font-weight: 800; margin-bottom: 20px; }

/* ── NUMBERED STEPS ──────────────────────────────────── */
.steps { display: grid; gap: 10px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px; border-radius: 18px;
  border: 1px solid var(--border); background: rgba(255,255,255,.04);
  transition: background .18s;
}
.step:hover { background: rgba(255,255,255,.08); }
.step-num {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--gold); color: #000;
  display: grid; place-items: center;
  font-weight: 900; font-size: 13px; flex: 0 0 auto; margin-top: 1px;
}
.step-text { font-size: 14px; line-height: 1.75; color: var(--text-muted); padding-top: 4px; }

/* ── OUTCOMES ────────────────────────────────────────── */
.outcomes {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px; margin-top: 32px;
}
.outcome {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-teal);
  border-radius: 20px; padding: 24px;
  transition: background .18s;
}
.outcome:hover { background: rgba(255,255,255,.1); }
.outcome-label {
  font-size: 10px; font-weight: 800; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.outcome-text { font-size: 20px; font-weight: 800; line-height: 1.35; }
.outcome.wide { grid-column: 1 / -1; }

/* ── PHOTO GRID ──────────────────────────────────────── */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-grid img {
  border-radius: var(--r-lg); width: 100%;
  object-fit: cover; height: 220px;
}
.photo-grid img:first-child {
  grid-column: 1 / -1; height: 280px;
}
.photo-round { border-radius: var(--r-xl); overflow: hidden; }
.photo-round img { width: 100%; object-fit: cover; }

/* ── INSTRUCTOR CARDS ────────────────────────────────── */
.instructors-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px; margin-top: 44px;
}
.instructor-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-teal);
  border-radius: var(--r-xl); overflow: hidden; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.instructor-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.instructor-photo-wrap {
  aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  display: grid; place-items: center;
}
.instructor-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.instructor-placeholder { opacity: .38; }
.instructor-info { padding: 24px; }
.instructor-info h3 { font-size: 20px; font-weight: 900; }
.instructor-info .role {
  color: var(--gold); font-size: 12px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-top: 6px;
}
.instructor-info p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-top: 14px; }
.instructor-divider { width: 32px; height: 3px; background: var(--gold); border-radius: 999px; margin: 12px auto 0; }

/* ── APPLY FORM ──────────────────────────────────────── */
.form-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--teal-900); border: 1px solid var(--border-teal);
  border-radius: var(--r-xl); padding: 52px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }
label {
  display: block; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 9px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border-teal);
  border-radius: 14px; color: #fff;
  font-family: inherit; font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,.30); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(255,175,0,.12);
}
select option { background: var(--teal-800); color: #fff; }
textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

.form-section-title {
  font-size: 13px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal-300);
  padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-submit { margin-top: 36px; text-align: center; }
.btn-submit {
  background: var(--gold); color: #000; font-weight: 900;
  font-size: 17px; letter-spacing: .03em;
  padding: 18px 52px; border-radius: 999px;
  border: none; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--gold-dim); transform: translateY(-2px); }

/* ── ALERTS ──────────────────────────────────────────── */
.alert {
  padding: 14px 20px; border-radius: 14px; margin-bottom: 28px;
  font-size: 14px; font-weight: 600; line-height: 1.5;
}
.alert-error {
  background: rgba(220,53,69,.15);
  border: 1px solid rgba(220,53,69,.40);
  color: #ff8591;
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  text-align: center; padding: 108px 0;
  background: linear-gradient(150deg, var(--teal-900) 0%, var(--teal-700) 100%);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='44,4 84,44 44,84 4,44' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 88px 88px;
}
.cta-banner .container { position: relative; }
.cta-banner .section-lead { margin: 16px auto 0; text-align: center; }
.cta-banner .hero-actions { justify-content: center; margin-top: 36px; }
.cta-banner .section-title { font-size: 50px; }

/* ── THANK YOU ───────────────────────────────────────── */
.thankyou-wrap {
  min-height: 72vh; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.thankyou-inner { max-width: 580px; }
.thankyou-icon {
  width: 84px; height: 84px; border-radius: 999px;
  background: var(--gold-soft); border: 2px solid var(--gold-border);
  display: grid; place-items: center;
  font-size: 38px; margin: 0 auto 30px;
}
.thankyou-inner h1 { font-size: 50px; font-weight: 900; letter-spacing: -.04em; }
.thankyou-inner p  { font-size: 18px; line-height: 1.8; color: var(--text-muted); margin-top: 16px; }
.thankyou-inner .hero-actions { justify-content: center; margin-top: 36px; }

/* ── QUICK FACTS LIST ────────────────────────────────── */
.about-quick-facts {
  margin-top: 24px; display: grid; gap: 10px;
  padding-left: 20px;
}
.about-quick-facts li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 15px; color: var(--text-on-teal); line-height: 1.5;
}
.about-quick-facts li::before {
  content: ''; flex: 0 0 6px; height: 6px;
  border-radius: 999px; background: var(--gold); margin-top: 2px;
}
.fact-label {
  font-weight: 800; color: var(--gold);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  flex: 0 0 auto; margin-right: 6px;
}

/* ── VIDEO EMBED ─────────────────────────────────────── */
.video-embed-wrap {
  position: relative; width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-teal);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  align-self: center;
}
.video-embed-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ── SESSION DATES ───────────────────────────────────── */
.sessions-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px; margin-top: 44px;
}
.session-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-teal);
  border-radius: var(--r-xl); padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.session-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.session-num {
  font-size: 11px; font-weight: 800; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.session-dates {
  font-size: 28px; font-weight: 900; line-height: 1.15; letter-spacing: -.02em;
}
.session-detail {
  margin-top: 10px; font-size: 13px; color: var(--text-muted); font-weight: 600;
}
.session-card--locked {
  opacity: .55; cursor: default;
}
.session-card--locked:hover { transform: none; box-shadow: none; }
.session-coming-soon {
  margin-top: 24px; display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border-teal); border-radius: 999px;
  padding: 9px 18px;
}

@media (max-width: 720px) {
  .sessions-grid { grid-template-columns: 1fr; }
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing-card {
  display: grid; grid-template-columns: auto 1fr; gap: 0;
  background: var(--teal-900); border: 1px solid var(--border-teal);
  border-radius: var(--r-xl); overflow: hidden; margin-top: 44px;
}
.pricing-left {
  background: var(--gold); color: #000;
  padding: 44px 40px; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; min-width: 220px;
}
.pricing-label {
  font-size: 11px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; opacity: .65; margin-bottom: 10px;
}
.pricing-amount {
  font-size: 100px; font-weight: 900; line-height: 1; letter-spacing: -.04em;
}
.pricing-desc {
  font-size: 13px; font-weight: 700; opacity: .7; margin-top: 8px; line-height: 1.5;
}
.pricing-right { padding: 44px 44px; }
.pricing-includes {
  display: grid; gap: 14px;
}
.pricing-includes li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5; color: var(--text-on-teal);
}
.pricing-check {
  color: var(--gold); font-weight: 900; font-size: 14px;
  flex: 0 0 auto; margin-top: 1px;
}
.pricing-note {
  color: var(--teal-300); font-weight: 900; font-size: 15px;
  flex: 0 0 auto; margin-top: 1px;
}
.pricing-includes li:last-child { color: var(--text-muted); font-style: italic; }

@media (max-width: 720px) {
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-left { padding: 32px 28px; }
  .pricing-amount { font-size: 56px; }
  .pricing-right { padding: 32px 28px; }
}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-teal);
  aspect-ratio: 1;
  background: var(--teal-700);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease, opacity .25s;
}
.gallery-item:hover img { transform: scale(1.06); opacity: .9; }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--teal-900);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px; margin-bottom: 44px;
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: var(--text-muted); max-width: 300px; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color .18s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── DIVIDER ─────────────────────────────────────────── */
.gold-bar {
  width: 52px; height: 5px; border-radius: 999px;
  background: var(--gold); margin: 20px 0 0;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1060px) {
  .cards               { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .features            { grid-template-columns: 1fr; }
  .feature             { border-right: none; border-bottom: 1px solid var(--border-teal); }
  .feature:last-child  { border-bottom: none; }
  .split, .split-wide  { grid-template-columns: 1fr; }
  .instructors-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --section-pad: 64px; }
  .container { width: min(var(--max), calc(100% - 24px)); }

  /* Mobile nav overlay */
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; inset: 0;
    background: var(--teal-900); padding: 100px 36px 40px;
    z-index: 200; gap: 22px; font-size: 22px; font-weight: 700;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-img       { aspect-ratio: 3/4; object-position: center top; }
  .hero-copy      { padding: 28px 20px; }
  .hero-copy h1   { font-size: 38px; }
  .hero-copy .sub { font-size: 15px; }
  .hero-stats     { flex-wrap: wrap; gap: 20px; }

  .section-title  { font-size: 32px; }
  .cta-banner .section-title { font-size: 32px; }

  .cards          { grid-template-columns: 1fr; }
  .outcomes       { grid-template-columns: 1fr; }
  .photo-grid     { grid-template-columns: 1fr; }
  .photo-grid img:first-child { grid-column: 1; }
  .form-row       { grid-template-columns: 1fr; }
  .form-wrap      { padding: 28px 22px; }
  .instructors-grid { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 10px; text-align: center; }
  .cta-banner     { padding: 72px 0; }
}
