/* =====================================================================
   Bilingual Improv School — production stylesheet
   Design tokens, layout, and both breakpoints (1000px nav / 760px layout).

   OWNER-EDITABLE CONFIG lives in :root below — hero brightness, per-slide
   photo crops (desktop + mobile), headshot crop, and program section order.
   ===================================================================== */

:root {
  /* Palette */
  --bg: #111;
  --red: #D8222E;
  --red-hover: #b5121f;
  --card: #1c1c1c;
  --border: #2d2d2d;
  --pink: #ff8f96;        /* kicker / link hover */
  --pink-soft: #ffd2d5;   /* press-band accents */

  /* ---- Editor-managed variables — the Visual Editor's "Publish" button
     overwrites everything between the DESKTOP:START/END markers below.
     Edit values here by hand if you like; keep the markers intact. ---- */
  /* BIS-EDITOR:DESKTOP:START */
  /* Hero photo brightness (0.2–1) */
  --hero-brightness: 0.85;

  /* Hero photo crops — desktop carousel */
  --dslide1-size: 100% auto;  --dslide1-pos: 50% 45%;
  --dslide2-size: 105% auto;  --dslide2-pos: 17% 69%;
  --dslide3-size: 100% auto;  --dslide3-pos: 50% 47%;

  /* Hero photo crops — mobile carousel */
  --mslide1-size: auto 100%;  --mslide1-pos: 42% 45%;
  --mslide2-size: auto 100%;  --mslide2-pos: 50% 100%;
  --mslide3-size: auto 100%;  --mslide3-pos: 50% 50%;
  --mslide4-size: auto 100%;  --mslide4-pos: 70% 59%;
  --mslide5-size: auto 100%;  --mslide5-pos: 68% 50%;

  /* Founder headshot crop */
  --headshot-size: 145% auto;
  --headshot-pos: 100% 0%;

  /* About banner crop */
  --about-height: 480px;
  --about-pos: 50% 17%;

  /* Nav logo */
  --nav-logo-height: 80px;

  /* Program section order */
  --order-classes: 0;
  --order-workshops: 1;
  --order-shows: 2;

  /* Hero copy */
  --hero-align: left;
  --hero-justify: flex-start;
  --hero-title-scale: 1;
  --hero-copy-scale: 1;
  --hero-copy-y: 0px;
  /* BIS-EDITOR:DESKTOP:END */

  --pad-x: clamp(24px, 5vw, 64px);
}

/* ---- Hero crops (mobile, <760px) — height-based sizes ----
   Tuned so the performers' faces sit in the UPPER portion of the hero,
   clear of the copy that overlays the bottom. Adjust per photo. */
@media (max-width: 760px) {
  :root {
    /* BIS-EDITOR:MOBILE:START */
    /* Hero copy (mobile) — photo crops now live in the desktop block as --mslideN */
    --hero-title-scale: 1.15;
    --hero-copy-scale: 0.95;
    --hero-copy-y: 78px;

    /* Nav logo (mobile) */
    --nav-logo-height-mobile: 74px;
    /* BIS-EDITOR:MOBILE:END */
  }
}

/* =====================================================================
   Base
   ===================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: Poppins, system-ui, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: #fff; text-decoration: none; }
a:hover { color: var(--pink); }

.red { color: var(--red); }

/* Line break shown only on mobile (e.g. before the Spanish half of a heading) */
.br-mobile { display: none; }
@media (max-width: 760px) { .br-mobile { display: inline; } }

:where(section, .hire) { scroll-margin-top: 20px; }

.link-underline {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid var(--red);
}
.link-underline:hover { color: #fff; }

/* =====================================================================
   Buttons / pills
   ===================================================================== */
.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn--red {
  background: var(--red);
  color: #fff;
  padding: 11px 24px;
  font-size: 14px;
}
.btn--red:hover { background: var(--red-hover); color: #fff; }

.btn--outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 26px;
  font-size: 14px;
}
.btn--outline:hover { border-color: var(--pink); color: var(--pink); }

.btn--white {
  background: #fff;
  color: var(--red);
  padding: 12px 26px;
  font-size: 14px;
}
.btn--white:hover { background: #111; color: #fff; }

/* Listing button — white pill on desktop, red pill on mobile */
.btn--listing {
  background: #fff;
  color: #111;
  padding: 12px 26px;
  font-size: 14px;
  justify-self: start;
}
.btn--listing:hover { background: var(--red); color: #fff; }

.btn--kit {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 9px 18px;
}
.btn--kit:hover { background: #fff; color: var(--red); }

/* =====================================================================
   Kickers
   ===================================================================== */
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.kicker--pink { color: var(--pink); }
.kicker--press { font-size: 13px; color: var(--pink-soft); margin-bottom: 30px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: var(--hero-brightness);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-repeat: no-repeat;
}
.hero__slide.is-active { opacity: 1; }
/* Per-slide crops are set inline in the template via --dslideN / --mslideN
   custom properties (owner-tunable in the Visual Editor). */

/* Two independent carousels: only the active device's photos + dots show.
   Desktop is the default; the 760px block swaps to the mobile set.
   The `.hero` prefix raises specificity above the base `.hero__dots{display:flex}`
   rule further down, which otherwise (equal specificity, later in the file) wins
   and leaves BOTH dot sets visible. */
.hero .hero__bg--mobile,
.hero .hero__dots--mobile { display: none; }
@media (max-width: 760px) {
  .hero .hero__bg--desktop,
  .hero .hero__dots--desktop { display: none; }
  .hero .hero__bg--mobile { display: block; }
  .hero .hero__dots--mobile { display: flex; }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(17,17,17,.45) 0%,
    rgba(17,17,17,.05) 45%,
    rgba(17,17,17,.55) 78%,
    rgba(17,17,17,.92) 100%);
}

/* Nav */
.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad-x);
  flex-wrap: wrap;
  gap: 16px;
}
.nav__logo { display: block; line-height: 0; }
.nav__logo img { height: var(--nav-logo-height, 80px); width: auto; }

.nav__links {
  display: flex;
  gap: clamp(16px, 2.5vw, 30px);
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}
.nav__signup { padding: 11px 24px; }
/* Mobile-only nav CTA (shown at the hamburger breakpoint, left of the toggle). */
.nav__signup-mobile { display: none; }

/* Hamburger (hidden ≥1000px) */
.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(17,17,17,.55);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile dropdown */
.mobile-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(17,17,17,.97);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px var(--pad-x);
  font-size: 16px;
  font-weight: 600;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__link {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__signup {
  margin: 16px 0 10px;
  padding: 13px 24px;
}

/* Hero copy */
.hero__copy {
  position: relative;
  margin-top: auto;
  padding: 40px var(--pad-x);
  max-width: 780px;
  text-align: var(--hero-align);
  /* Scale (text + buttons) and vertical nudge — tuned in the Visual Editor.
     Anchored bottom-left so shrinking reveals the photo above it. */
  transform: translateY(var(--hero-copy-y)) scale(var(--hero-copy-scale));
  transform-origin: bottom left;
}
.hero__title {
  margin: 0 0 12px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: calc(clamp(34px, 4.5vw, 52px) * var(--hero-title-scale));
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.hero__text {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #ddd;
  max-width: 52ch;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: var(--hero-justify); }
.hero__cta .btn--red { padding: 12px 26px; }

/* Carousel dots */
.hero__dots {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
  padding: 0 var(--pad-x) 26px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: rgba(255,255,255,.15);
  cursor: pointer;
  padding: 0;
}
.dot.is-active { background: #fff; }

/* =====================================================================
   AS SEEN ON
   ===================================================================== */
.press-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  flex-wrap: wrap;
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.press-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--red);
  text-transform: uppercase;
}
.press-strip__logo { display: block; }
.press-strip__logo img { width: auto; opacity: .9; display: block; }

/* =====================================================================
   BY THE NUMBERS
   ===================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
  padding: 56px var(--pad-x);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.stat__num {
  font-family: Anton, sans-serif;
  font-size: 46px;
  color: var(--red);
  line-height: 1;
}
.stat__label {
  font-size: 13.5px;
  color: #bbb;
  margin-top: 8px;
  line-height: 1.5;
}

/* =====================================================================
   PROGRAM SECTIONS (Classes / Workshops / Shows)
   ===================================================================== */
.programs { display: flex; flex-direction: column; }

.program--classes   { order: var(--order-classes); }
.program--workshops { order: var(--order-workshops); }
.program--shows     { order: var(--order-shows); }

.program {
  display: flex;
  flex-direction: column;
  padding: 72px var(--pad-x);
}
.program--bordered { border-top: 1px solid var(--border); }

.program__head {
  order: 0;
  margin: 0 0 6px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: .02em;
  text-transform: uppercase;
  text-align: left;
}
.program__sub {
  order: 1;
  font-size: 14.5px;
  color: #999;
  margin: 0 0 34px;
  text-align: left;
}
.program--workshops .program__sub,
.program--shows .program__sub { margin-bottom: 28px; }

.program__photos {
  order: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.program__photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* One shared column grid for all rows in a table, so the Level / details /
   blurb / when / button columns line up across every row (subgrid). */
.rows {
  order: 3;
  display: grid;
  grid-template-columns: 120px 1.4fr 1fr auto auto;
  column-gap: 24px;
}
.program__note {
  order: 3;
  margin: 26px 0 0;
  font-size: 14px;
  color: #999;
  text-align: left;
}

/* Listing row */
.row {
  display: grid;
  grid-template-columns: subgrid;   /* inherit the shared column tracks from .rows */
  grid-column: 1 / -1;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  text-align: left;
}
.row__level {
  font-family: Anton, sans-serif;
  font-size: 23px;
  color: var(--red);
  text-transform: uppercase;
}
.row__title { font-size: 20px; font-weight: 700; line-height: 1.25; }
.row__venue { font-size: 13.5px; color: #999; margin-top: 4px; }
.row__blurb { font-size: 14px; color: #bbb; line-height: 1.55; }
.row__when {
  font-size: 14.5px;
  font-weight: 600;
  color: #ddd;
  text-align: right;
  white-space: nowrap;
}

/* =====================================================================
   IN THE PRESS (red band)
   ===================================================================== */
.press {
  background: var(--red);
  padding: 72px var(--pad-x);
  text-align: left;
}
.press__feature {
  margin-bottom: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.press__feature-title {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}
.press__feature-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--pink-soft);
  margin: 0 0 24px;
  max-width: 70ch;
}
.press__stills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.press__stills a { display: block; }
.press__stills img { width: 100%; border-radius: 10px; display: block; }

.press__quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.press__quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}
.press__quote:hover { color: var(--pink-soft); }
.press__quote:hover .press__quote-outlet { color: var(--pink-soft); }
.press__quote-text { font-size: 17px; line-height: 1.55; font-weight: 500; }
.press__quote-outlet {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.press__kit {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.press__kit-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

/* =====================================================================
   HIRE US
   ===================================================================== */
.hire {
  margin: 0 var(--pad-x) 72px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: left;
}
.hire__title {
  margin: 0 0 12px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 34px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hire__intro {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #bbb;
}
.hire__offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}
.hire__offering { font-size: 14px; line-height: 1.65; color: #bbb; }
.hire__offering span {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hire__figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.hire__figures figure { margin: 0; }
.hire__figures img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.hire__figures figcaption {
  font-size: 12.5px;
  color: #999;
  margin-top: 8px;
  line-height: 1.5;
}
.hire__clients { font-size: 13.5px; line-height: 1.7; color: #999; margin: 0; }
.hire__cta {
  padding: 16px 34px;
  font-size: 15px;
  justify-self: start;
  /* The email address is one long unbreakable token — let it wrap inside the
     pill instead of forcing the whole section wider than the screen. */
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: 100%;
}
/* Grid children must be allowed to shrink below their content's min-width,
   otherwise a long token blows the track (and the page) out horizontally. */
.hire > *, .hire__offerings > *, .hire__figures > * { min-width: 0; }

/* =====================================================================
   ABOUT US
   ===================================================================== */
.about { padding: 72px var(--pad-x); text-align: left; }
.about__title {
  margin: 0 0 16px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.about__banner {
  width: 100%;
  /* Fixed-height crop viewport (owner-tunable in the Visual Editor).
     A taller --about-height reveals more of the photo vertically, so heads
     near the top aren't cut; --about-pos shifts the focal point. cover keeps
     it filled (never gaps) at any width. */
  height: var(--about-height, 380px);
  /* background-image is set inline in the template so it stays CMS-editable */
  background-size: cover;
  background-position: var(--about-pos, 50% 35%);
  background-repeat: no-repeat;
  border-radius: 12px;
  margin: 0 0 28px;
  display: block;
}
.about__school {
  margin: 0 0 44px;
  font-size: 16px;
  line-height: 1.75;
  color: #bbb;
}
.about__founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: center;
}
.about__headshot {
  width: 291px;
  height: 291px;
  border-radius: 50%;
  border: 4px solid var(--red);
  justify-self: start;
  align-self: center;
  /* background-image is set inline in the template so it is CMS-editable */
  background-size: var(--headshot-size);
  background-position: var(--headshot-pos);
  background-repeat: no-repeat;
}
.about__founder-title {
  margin: 0 0 14px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 34px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.about__bio-text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: #bbb;
  max-width: 68ch;
}
.about__quote {
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  font-size: 16.5px;
  line-height: 1.65;
  color: #ddd;
  font-style: italic;
  max-width: 60ch;
}
.about__closing {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #999;
  max-width: 68ch;
}

/* =====================================================================
   NEWSLETTER
   ===================================================================== */
.newsletter {
  padding: 56px var(--pad-x);
  border-top: 1px solid var(--border);
  background: #161616;
}
.newsletter__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter__title {
  margin: 0 0 10px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.newsletter__blurb { margin: 0 0 22px; color: #bbb; font-size: 15.5px; line-height: 1.6; }
.newsletter__form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter__input {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 15px;
}
.newsletter__input::placeholder { color: #777; }
.newsletter__input:focus { outline: none; border-color: var(--red); }
.newsletter__btn { border: 0; cursor: pointer; }
.newsletter__msg { margin: 16px 0 0; font-size: 14px; min-height: 1.2em; line-height: 1.5; }
.newsletter__msg.is-success { color: #6bd08b; }
.newsletter__msg.is-error { color: var(--pink); }
@media (max-width: 760px) {
  .newsletter__form { flex-direction: column; align-items: stretch; }
  /* In a column, flex-basis is the MAIN (vertical) size, so the base
     `flex: 1 1 280px` would make the input 280px tall. Reset to content height. */
  .newsletter__input { max-width: none; flex: 0 0 auto; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px var(--pad-x);
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: #999;
}
.footer__links { display: flex; gap: 24px; font-weight: 600; }

/* =====================================================================
   BREAKPOINT: 1000px — nav switches to hamburger
   ===================================================================== */
@media (max-width: 999.98px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  /* margin-left:auto pushes the CTA + hamburger together to the right,
     leaving the logo on the left. */
  .nav__signup-mobile { display: inline-block; margin-left: auto; }
}

/* =====================================================================
   BREAKPOINT: 760px — mobile layout
   (single-column rows, centered text, single photos, red CTAs, 72vh hero)
   ===================================================================== */
@media (max-width: 760px) {
  .hero { min-height: 72vh; }

  /* Fit the logo + Newsletter CTA + hamburger on one row on phones. */
  .nav { gap: 12px; }
  .nav__logo img { height: var(--nav-logo-height-mobile, 64px); }
  .nav__signup-mobile { padding: 9px 16px; font-size: 13px; }

  /* Take the logo out of flow so its height can't stretch the nav row — the
     CTA + hamburger keep a fixed vertical position regardless of logo size.
     The logo scales around the nav's vertical center. */
  .nav__logo {
    position: absolute;
    left: var(--pad-x);
    top: 50%;
    transform: translateY(-50%);
  }

  /* Program sections: header → image → subheader → rows */
  .program__head { text-align: center; font-size: 38px; }
  .program__sub { order: 2; text-align: center; font-size: 16.5px; }
  .program__photos { order: 1; grid-template-columns: 1fr; }
  .program__note { text-align: center; }

  /* Only the designated mobile image shows */
  .desktop-only-img { display: none; }

  /* Rows collapse to a centered single column */
  .rows { grid-template-columns: 1fr; }
  .row {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 10px 24px;
    text-align: center;
  }
  .row__when { text-align: center; }

  /* Listing buttons become centered red pills */
  .btn--listing {
    background: var(--red);
    color: #fff;
    font-size: 16px;
    padding: 16px 48px;
    justify-self: center;
  }
  .btn--listing:hover { background: var(--red-hover); color: #fff; }

  /* Press band centered */
  .press { text-align: center; }
  .press__kit { justify-content: center; }

  /* Hire us centered */
  .hire { text-align: center; }
  .hire__figures { grid-template-columns: 1fr; }
  .hire__cta { justify-self: center; }

  /* About centered, headshot centered, quote borderless */
  .about { text-align: center; }
  .about__banner { height: 260px; }
  .about__founder { grid-template-columns: 1fr; }
  .about__headshot { justify-self: center; }
  .about__quote {
    padding-left: 0;
    border-left: none;
    max-width: none;
  }
  .about__bio-text, .about__closing { max-width: none; }

  /* Classes banner is shorter on mobile */
  .program--classes .program__photo { height: 240px; }
}

/* Reduced motion — pause crossfade transition */
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
  html { scroll-behavior: auto; }
}
