/* =========================================================
   Chool Bus — production stylesheet
   Palette, type and the "cloud" component are shared across
   every page. See inbox/v1-reference for the rejected v1.0
   and the audit that drove these decisions.
   ========================================================= */

:root{
  --orange:#F45D24;
  --purple:#7F3DE7;
  --pink:#F8266F;
  --yellow:#FDBF38;
  --blue:#3E75F9;
  --cream:#FFF9F1;
  --charcoal:#242124;
  --white:#FFFFFF;
  --gray-light:#F1EFEC;

  --font-display:'Baloo 2', 'Arial Black', sans-serif;
  --font-body:'Nunito Sans', Arial, sans-serif;

  --container:1160px;
  --radius-pill:999px;
}

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

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--gray-light);
  color:var(--charcoal);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

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

a{ color:inherit; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  margin:0;
  line-height:1.12;
}

p{ margin:0; }

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

:focus-visible{
  outline:3px solid var(--blue);
  outline-offset:3px;
  border-radius:4px;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:var(--charcoal);
  color:var(--cream);
  padding:12px 20px;
  z-index:100;
  border-radius:0 0 10px 0;
  font-family:var(--font-body);
  font-weight:700;
}
.skip-link:focus{ left:0; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  padding:15px 28px;
  border-radius:var(--radius-pill);
  text-decoration:none;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-orange{ background:var(--orange); color:var(--white); }
.btn-purple{ background:var(--purple); color:var(--white); }
.btn-yellow{ background:var(--yellow); color:var(--charcoal); }
.btn-outline{
  background:transparent;
  border-color:currentColor;
  color:var(--charcoal);
}
.btn-ghost-onclr{
  background:rgba(255,255,255,.2);
  color:var(--white);
  border-color:rgba(255,255,255,.55);
}
.btn-sm{ padding:9px 20px; font-size:16px; }
.cloud-card-cta{ display:block; width:max-content; margin:14px auto 0; }

/* ---------------------------------------------------------
   Nav
   --------------------------------------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--gray-light);
  border-bottom:1px solid rgba(36,33,36,0);
  transition:background-color .25s ease, backdrop-filter .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled{
  background:rgba(241,239,236,.68);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid rgba(36,33,36,.08);
  box-shadow:0 6px 24px rgba(36,33,36,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 24px;
  max-width:var(--container);
  margin:0 auto;
  gap:20px;
}
.nav-logo img{ height:65px; width:194px; }
.nav-right{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:17px;
}
.nav-links a{ text-decoration:none; }
.nav-links a:hover{ color:var(--orange); }
.nav-links li.nav-cta{ display:none; }
.nav-cta{ flex-shrink:0; }
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width:900px){
  .nav-links{
    position:fixed;
    inset:64px 0 0 0;
    background:var(--gray-light);
    flex-direction:column;
    align-items:flex-start;
    padding:28px 24px;
    gap:22px;
    font-size:20px;
    transform:translateX(100%);
    transition:transform .25s ease;
    overflow-y:auto;
  }
  .nav-links.is-open{ transform:translateX(0); }
  .nav-toggle{ display:block; }
  .nav-cta.desktop-only{ display:none; }
  .nav-links li.nav-cta{ display:block; margin-top:8px; }
}

/* ---------------------------------------------------------
   Section rhythm
   --------------------------------------------------------- */
.section{ position:relative; padding:64px 0; overflow:hidden; }
.section-tight{ padding:44px 0; }
.section-light{ background:var(--gray-light); }
.is-home .section-light{
  background-image:url(../assets/photos/general-background.png);
  background-repeat:repeat;
  background-position:top center;
}
.section-strong-purple{ background:var(--purple); color:var(--white); }
.section-strong-orange{ background:var(--orange); color:var(--white); }

.eyebrow{
  font-family:var(--font-display);
  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;
  color:var(--orange);
  margin-bottom:12px;
  display:block;
}
.section-strong-purple .eyebrow,
.section-strong-orange .eyebrow{ color:var(--white); }

.section-heading{
  font-size:clamp(28px,4vw,42px);
  max-width:680px;
  margin-bottom:16px;
}
.section-sub{
  font-size:18px;
  max-width:560px;
  color:var(--charcoal);
  opacity:.8;
}
.section-strong-purple .section-sub,
.section-strong-orange .section-sub{ color:var(--white); opacity:.92; }

.centered-header{ text-align:center; max-width:680px; margin:0 auto 32px; }
.centered-header .eyebrow{ text-align:center; }
.centered-header .section-heading{ margin-left:auto; margin-right:auto; }

/* ---------------------------------------------------------
   Cloud parallax decoration (full-bleed section background)
   --------------------------------------------------------- */
.cloud-deco{
  position:absolute;
  z-index:0;
  pointer-events:none;
  will-change:transform;
}
.cloud-deco img{ width:100%; height:auto; display:block; }
.section > .container{ position:relative; z-index:1; }

/* ---------------------------------------------------------
   Cloud card — the standard content container (replaces
   white rounded-rectangle cards everywhere on the site)
   --------------------------------------------------------- */
.cloud-card{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:37px 0;
  transition:transform .25s ease;
}
.cloud-card:hover{ transform:rotate(-3deg) scale(1.03); }
.cloud-grid > div:nth-child(2) .cloud-card:hover{ transform:rotate(3deg) scale(1.03); }
.cloud-grid > div:nth-child(3) .cloud-card:hover{ transform:rotate(-2.5deg) scale(1.03); }
@media (prefers-reduced-motion: reduce){
  .cloud-card:hover{ transform:none; }
}
.cloud-card img.cloud-shape{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  z-index:0;
}
.cloud-card-deco{ position:absolute; z-index:0; pointer-events:none; }
.cloud-card-deco img{ width:100%; height:auto; display:block; }
.cloud-card-content{
  position:relative;
  z-index:1;
  margin:auto;
  width:60%;
  text-align:center;
  color:var(--charcoal);
}
.cloud-card-content .kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px; height:26px;
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,.25);
  font-family:var(--font-display);
  font-weight:800;
  font-size:12px;
  margin-bottom:6px;
}
.cloud-card-content h3{
  font-size:24px; /* bold >=18.66px clears WCAG "large text" -> 3:1 applies across orange/purple/pink/blue nuvem fills */
  line-height:1.18;
}
.cloud-card-icon{
  width:26px;
  height:26px;
  margin:8px auto 0;
  opacity:.9;
}
.cloud-card-caption{
  font-size:15px;
  line-height:1.5;
  color:var(--charcoal);
  opacity:.82;
  text-align:center;
  max-width:290px;
  margin:14px auto 0;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  padding-top:350px;
  padding-bottom:350px;
  background-image:url(../assets/photos/general-background.png);
  background-repeat:repeat;
  background-position:top center;
}
.hero-copy{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

/* ---------------------------------------------------------
   Hero marquee
   --------------------------------------------------------- */
.hero-marquee{
  background:var(--charcoal);
  overflow:hidden;
}
.hero-marquee-track{
  display:flex;
  width:max-content;
  animation:hero-marquee-scroll 45s linear infinite;
}
.hero-marquee-group{ display:flex; flex-shrink:0; }
.hero-marquee-group span{
  display:inline-block;
  white-space:nowrap;
  color:var(--white);
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  letter-spacing:.04em;
  padding:16px 28px;
}
@keyframes hero-marquee-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .hero-marquee-track{ animation:none; }
}
.hero-logo{
  width:min(975.15px, 92vw);
  max-width:none;
  height:auto;
  display:block;
  margin:10px 0 4px;
  position:relative;
  left:50%;
  transform:translateX(-50%);
}
.hero-tagline{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(32px,5vw,50px);
  line-height:1.08;
  letter-spacing:.03em;
  color:var(--purple);
  margin-bottom:16px;
}
.hero-copy h1{
  font-size:clamp(18px,2.4vw,24px);
  font-weight:700;
  line-height:1.3;
  margin-bottom:16px;
}
.hero-copy h1 em{
  font-style:normal;
  color:var(--orange);
}
.hero-sub{
  font-size:18px;
  max-width:580px;
  margin:0 auto 22px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:24px;
}
.hero-badge{
  background:var(--white);
  border:1px solid rgba(36,33,36,.12);
  border-radius:var(--radius-pill);
  padding:8px 16px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:13px;
}
.hero-badge.is-national{ background:var(--purple); color:var(--white); border-color:transparent; }
.hero-ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.hero-stage{
  position:relative;
  max-width:980px;
  height:500px;
  margin:8px auto 40px;
}
.hero-stage .cloud-deco{ z-index:1; }
.hero-burst{ position:absolute; z-index:3; }
.hero-burst svg{ width:100%; height:100%; }
.hero-photo{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  max-height:97%;
  max-width:100%;
  width:auto;
  height:auto;
  z-index:4;
  filter:drop-shadow(0 16px 28px rgba(36,33,36,.22));
}

@media (max-width:720px){
  .hero-stage{ height:420px; }
}

/* ---------------------------------------------------------
   Problems / Programs grids
   --------------------------------------------------------- */
.cloud-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px 28px;
  margin-top:12px;
}
@media (max-width:860px){
  .cloud-grid{ grid-template-columns:1fr; max-width:360px; margin-inline:auto; }
}

.problems-header{ text-align:center; max-width:680px; margin:0 auto 40px; }
.problems-header .eyebrow{ text-align:center; }

.problems-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.problems-list{ display:flex; flex-direction:column; gap:24px; }
.problem-item{ display:flex; align-items:flex-start; gap:14px; }
.problem-bullet{ width:36px; height:auto; flex-shrink:0; margin-top:3px; }
.problem-item p{ font-size:15.5px; line-height:1.55; margin:0; }
.problem-item strong{
  font-family:var(--font-display);
  display:block;
  margin-bottom:3px;
  font-size:16px;
}
.problems-photo{ aspect-ratio:1/1; border-radius:28px; overflow:hidden; }
.problems-photo img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:860px){
  .problems-split{ grid-template-columns:1fr; }
  .problems-photo{ max-width:320px; margin:0 auto 8px; order:-1; }
}

/* ---------------------------------------------------------
   Strong quote section (How She Teaches)
   --------------------------------------------------------- */
.quote-block{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.quote-block blockquote{
  font-family:var(--font-display);
  font-size:clamp(24px,3.4vw,32px);
  line-height:1.3;
  margin:0 0 18px;
}
.quote-block .by{
  font-weight:700;
  margin-bottom:26px;
}

/* Philosophy section: figure occupies the left 50%, content the right 50% */
.philosophy-section{ padding-bottom:0; }
.philosophy-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  gap:24px;
  position:relative;
  z-index:2;
}
.philosophy-figure-col{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.philosophy-blob{
  position:absolute;
  width:80%;
  left:50%;
  bottom:64px;
  transform:translateX(-50%);
  z-index:0;
  pointer-events:none;
}
.philosophy-figure{
  position:relative;
  z-index:1;
  height:clamp(300px,37vw,530px);
  width:auto;
  transform:scaleX(-1);
  pointer-events:none;
}
.philosophy-content-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.philosophy-content.quote-block{
  max-width:520px;
  margin:0;
  text-align:left;
}
@media (max-width:860px){
  .philosophy-grid{ grid-template-columns:1fr; }
  .philosophy-content-wrap{ order:1; justify-content:center; }
  .philosophy-figure-col{ order:2; margin-top:8px; }
  .philosophy-content.quote-block{ max-width:100%; text-align:center; }
  .philosophy-figure{ height:auto; width:min(78%,300px); }
}

/* ---------------------------------------------------------
   Bio (Meet Ms. Remi)
   --------------------------------------------------------- */
.bio{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.bio-media{ position:relative; }
.bio-media img:not(.bio-blob){ position:relative; z-index:1; border-radius:28px; width:100%; height:540px; object-fit:contain; display:block; }
.bio-blob{
  position:absolute;
  z-index:0;
  width:78%;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}
@media (max-width:900px){ .bio-media img:not(.bio-blob){ height:auto; max-height:520px; object-fit:contain; margin:0 auto; } }
.bio-credentials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0;
}
.bio-credential{
  background:var(--white);
  border:2px solid var(--purple);
  border-radius:16px;
  padding:10px 16px;
  font-size:13.5px;
}
.bio-credential strong{ display:block; font-family:var(--font-display); font-size:14px; }
.bio-quote{
  background:var(--purple);
  color:var(--white);
  border-radius:24px;
  padding:26px 28px;
  font-family:var(--font-display);
  font-size:19px;
  line-height:1.35;
  margin-top:18px;
}
@media (max-width:900px){
  .bio{ grid-template-columns:1fr; }
}

/* ---------------------------------------------------------
   Video testimonial carousel
   --------------------------------------------------------- */
.proof-grid-top{
  display:grid;
  grid-template-columns:1fr 2fr 1fr;
  gap:20px;
  margin-top:24px;
  align-items:start;
}
.proof-grid-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:20px;
}
@media (max-width:720px){
  .proof-grid-top{ grid-template-columns:1fr 1fr; }
  .proof-grid-top .video-card:nth-child(2){ grid-column:1 / -1; }
  .proof-grid-bottom{ grid-template-columns:1fr; }
}

.video-card{
  position:relative;
  width:100%;
  aspect-ratio:9/16;
  border-radius:22px;
  overflow:hidden;
  background:var(--charcoal);
}
.video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  cursor:pointer;
}
.video-card .play-btn{
  position:absolute;
  inset:0;
  margin:auto;
  width:56px; height:56px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.video-card .play-btn svg{ width:22px; height:22px; margin-left:3px; }
.video-card.is-playing .play-btn{ display:none; }

/* ---------------------------------------------------------
   Where sessions happen
   --------------------------------------------------------- */
.location-block{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:44px;
  align-items:center;
}
.location-block img.location-photo{ border-radius:26px; width:100%; }
.location-list{ list-style:none; margin:18px 0 26px; padding:0; }
.location-list li{
  padding-left:26px;
  position:relative;
  margin-bottom:10px;
  font-size:15.5px;
}
.location-list li::before{
  content:"";
  position:absolute;
  left:0; top:8px;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--orange);
}
@media (max-width:900px){
  .location-block{ grid-template-columns:1fr; }
}

/* ---------------------------------------------------------
   Final CTA
   --------------------------------------------------------- */
.final-cta-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.final-cta-inner{ text-align:left; }
.final-cta-inner h2{ font-size:clamp(26px,4vw,38px); margin-bottom:14px; }
.final-cta-inner p{ font-size:19px; font-weight:700; margin-bottom:28px; }
.final-cta-ctas{ display:flex; gap:14px; justify-content:flex-start; flex-wrap:wrap; }
.final-cta-photo{
  border-radius:28px;
  overflow:hidden;
}
.final-cta-photo img{
  width:100%;
  height:auto;
  display:block;
}
@media (max-width:860px){
  .final-cta-split{ grid-template-columns:1fr; }
  .final-cta-inner{ text-align:center; }
  .final-cta-ctas{ justify-content:center; }
  .final-cta-photo{ max-width:420px; margin:0 auto; }
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer{
  background:var(--charcoal);
  color:var(--cream);
  padding:64px 0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,249,241,.14);
}
.footer-brand img{ height:60px; width:176px; margin-bottom:14px; }
.footer-brand p{ font-size:14.5px; opacity:.75; max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,249,241,.1);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
}
.footer-social a:hover{ background:var(--orange); }
.footer-col h4{
  font-family:var(--font-display);
  font-size:15px;
  color:var(--yellow);
  margin-bottom:16px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin-bottom:11px; }
.footer-col a{ text-decoration:none; font-size:14.5px; opacity:.88; }
.footer-col a:hover{ opacity:1; color:var(--orange); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding-top:22px;
  font-size:13px;
  opacity:.7;
}
.footer-bottom a{ text-decoration:underline; }
@media (max-width:860px){
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-top{ grid-template-columns:1fr; }
}

/* ---------------------------------------------------------
   Simple content pages (Privacy / Terms)
   --------------------------------------------------------- */
.legal-page{ padding:56px 0 80px; }
.legal-page h1{ font-size:clamp(30px,4vw,42px); margin-bottom:10px; }
.legal-page .updated{ opacity:.65; font-size:14px; margin-bottom:34px; display:block; }
.legal-page h2{ font-size:22px; margin:36px 0 12px; }
.legal-page p, .legal-page li{ font-size:16px; line-height:1.7; margin-bottom:14px; }
.legal-page ul{ padding-left:22px; }
.legal-notice{
  background:var(--yellow);
  color:var(--charcoal);
  border-radius:18px;
  padding:18px 22px;
  font-size:15px;
  font-weight:700;
  margin-bottom:34px;
}

/* ---------------------------------------------------------
   Back to top
   --------------------------------------------------------- */
.back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(36,33,36,.22);
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, background-color .15s ease;
}
.back-to-top.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.back-to-top:hover{ background:var(--purple); }
.back-to-top svg{ width:20px; height:20px; }

/* ---------------------------------------------------------
   Simple page hero (About / Contact / Book)
   --------------------------------------------------------- */
.page-hero{ padding:48px 0 8px; text-align:center; }
.page-hero .eyebrow{ justify-content:center; display:flex; }
.page-hero h1{ font-size:clamp(30px,4.5vw,48px); max-width:760px; margin:0 auto 14px; }
.page-hero p{ max-width:600px; margin:0 auto; font-size:17px; opacity:.85; }

/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */
.form-card{
  background:var(--white);
  border-radius:28px;
  padding:36px;
  box-shadow:0 10px 40px rgba(36,33,36,.08);
}
.form-row{ margin-bottom:20px; }
.form-row label{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:14.5px;
  margin-bottom:7px;
}
.form-row .req{ color:var(--pink); }
.form-row .hint{ font-weight:400; font-size:13px; opacity:.65; display:block; margin-top:4px; }
.form-row .hint.inline{ display:inline; margin-top:0; margin-right:5px; }
.form-grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-grid-2{ grid-template-columns:1fr; } }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea{
  width:100%;
  font-family:var(--font-body);
  font-size:15.5px;
  padding:12px 14px;
  border:2px solid rgba(36,33,36,.15);
  border-radius:12px;
  background:var(--gray-light);
  color:var(--charcoal);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color:var(--purple);
  outline:none;
}
.form-row textarea{ resize:vertical; min-height:110px; }

.option-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px,1fr));
  gap:10px;
}
.option-card{
  display:flex;
  align-items:center;
  gap:10px;
  border:2px solid rgba(36,33,36,.15);
  border-radius:12px;
  padding:12px 14px;
  font-size:14.5px;
  cursor:pointer;
}
.option-card:has(input:checked){
  border-color:var(--purple);
  background:rgba(127,61,231,.07);
}
.option-card input{ accent-color:var(--purple); width:17px; height:17px; flex-shrink:0; }

.form-submit-note{
  font-size:13px;
  opacity:.6;
  margin-top:14px;
}
.form-submit-note code{
  background:rgba(36,33,36,.08);
  padding:1px 5px;
  border-radius:4px;
  font-size:12px;
}
.form-error{
  display:none;
  color:var(--pink);
  font-weight:700;
  font-size:14px;
  margin-top:12px;
}
.form-error.is-visible{ display:block; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; }
.form-success{
  display:none;
  background:var(--purple);
  color:#fff;
  border-radius:20px;
  padding:26px;
  text-align:center;
  font-family:var(--font-display);
  font-size:18px;
}
.form-success.is-visible{ display:block; }
.form-card.is-submitted form{ display:none; }

/* ---------------------------------------------------------
   Contact page: info cards + map
   --------------------------------------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:start;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{
  position:relative;
  background:var(--blue);
  color:#fff;
  border-radius:24px;
  padding:30px;
  margin-bottom:20px;
}
.contact-info-content{
  position:relative;
  z-index:1;
}
.contact-info-card a{ color:#fff; }
.contact-info-card .row{ display:flex; align-items:center; gap:12px; margin-bottom:14px; font-weight:700; }
.contact-info-card .row:last-child{ margin-bottom:0; }
@media (max-width:520px){
  .contact-info-content{ width:74%; }
  .contact-info-card .row{ gap:8px; font-size:13px; margin-bottom:10px; }
}
.map-embed{
  border-radius:24px;
  overflow:hidden;
  border:none;
  width:100%;
  height:320px;
  display:block;
}

/* ---------------------------------------------------------
   About page extras
   --------------------------------------------------------- */
.timeline{ display:flex; flex-direction:column; gap:22px; margin-top:10px; }
.timeline-item{ display:flex; gap:18px; align-items:flex-start; }
.timeline-dot{
  width:14px; height:14px; border-radius:50%;
  background:var(--orange); margin-top:6px; flex-shrink:0;
}
.timeline-item h3{ font-size:17px; margin-bottom:4px; }
.timeline-item p{ font-size:15px; opacity:.8; }

.timeline-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.timeline-split + .timeline-split{ margin-top:40px; }
.timeline-half{ display:flex; flex-direction:column; gap:22px; }
.timeline-photo{
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:4/3;
}
.timeline-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:860px){
  .timeline-split{ grid-template-columns:1fr; }
  .timeline-split-reverse .timeline-photo{ order:-1; }
}

/* ---------------------------------------------------------
   Programs page: hero
   --------------------------------------------------------- */
.prog-hero{ padding-top:56px; }
.prog-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:center;
  position:relative;
  z-index:1;
}
.prog-hero-photo{ aspect-ratio:1/1; border-radius:32px; overflow:hidden; }
.prog-hero-photo img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:860px){
  .prog-hero-grid{ grid-template-columns:1fr; }
  .prog-hero-copy{ text-align:center; }
  .prog-hero-copy .eyebrow{ text-align:center; }
  .prog-hero-copy .section-heading, .prog-hero-copy .section-sub{ margin-left:auto; margin-right:auto; }
  .prog-hero-copy .hero-ctas{ justify-content:center !important; }
  .prog-hero-photo{ max-width:340px; margin:0 auto; order:-1; }
}

/* ---------------------------------------------------------
   Programs page: reviews
   --------------------------------------------------------- */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:32px;
}
.review-card{
  position:relative;
  background:var(--white);
  border-radius:24px;
  padding:34px 26px 26px;
  box-shadow:0 10px 34px rgba(36,33,36,.07);
  transition:transform .25s ease;
}
.review-card:hover{ transform:rotate(-2.5deg) scale(1.03); }
.reviews-grid > .review-card:nth-child(2):hover{ transform:rotate(2.5deg) scale(1.03); }
.reviews-grid > .review-card:nth-child(3):hover{ transform:rotate(-2deg) scale(1.03); }
@media (prefers-reduced-motion: reduce){
  .review-card:hover{ transform:none; }
}
.review-badge{
  position:absolute;
  top:-16px;
  left:24px;
  width:46px;
  height:auto;
}
.review-stars{
  color:var(--orange);
  font-size:22px;
  letter-spacing:3px;
  margin:8px 0 14px;
}
.review-card blockquote{
  font-size:14.5px;
  line-height:1.62;
  color:var(--charcoal);
  margin:0 0 16px;
}
.review-name{ font-family:var(--font-display); font-weight:700; font-size:14.5px; }
@media (max-width:860px){
  .reviews-grid{ grid-template-columns:1fr; max-width:400px; margin-inline:auto; }
}

/* ---------------------------------------------------------
   Programs page: FAQ
   --------------------------------------------------------- */
.faq-split{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:48px;
  align-items:end;
  position:relative;
  z-index:1;
}
.faq-photo{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-height:clamp(280px,32vw,460px);
}
.faq-blob{
  position:absolute;
  width:96%;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  z-index:0;
  pointer-events:none;
}
.faq-figure{
  position:relative;
  z-index:1;
  height:clamp(336px,38.4vw,552px);
  width:auto;
  bottom:-64px;
}
.faq-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.25);
  border-radius:16px;
  padding:16px 20px;
  margin-bottom:12px;
  color:#fff;
}
.faq-item summary{
  cursor:pointer;
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  font-size:22px;
  line-height:1;
  flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{
  font-size:14.5px;
  line-height:1.6;
  color:#fff;
  opacity:.92;
  margin-top:10px;
}
@media (max-width:860px){
  .faq-split{ grid-template-columns:1fr; }
  .faq-photo{ max-width:320px; margin:0 auto 8px; }
  .faq-list .eyebrow, .faq-list .section-heading{ text-align:center; }
}
