:root{
  --ink:#1b1a18;
  --paper:#f2efe8;
  --white:#fbfaf7;
  --muted:#706b63;
  --line:rgba(27,26,24,.14);
  --accent:#b89b69;
  --lime:#c3aa78;
  --violet:#d7d1c7;
  --coral:#c9b7aa;
  --blue:#c8cdca;
  --ease:cubic-bezier(.32,.72,0,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Manrope",sans-serif;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
button,input,select{font:inherit}
a,button,summary,input,select{outline-color:var(--accent)}
.skip{
  position:fixed;
  left:16px;
  top:-64px;
  z-index:100;
  padding:8px 12px;
  color:var(--white);
  background:var(--ink);
  border-radius:8px;
  text-decoration:none;
}
.skip:focus{top:16px}
.section-pad{padding:96px 48px}
.section-kicker{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:14px;
  line-height:20px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.section-kicker span{color:var(--muted)}
.section-kicker.light,.section-kicker.light span{color:rgba(255,255,255,.68)}

.site-header{
  position:fixed;
  z-index:60;
  top:24px;
  left:32px;
  right:32px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  transition:transform .7s var(--ease),opacity .7s var(--ease);
}
.site-header.is-hidden{transform:translateY(-128px);opacity:0}
.brand{
  display:flex;
  align-items:flex-start;
  width:max-content;
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
}
.brand span{font-size:30px;line-height:36px;letter-spacing:-.06em}
.brand small{font-size:12px;line-height:16px;margin:2px 0 0 4px}
.nav-pill{
  display:flex;
  position:relative;
  gap:4px;
  padding:4px;
  background:rgba(255,255,255,.76);
  box-shadow:0 16px 40px rgba(24,24,24,.09);
  backdrop-filter:blur(20px);
  border:1px solid rgba(24,24,24,.08);
  border-radius:999px;
}
.nav-pill a{
  position:relative;
  z-index:1;
  color:var(--ink);
  font-size:14px;
  line-height:20px;
  font-weight:600;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  transition:background .7s var(--ease),transform .7s var(--ease);
}
.nav-slider{position:absolute;z-index:0;top:4px;bottom:4px;left:4px;width:0;border-radius:999px;background:var(--white);box-shadow:0 6px 16px rgba(24,24,24,.08);transition:left .7s var(--ease),width .7s var(--ease)}
.nav-pill a:hover,.nav-pill a.is-active{background:transparent}
.nav-pill a:active{transform:scale(.98)}
.nav-pill a:focus-visible,.header-cta:focus-visible,.primary-button:focus-visible,.menu-button:focus-visible,.submit-button:focus-visible{outline:3px solid var(--accent);outline-offset:4px}
.header-cta{
  justify-self:end;
  color:var(--paper);
  background:var(--ink);
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  line-height:20px;
  font-weight:600;
  text-decoration:none;
  transition:transform .7s var(--ease),background .7s var(--ease);
}
.header-cta:hover{transform:translateY(-2px);background:#313131}
.header-cta:active{transform:scale(.98)}
.menu-button{display:none}
.mobile-menu{display:none}

.hero{
  min-height:100svh;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:96px 24px 80px;
  text-align:center;
  isolation:isolate;
}
.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(64px);
  z-index:-1;
  opacity:.28;
}
.orb-one{width:320px;height:320px;background:#d4c7a8;left:34%;top:28%}
.orb-two{width:280px;height:280px;background:#d2c1b8;right:31%;top:48%}
.eyebrow{
  width:100%;
  font-size:14px;
  line-height:20px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin:0 0 24px;
}
.hero-title{
  width:100%;
  font-size:96px;
  line-height:1;
  letter-spacing:-.06em;
  max-width:980px;
  margin:0;
  background:none;
  color:var(--ink);
  text-wrap:balance;
  font-weight:500;
}
.hero-title .char{
  background:none;
  color:var(--ink);
  -webkit-text-fill-color:var(--ink);
}
.char{
  display:inline-block;
  opacity:0;
  filter:blur(12px);
  transform:translateY(48px);
  transition:opacity 1s var(--ease),filter 1s var(--ease),transform 1s var(--ease);
}
.split-word{display:inline-block;white-space:nowrap}
.split-title.is-visible .char{opacity:1;filter:blur(0);transform:translateY(0)}
.hero-copy{
  width:100%;
  font-size:18px;
  line-height:28px;
  max-width:680px;
  margin:32px 0 24px;
  text-wrap:pretty;
}
.primary-button{
  display:inline-flex;
  align-items:center;
  gap:0;
  background:var(--ink);
  color:var(--white);
  text-decoration:none;
  font-size:16px;
  line-height:24px;
  font-weight:600;
  padding:12px 16px;
  border-radius:999px;
  transition:transform .7s var(--ease),background .7s var(--ease);
  max-width:100%;
}
.primary-button:hover{transform:translateY(-3px);background:#313131}
.primary-button:active{transform:scale(.98)}
.proof{width:100%;font-size:14px;line-height:20px;margin:24px 0 0;color:#5f5d58;display:flex;justify-content:center;gap:16px;flex-wrap:wrap}
.proof span{white-space:nowrap}
.proof strong{color:var(--ink)}

.reveal{
  opacity:0;
  filter:blur(12px);
  transform:translateY(48px);
  transition:opacity 1s var(--ease),filter 1s var(--ease),transform 1s var(--ease);
}
.reveal.is-visible{opacity:1;filter:blur(0);transform:translateY(0)}

.gallery{
  width:110vw;
  margin-left:-5vw;
  padding:80px 0 128px;
  overflow:hidden;
  transform:rotate(-3deg);
  background:var(--ink);
}
.carousel-track{
  display:flex;
  width:max-content;
  will-change:transform;
  animation:marquee 34s linear infinite;
}
.carousel-group{display:flex;gap:24px;padding-right:24px}
.visual-card{
  width:360px;
  height:500px;
  flex:none;
  border-radius:16px;
  transform:translateZ(0);
  overflow:hidden;
  position:relative;
  margin:0;
  background:#d9d5cc;
}
.visual-card img{display:block;width:100%;height:100%;object-fit:cover}
.card-lime,.tone-lime{background:var(--lime)}
.card-violet,.tone-violet{background:var(--violet)}
.card-coral,.tone-coral{background:var(--coral)}
.card-blue,.tone-blue{background:var(--blue)}
.card-cream{background:#eee8dc}
@keyframes marquee{to{transform:translate3d(-50%,0,0)}}

.about{background:var(--paper)}
.about-title{
  max-width:1240px;
  margin:0 0 80px;
  font-size:72px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:500;
  text-wrap:balance;
}
.about-grid{display:grid;grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);gap:64px;align-items:center}
.about-visual{
  position:relative;
  width:100%;
  max-width:480px;
  min-height:0;
  aspect-ratio:2 / 3;
  overflow:visible;
  border-radius:16px;
}
.about-visual img{display:block;width:100%;height:100%;object-fit:cover;border-radius:16px}
.sun-mark{
  position:absolute;
  z-index:3;
  left:-48px;
  top:-64px;
  font-size:128px;
  line-height:1;
  color:var(--ink);
  animation:spin 18s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.about-copy{padding:0 0 24px}
.about-copy p{font-size:18px;line-height:28px;color:#4f4d48;text-wrap:pretty}
.about-copy .lead{font-size:24px;line-height:32px;color:var(--ink);margin-top:0}
.stat-row{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:48px}
.stat-row div{padding:24px;background:var(--white);border-radius:16px}
.stat-row strong{display:block;font-size:30px;line-height:36px;font-weight:600}
.stat-row span{display:block;font-size:14px;line-height:20px;color:var(--muted);margin-top:8px}

.subjects{overflow:hidden;background:#d8d2c8;transform:rotate(1deg);width:102vw;margin-left:-1vw}
.subject-track{display:flex;width:max-content;animation:subjects 30s linear infinite;will-change:transform}
.subject-group{display:flex;align-items:center;gap:32px;padding:24px 32px 24px 0}
.subject-group span{font-size:30px;line-height:36px;white-space:nowrap;font-weight:500}
.subject-group b{font-size:20px;line-height:28px;font-weight:400}
@keyframes subjects{to{transform:translate3d(-50%,0,0)}}

.teachers{background:var(--ink);color:var(--white)}
.teachers-heading{padding-bottom:48px}
.teachers-title{
  max-width:1080px;
  margin:0 0 24px;
  font-size:96px;
  line-height:1;
  letter-spacing:-.06em;
  font-weight:500;
  color:var(--white);
  text-wrap:balance;
}
.teachers-intro{max-width:680px;font-size:18px;line-height:28px;color:rgba(255,255,255,.64);text-wrap:pretty}
.teacher-stage{
  min-height:92svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.72fr) minmax(0,1fr);
  gap:48px;
  align-items:center;
  padding:80px 48px;
  overflow:hidden;
}
.teacher-media{
  width:100%;
  height:min(70svh,720px);
  border-radius:24px;
  margin:0;
  background:#272727;
  position:relative;
  overflow:hidden;
  transition:transform 1.2s var(--ease),opacity 1.2s var(--ease),filter 1.2s var(--ease);
  will-change:transform;
}
.teacher-media img{display:block;width:100%;height:100%;object-fit:cover;object-position:center center}
.teacher-timur-left img{transform:scale(1.05);transform-origin:center 30%;object-position:center 18%}
.teacher-timur-right img{transform:scale(1.05);transform-origin:center 32%;object-position:center 20%}
.teacher-left{transform:translateX(52%) rotate(-3deg)}
.teacher-right{transform:translateX(-52%) rotate(3deg)}
.teacher-stage.is-active .teacher-left{transform:translateX(0) rotate(-2deg)}
.teacher-stage.is-active .teacher-right{transform:translateX(0) rotate(2deg)}
.teacher-info{
  position:relative;
  z-index:3;
  text-align:center;
  opacity:0;
  filter:blur(12px);
  transform:translateY(32px);
  transition:opacity 1s var(--ease) .24s,filter 1s var(--ease) .24s,transform 1s var(--ease) .24s;
}
.teacher-stage.is-active .teacher-info{opacity:1;filter:blur(0);transform:translateY(0)}
.teacher-subject{font-size:12px;line-height:16px;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.56)}
.teacher-info h3{font-size:48px;line-height:1;letter-spacing:-.04em;font-weight:500;margin:24px 0}
.teacher-info p{font-size:16px;line-height:24px;color:rgba(255,255,255,.7);text-wrap:pretty}
.teacher-info ul{padding:0;margin:32px 0 0;list-style:none;border-top:1px solid rgba(255,255,255,.16)}
.teacher-info li{position:relative;font-size:14px;line-height:20px;padding:12px 0 12px 16px;margin:0;text-align:left}
.teacher-info li+li{border-top:1px solid rgba(255,255,255,.16)}
.teacher-info li::before{content:"";position:absolute;left:1px;top:20px;width:5px;height:5px;border-radius:50%;background:var(--accent)}

.approach{background:var(--paper)}
.approach-head{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(320px,.55fr);gap:64px;align-items:end;margin:0 0 64px}
.approach-head h2,.proof-section h2{
  margin:0;
  max-width:980px;
  font-size:60px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:500;
  text-wrap:balance;
}
.approach-head p{margin:0;font-size:18px;line-height:28px;color:var(--muted);text-wrap:pretty}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.benefit-card{min-height:280px;padding:24px;border-radius:24px;background:var(--white);display:flex;flex-direction:column}
.benefit-card span{font-size:14px;line-height:20px;color:var(--muted)}
.benefit-card h3{font-size:30px;line-height:36px;font-weight:500;margin:48px 0 12px;text-wrap:balance}
.benefit-card p{font-size:16px;line-height:24px;margin:0;color:var(--muted);text-wrap:pretty}
.benefit-card.dark-card{background:var(--ink);color:var(--white)}
.benefit-card.dark-card span,.benefit-card.dark-card p{color:rgba(255,255,255,.62)}
.benefit-card.violet-card{background:#d8d2c8}
.benefit-card.violet-card span,.benefit-card.violet-card p{color:#5f5a52}

.steps{background:#cbc8c0}
.steps-intro{display:block;margin-bottom:64px}
.steps-intro>span{font-size:14px;line-height:20px;text-transform:uppercase;letter-spacing:.04em}
.steps-intro h2{font-size:60px;line-height:1;letter-spacing:-.05em;font-weight:500;margin:0;max-width:900px;text-wrap:balance}
.steps-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.steps-list li{min-height:260px;padding:24px;background:rgba(251,250,247,.72);border-radius:24px;display:flex;flex-direction:column}
.steps-list li>span{font-size:14px;line-height:20px}
.steps-list h3{font-size:24px;line-height:32px;font-weight:500;margin:48px 0 12px}
.steps-list p{font-size:16px;line-height:24px;margin:0;text-wrap:pretty}

.proof-section{background:var(--paper)}
.proof-section h2{margin:0 0 64px}
.quotes{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.quotes blockquote{margin:0;padding:40px;border-radius:24px;background:var(--white);min-height:360px;display:flex;flex-direction:column}
.quotes blockquote:first-child{background:#cdbdaf}
.quotes blockquote p{font-size:24px;line-height:32px;margin:0;text-wrap:pretty}
.quotes footer{margin-top:auto;display:flex;justify-content:space-between;gap:24px;font-size:14px;line-height:20px}
.quotes footer strong{font-weight:600}.quotes footer span{color:var(--muted)}

.faq{background:var(--white)}
.faq-grid{display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);gap:80px;margin-top:0}
.faq-grid h2{font-size:48px;line-height:1;letter-spacing:-.04em;font-weight:500;margin:0;text-wrap:balance}
.faq-grid>div>p{font-size:16px;line-height:24px;color:var(--muted);max-width:480px;margin:24px 0 0}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-list details{background:var(--paper);border-radius:16px;padding:0 24px}
.faq-list summary{list-style:none;cursor:pointer;font-size:18px;line-height:28px;font-weight:600;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:24px 0}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary span{font-size:24px;line-height:32px;font-weight:400;transition:transform .7s var(--ease)}
.faq-list details[open] summary span{transform:rotate(45deg)}
.faq-list details p{font-size:16px;line-height:24px;color:var(--muted);padding:0 0 24px;margin:0;max-width:680px}

.apply{background:var(--ink);color:var(--white);display:grid;grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);gap:80px;align-items:start}
.apply-copy h2{font-size:60px;line-height:1;letter-spacing:-.05em;font-weight:500;margin:0 0 24px;max-width:760px;text-wrap:balance}
.apply-copy>p{font-size:18px;line-height:28px;color:rgba(255,255,255,.64);max-width:680px}
.contact-form{background:var(--paper);color:var(--ink);border-radius:24px;padding:32px}
.field{margin-bottom:24px}
.field label{display:block;font-size:14px;line-height:20px;font-weight:600;margin-bottom:8px}
.field input,.field select{
  width:100%;
  border:1px solid rgba(24,24,24,.18);
  border-radius:12px;
  background:var(--white);
  color:var(--ink);
  padding:16px;
  font-size:16px;
  line-height:24px;
  transition:border .7s var(--ease),box-shadow .7s var(--ease);
}
.field input:focus,.field select:focus{border-color:var(--ink);box-shadow:0 0 0 3px rgba(184,155,105,.35)}
.field input[aria-invalid="true"],.field select[aria-invalid="true"]{border-color:#ad2a1c}
.field-error{display:block;min-height:20px;margin-top:4px;color:#ad2a1c;font-size:12px;line-height:16px}
.consent{display:flex;align-items:flex-start;gap:12px;font-size:14px;line-height:20px;cursor:pointer}
.consent input{width:20px;height:20px;accent-color:var(--ink);flex:none}
.consent-error{margin-left:32px}
.submit-button{
  border:0;
  width:100%;
  padding:8px 12px 8px 16px;
  min-height:48px;
  border-radius:999px;
  background:var(--ink);
  color:var(--white);
  font-size:16px;
  line-height:24px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  transition:transform .7s var(--ease),background .7s var(--ease),opacity .7s var(--ease);
}
.submit-button span{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:var(--accent);color:var(--ink)}
.submit-button:hover{background:#313131;transform:translateY(-2px)}
.submit-button:active{transform:scale(.98)}
.submit-button:disabled{opacity:.56;cursor:wait;transform:none;animation:pulse 1.2s ease-in-out infinite}
@keyframes pulse{50%{opacity:.36}}
.form-status{font-size:14px;line-height:20px;margin:16px 0 0;min-height:20px;color:#27604f}
.form-status.is-success{padding:16px;border-radius:12px;background:#dce3da}

.footer{padding:64px 48px 32px;background:#000;color:var(--white)}
.footer-top{display:grid;grid-template-columns:1fr 1fr 1fr;gap:48px;align-items:start;padding-bottom:64px}
.brand-light{color:var(--white)}
.footer-top p{font-size:16px;line-height:24px;margin:0;color:rgba(255,255,255,.62)}
.footer-top>a:last-child{justify-self:end;color:var(--white);font-size:18px;line-height:28px;text-decoration:none}
.footer-bottom{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1.2fr) minmax(180px,.8fr);column-gap:24px;row-gap:12px;align-items:center;color:rgba(255,255,255,.5);font-size:12px;line-height:16px}
.footer-bottom > :nth-child(4){grid-column:3}
.footer-bottom > :nth-child(5){grid-column:2;grid-row:2}
.footer-bottom button{padding:0;border:0;background:transparent;color:inherit;text-decoration:underline;cursor:pointer}
.footer-bottom button:hover{color:var(--white)}
.legal-dialog{max-width:680px;border:0;border-radius:24px;padding:48px;background:var(--paper);color:var(--ink)}
.legal-dialog::backdrop{background:rgba(0,0,0,.7);backdrop-filter:blur(12px)}
.legal-dialog h2{font-size:36px;line-height:40px;font-weight:500;margin:0 0 24px}
.legal-dialog p{font-size:16px;line-height:24px;color:var(--muted)}
.dialog-close{position:absolute;right:16px;top:16px;width:40px;height:40px;border:0;border-radius:50%;background:var(--ink);color:var(--white);font-size:24px;line-height:32px;cursor:pointer}

@media(max-width:1080px){
  .section-pad{padding:80px 32px}
  .about-title{font-size:60px}
  .about-grid{grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr)}
  .teacher-stage{gap:24px;padding:80px 32px}
  .teacher-info h3{font-size:36px;line-height:40px}
  .approach-head{grid-template-columns:1fr;gap:32px}
  .benefit-grid{grid-template-columns:1fr 1fr}
  .benefit-card:last-child{grid-column:span 2}
  .steps-intro{grid-template-columns:1fr;gap:24px}
  .apply{gap:48px}
}

@media(max-width:900px){
  .site-header{left:16px;right:16px;width:calc(100% - 32px);grid-template-columns:1fr 48px}
  .nav-pill,.header-cta{display:none}
  .menu-button{
    display:block;
    width:48px;
    height:48px;
    border:0;
    border-radius:50%;
    background:var(--ink);
    position:relative;
    cursor:pointer;
    justify-self:end;
  }
  .menu-button span{
    position:absolute;
    left:14px;
    right:14px;
    height:2px;
    background:var(--white);
    top:20px;
    transition:transform .7s var(--ease),top .7s var(--ease);
  }
  .menu-button span+span{top:27px}
  .menu-button.is-open span{top:24px;transform:rotate(45deg)}
  .menu-button.is-open span+span{top:24px;transform:rotate(-45deg)}
  .mobile-menu{
    display:flex;
    position:fixed;
    inset:0;
    z-index:50;
    background:rgba(244,242,236,.88);
    backdrop-filter:blur(32px);
    padding:128px 24px 40px;
    flex-direction:column;
    justify-content:space-between;
    opacity:0;
    pointer-events:none;
    transition:opacity .7s var(--ease);
  }
  .mobile-menu.is-open{opacity:1;pointer-events:auto}
  .mobile-menu nav{display:flex;flex-direction:column}
  .mobile-menu a{
    color:var(--ink);
    text-decoration:none;
    font-size:48px;
    line-height:1;
    letter-spacing:-.04em;
    margin-bottom:24px;
    transform:translateY(48px);
    opacity:0;
    transition:transform .7s var(--ease),opacity .7s var(--ease);
  }
  .mobile-menu.is-open a{transform:translateY(0);opacity:1}
  .mobile-menu.is-open a:nth-child(2){transition-delay:.1s}
  .mobile-menu.is-open a:nth-child(3){transition-delay:.15s}
  .mobile-menu.is-open a:nth-child(4){transition-delay:.2s}
  .mobile-menu.is-open a:nth-child(5){transition-delay:.25s}
  .mobile-menu p{font-size:14px;line-height:20px}
  .hero-title{font-size:60px;line-height:1;max-width:680px}
  .visual-card{width:280px;height:400px}
  .orb-one{left:8%}.orb-two{right:5%}
  .about-grid{grid-template-columns:1fr}
  .about-visual{min-height:0;max-width:420px;justify-self:center}
  .about-copy{padding:0}
  .teacher-stage{min-height:auto;grid-template-columns:1fr 1fr;padding:80px 32px}
  .teacher-media{height:520px}
  .teacher-info{grid-column:1 / -1;grid-row:2;margin:24px auto 0;max-width:560px}
  .teacher-left,.teacher-right{transform:translateX(0) rotate(0)}
  .teacher-stage.is-active .teacher-left{transform:rotate(-2deg)}
  .teacher-stage.is-active .teacher-right{transform:rotate(2deg)}
  .teachers-title{font-size:72px}
  .steps-list{grid-template-columns:1fr}
  .steps-list li{min-height:280px}
  .faq-grid{grid-template-columns:1fr;gap:48px}
  .apply{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .footer-top>a:last-child{justify-self:start}
}

@media(max-width:640px){
  .section-pad{padding:80px 16px}
  .hero{padding:96px 16px 80px;overflow:hidden}
  .hero-title{font-size:48px;line-height:1}
  .hero-copy{font-size:16px;line-height:24px}
  .proof{max-width:360px;gap:4px 12px}
  .proof span{white-space:normal}
  .gallery{padding:64px 0 96px}
  .about-title{font-size:48px;line-height:1;margin:0 0 64px}
  .about-visual{min-height:0;max-width:360px;border-radius:12px}
  .about-visual img{border-radius:12px}
  .sun-mark{font-size:96px;left:-24px;top:-48px}
  .about-copy .lead{font-size:20px;line-height:28px}
  .stat-row{grid-template-columns:1fr}
  .teachers-heading{padding-bottom:24px}
  .teachers-title{font-size:60px;line-height:1}
  .teacher-stage{display:flex;flex-direction:column;padding:64px 16px;gap:16px}
  .teacher-media{width:82%;height:440px}
  .teacher-left{align-self:flex-start}
  .teacher-right{align-self:flex-end;margin-top:-240px}
  .teacher-stage.is-active .teacher-left{transform:translateX(-8px) rotate(-3deg)}
  .teacher-stage.is-active .teacher-right{transform:translateX(8px) rotate(3deg)}
  .teacher-info{order:3;margin-top:24px;text-align:left}
  .teacher-info h3{font-size:36px;line-height:40px}
  .teacher-info li{text-align:left}
  .approach-head h2,.proof-section h2,.steps-intro h2,.apply-copy h2{font-size:48px;line-height:1}
  .benefit-grid{grid-template-columns:1fr}
  .benefit-card:last-child{grid-column:auto}
  .benefit-card{min-height:240px}
  .quotes{grid-template-columns:1fr}
  .quotes blockquote{padding:24px;min-height:320px}
  .quotes blockquote p{font-size:20px;line-height:28px}
  .quotes footer{flex-direction:column;gap:8px}
  .faq-grid h2{font-size:36px;line-height:40px}
  .faq-list details{padding:0 16px}
  .faq-list summary{font-size:16px;line-height:24px}
  .apply{gap:48px}
  .contact-form{padding:24px;border-radius:16px}
  .footer{padding:48px 16px 24px}
  .footer-top{grid-template-columns:1fr;padding-bottom:48px}
  .footer-bottom{display:flex;align-items:flex-start;flex-direction:column;gap:12px}
  .legal-dialog{padding:40px 24px;width:calc(100% - 32px)}
}

@media(max-width:420px){
  .site-header{top:16px}
  .section-pad{padding:64px 16px}
  .hero{padding:96px 16px 64px}
  .hero-title{font-size:36px;line-height:40px;letter-spacing:-.04em}
  .primary-button{width:100%;max-width:320px;justify-content:center}
  .about-title{font-size:36px;line-height:40px;margin-bottom:48px}
  .teachers-title{font-size:48px;line-height:1}
  .teacher-stage{padding:48px 16px}
  .teacher-media{width:88%;height:400px}
  .teacher-right{margin-top:-200px}
  .approach-head h2,.proof-section h2,.steps-intro h2,.apply-copy h2{font-size:36px;line-height:40px}
  .steps-intro,.proof-section h2{margin-bottom:48px}
  .apply{gap:32px}
  .footer-top{gap:32px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .carousel-track,.subject-track,.sun-mark{animation:none}
  .char,.reveal,.site-header,.teacher-media,.teacher-info,.mobile-menu,.mobile-menu a{transition:none}
  .char,.reveal,.teacher-media,.teacher-info{opacity:1;filter:none;transform:none}
}
