:root {
  --ink: #142122;
  --muted: #607071;
  --forest: #122a2b;
  --forest-2: #1c3c3c;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --gold: #d7ad63;
  --gold-dark: #a8792f;
  --plum: #5b2f58;
  --line: rgba(20, 33, 34, .13);
  --shadow: 0 24px 70px rgba(13, 31, 31, .12);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 108px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(18, 42, 43, .92);
  backdrop-filter: blur(18px);
  color: #fff;
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 173, 99, .75);
  border-radius: 50% 50% 48% 52% / 54% 43% 57% 46%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
  transform: rotate(-5deg);
}
.brand > span:last-child { display: grid; line-height: 1; }
.brand strong { font-family: Georgia, serif; font-size: 22px; letter-spacing: .12em; }
.brand sup { font-family: inherit; font-size: 8px; vertical-align: top; color: var(--gold); }
.brand small { margin-top: 6px; color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 650; }
.desktop-nav a:hover { color: #fff; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 25px;
  font-weight: 750;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding-inline: 20px; background: var(--gold); color: #1f1b13; }
.button-primary { background: var(--forest); color: #fff; box-shadow: 0 14px 30px rgba(18, 42, 43, .18); }
.button-primary:hover { background: var(--forest-2); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.7); color: var(--ink); }
.button-gold { background: var(--gold); color: #211b11; box-shadow: 0 14px 30px rgba(215, 173, 99, .2); }
.button-gold:hover { background: #e2ba74; }
.button-full { width: 100%; }

.hero {
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(215,173,99,.18), transparent 28%),
    radial-gradient(circle at 89% 12%, rgba(91,47,88,.11), transparent 26%),
    linear-gradient(180deg, #f7f2e8 0%, #fffdf8 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--gold-dark); font-size: 12px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 35px; height: 1px; background: currentColor; }
.eyebrow-light { color: #e6c281; }
.hero h1,
.section-heading h2,
.feature-copy h2,
.program-intro h2,
.teacher-copy h2,
.video-copy h2,
.offer-main h2,
.faq-intro h2,
.application-copy h2 {
  margin: 20px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 720px; font-size: clamp(54px, 6vw, 86px); }
.hero-lead { max-width: 690px; margin: 0; color: #4f6061; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 34px 0; }
.hero-meta div { padding: 17px 16px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.7); }
.hero-meta span, .hero-meta strong { display: block; }
.hero-meta span { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero-meta strong { margin-top: 4px; font-size: 14px; line-height: 1.35; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: flex-start; gap: 10px; max-width: 640px; margin: 24px 0 0; color: var(--muted); font-size: 14px; }
.hero-note span { flex: 0 0 23px; display: grid; place-items: center; height: 23px; border-radius: 50%; background: rgba(18,42,43,.09); color: var(--forest); font-weight: 900; }
.hero-visual { position: relative; z-index: 2; padding-bottom: 90px; }
.hero-photo-wrap { position: relative; overflow: hidden; border-radius: 36px 36px 120px 36px; box-shadow: var(--shadow); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(18,42,43,.32)); pointer-events: none; }
.hero-photo-wrap img { width: 100%; aspect-ratio: 1 / .86; object-fit: cover; }
.hero-badge { position: absolute; left: 28px; bottom: 28px; z-index: 2; padding: 15px 19px; border: 1px solid rgba(255,255,255,.25); border-radius: 15px; background: rgba(18,42,43,.74); backdrop-filter: blur(10px); color: #fff; }
.hero-badge span, .hero-badge strong { display: block; }
.hero-badge span { color: rgba(255,255,255,.7); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-badge strong { margin-top: 2px; font-family: Georgia, serif; font-size: 20px; }
.countdown-card { position: absolute; right: -28px; bottom: 0; width: min(450px, 90%); padding: 23px 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: var(--forest); color: #fff; box-shadow: 0 22px 55px rgba(18,42,43,.24); }
.countdown-head { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 14px; font-size: 13px; }
.countdown-head span { color: rgba(255,255,255,.66); }
.countdown-head b { color: var(--gold); }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.countdown div { text-align: center; }
.countdown strong { display: block; font-family: Georgia, serif; font-size: clamp(27px, 4vw, 38px); font-weight: 500; line-height: 1; }
.countdown span { display: block; margin-top: 8px; color: rgba(255,255,255,.53); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.countdown-fallback { margin: 14px 0 0; color: rgba(255,255,255,.68); font-size: 12px; text-align: center; }
.next-start-message { display: grid; gap: 4px; padding: 7px 0 2px; text-align: center; }
.next-start-message strong { color: var(--gold); font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.next-start-message span { color: rgba(255,255,255,.62); font-size: 13px; }
.hero-orbit { position: absolute; border: 1px solid rgba(18,42,43,.08); border-radius: 50%; }
.hero-orbit-one { width: 500px; height: 500px; right: -160px; top: 70px; }
.hero-orbit-two { width: 290px; height: 290px; left: -170px; bottom: 10px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 118px; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 20px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--forest); font-family: Georgia, serif; font-size: 35px; font-weight: 500; }
.trust-grid span { max-width: 130px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.section-heading { max-width: 810px; margin-bottom: 50px; }
.section-heading h2, .feature-copy h2, .program-intro h2, .teacher-copy h2, .video-copy h2, .offer-main h2, .faq-intro h2, .application-copy h2 { font-size: clamp(38px, 4.6vw, 61px); }
.section-heading p, .program-intro > p, .video-copy p, .faq-intro p { color: var(--muted); font-size: 18px; }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.result-card { min-height: 280px; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.result-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(18,42,43,.09); }
.result-card > span { color: var(--gold-dark); font-family: Georgia, serif; font-size: 18px; }
.result-card h3 { margin: 55px 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; line-height: 1.2; }
.result-card p { margin: 0; color: var(--muted); font-size: 15px; }

.section-dark { overflow: hidden; background: var(--forest); color: #fff; }
.section-dark::before { content: ""; position: absolute; width: 460px; height: 460px; right: -120px; bottom: -260px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.feature-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 76px; }
.feature-copy p { color: rgba(255,255,255,.68); font-size: 18px; }
.check-list { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: rgba(255,255,255,.88); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--gold); font-weight: 900; }
.feature-gallery { position: relative; min-height: 570px; }
.gallery-main { width: 82%; margin-left: auto; border-radius: 30px; aspect-ratio: 1.15 / 1; object-fit: cover; box-shadow: 0 28px 70px rgba(0,0,0,.25); }
.gallery-small { position: absolute; left: 0; bottom: 12px; width: 47%; border: 8px solid var(--forest); border-radius: 22px; aspect-ratio: 1.15 / 1; object-fit: cover; }
.gallery-caption { position: absolute; right: -12px; bottom: 34px; width: 240px; padding: 16px 20px; border-radius: 15px; background: var(--gold); color: #241e14; }
.gallery-caption strong, .gallery-caption span { display: block; }
.gallery-caption span { margin-top: 2px; font-size: 12px; }

.program-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 85px; align-items: start; }
.program-intro { position: sticky; top: 120px; }
.program-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 35px; }
.program-summary div { padding: 18px; border: 1px solid var(--line); border-radius: 16px; }
.program-summary span, .program-summary strong { display: block; }
.program-summary span { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.program-summary strong { margin-top: 5px; }
.program-list { border-top: 1px solid var(--line); }
.program-list details { border-bottom: 1px solid var(--line); }
.program-list summary { display: grid; grid-template-columns: 58px 1fr 28px; align-items: center; gap: 18px; padding: 25px 0; list-style: none; cursor: pointer; }
.program-list summary::-webkit-details-marker, .faq-list summary::-webkit-details-marker { display: none; }
.program-list summary > span { color: var(--gold-dark); font-family: Georgia, serif; font-size: 20px; }
.program-list summary > strong { font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.program-list summary i, .faq-list summary i { position: relative; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.program-list summary i::before, .program-list summary i::after, .faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 13px; height: 1px; background: currentColor; transition: transform .2s ease; }
.program-list summary i::after, .faq-list summary i::after { transform: rotate(90deg); }
.program-list details[open] summary i::after, .faq-list details[open] summary i::after { transform: rotate(0); }
.program-list details p { margin: -8px 0 24px 76px; color: var(--muted); font-size: 16px; }

.teacher-section { background: #f3eee4; }
.teacher-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.teacher-photo { position: relative; }
.teacher-photo::before { content: ""; position: absolute; inset: -22px 40px 22px -22px; border: 1px solid rgba(18,42,43,.18); border-radius: 170px 26px 26px 26px; }
.teacher-photo img { position: relative; width: 100%; max-height: 700px; border-radius: 160px 28px 28px 28px; object-fit: cover; object-position: 50% 30%; box-shadow: var(--shadow); }
.teacher-stamp { position: absolute; right: -25px; bottom: 35px; display: grid; place-items: center; width: 132px; aspect-ratio: 1; border-radius: 50%; background: var(--forest); color: #fff; transform: rotate(7deg); box-shadow: 0 15px 40px rgba(18,42,43,.25); }
.teacher-stamp span { font-family: Georgia, serif; font-size: 25px; letter-spacing: .12em; }
.teacher-stamp small { margin-top: -35px; color: var(--gold); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.teacher-lead { color: var(--ink); font-size: 21px; }
.teacher-copy > p:not(.teacher-lead) { color: var(--muted); font-size: 17px; }
.teacher-copy blockquote { margin: 30px 0 0; padding: 23px 26px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.55); font-family: Georgia, serif; font-size: 20px; line-height: 1.5; }

.video-section { background: #fff; }
.video-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; }
.video-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.video-placeholder { position: relative; display: block; width: 100%; padding: 0; border: 0; background: #111; }
.video-placeholder img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: brightness(.72); }
.play-button { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 76px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(255,255,255,.9); color: var(--forest); font-size: 24px; transform: translate(-50%, -50%); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.video-frame iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }

.reviews-section { overflow: hidden; background: #f8f5ef; }
.section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-weight: 750; }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(360px, 1fr); gap: 18px; overflow-x: auto; padding: 4px 0 22px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.review-card { min-height: 380px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 23px; background: #fff; scroll-snap-align: start; }
.review-stars { color: var(--gold-dark); letter-spacing: .12em; }
.review-card > p { flex: 1; margin: 35px 0; font-family: Georgia, serif; font-size: 20px; line-height: 1.55; }
.review-card footer { display: flex; align-items: center; gap: 12px; }
.review-avatar { display: grid; place-items: center; width: 44px; aspect-ratio: 1; border-radius: 50%; background: var(--forest); color: var(--gold); font-family: Georgia, serif; }
.review-card footer div { display: grid; }
.review-card footer small { color: var(--muted); }

.offer-section { padding-top: 0; background: #f8f5ef; }
.offer-card { display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; padding: 0; border-radius: 32px; background: var(--forest); color: #fff; box-shadow: var(--shadow); }
.offer-main { padding: 55px; }
.offer-main h2 { max-width: 650px; }
.offer-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.offer-facts div { padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.04); }
.offer-facts span, .offer-facts strong { display: block; }
.offer-facts span { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.offer-facts strong { margin-top: 5px; font-size: 14px; line-height: 1.4; }
.offer-price { display: flex; flex-direction: column; justify-content: center; padding: 50px; background: rgba(255,255,255,.055); }
.offer-price > span { color: rgba(255,255,255,.65); font-size: 13px; }
.offer-price > strong { margin: 8px 0; color: var(--gold); font-family: Georgia, serif; font-size: 52px; font-weight: 500; }
.offer-price p { margin: 0 0 28px; color: rgba(255,255,255,.72); }
.offer-price small { margin-top: 14px; color: rgba(255,255,255,.48); text-align: center; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.contact-phone { display: inline-block; margin-top: 20px; border-bottom: 1px solid currentColor; font-size: 21px; font-weight: 800; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 28px; align-items: center; gap: 20px; padding: 25px 0; list-style: none; cursor: pointer; font-size: 18px; font-weight: 750; }
.faq-list details p { margin: -6px 58px 25px 0; color: var(--muted); }

.application-section { overflow: hidden; background: var(--forest); color: #fff; }
.application-section::before { content: ""; position: absolute; width: 700px; height: 700px; left: -340px; top: -200px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.application-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.application-copy p { max-width: 540px; color: rgba(255,255,255,.68); font-size: 18px; }
.application-contact { display: grid; gap: 6px; margin-top: 30px; }
.application-contact a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 18px; }
.lead-form { padding: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: 25px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.lead-form > label:not(.consent) { display: grid; gap: 8px; margin-bottom: 16px; }
.lead-form label > span { font-size: 13px; font-weight: 750; }
.lead-form label small { color: rgba(255,255,255,.45); font-weight: 500; }
.lead-form input:not([type="checkbox"]), .lead-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; outline: none; padding: 14px 15px; background: rgba(255,255,255,.08); color: #fff; transition: border-color .2s ease, background .2s ease; }
.lead-form textarea { resize: vertical; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,.4); }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.11); }
.lead-form .invalid { border-color: #ff9b91 !important; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 20px 0; color: rgba(255,255,255,.62); }
.consent input { margin-top: 4px; accent-color: var(--gold); }
.consent span { font-size: 12px !important; font-weight: 500 !important; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; margin: 12px 0 0; color: rgba(255,255,255,.75); font-size: 13px; text-align: center; }
.form-status.error { color: #ffbbb4; }
.button-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(33,27,17,.3); border-top-color: #211b11; border-radius: 50%; animation: spin .7s linear infinite; }
.lead-form.is-loading .button-loader { display: block; }
.lead-form.is-loading .button-label { opacity: .65; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-footer { padding: 70px 0 20px; background: #0d2021; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 50px; }
.brand-footer { margin-bottom: 20px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p, .footer-grid a, .footer-grid span { color: rgba(255,255,255,.58); font-size: 14px; }
.footer-grid p { max-width: 280px; }
.footer-grid a:hover { color: #fff; }
.footer-grid > div > strong { margin-bottom: 8px; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 12px; }

.mobile-cta { display: none; }
.success-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(7,19,19,.72); backdrop-filter: blur(8px); }
.success-modal[hidden] { display: none; }
.success-dialog { position: relative; width: min(100%, 470px); padding: 42px; border-radius: 25px; background: #fff; text-align: center; box-shadow: 0 28px 90px rgba(0,0,0,.26); }
.success-icon { display: grid; place-items: center; width: 64px; margin: 0 auto 18px; aspect-ratio: 1; border-radius: 50%; background: rgba(18,42,43,.1); color: var(--forest); font-size: 30px; font-weight: 900; }
.success-dialog h2 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.success-dialog p { margin: 0 0 25px; color: var(--muted); }
.modal-close { position: absolute; right: 16px; top: 10px; border: 0; background: none; color: #738081; font-size: 30px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero-grid, .feature-layout, .teacher-grid, .application-grid { gap: 45px; }
  .hero h1 { font-size: 61px; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .program-layout { grid-template-columns: .9fr 1.1fr; gap: 45px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, .8fr); gap: 30px; }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .header-inner { min-height: 68px; }
  .header-inner > .button { display: none; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid, .feature-layout, .program-layout, .teacher-grid, .video-grid, .faq-layout, .application-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-visual { padding-bottom: 75px; }
  .countdown-card { right: 3%; width: 94%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-layout { gap: 55px; }
  .feature-gallery { min-height: 540px; }
  .program-intro, .faq-intro { position: static; }
  .teacher-grid { gap: 70px; }
  .teacher-photo { max-width: 600px; margin-inline: auto; }
  .video-grid { gap: 40px; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-price { border-top: 1px solid rgba(255,255,255,.1); }
  .faq-layout, .application-grid { gap: 45px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 150; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 9px 9px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(18,42,43,.96); color: #fff; box-shadow: 0 15px 45px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
  .mobile-cta > div { display: grid; line-height: 1.2; }
  .mobile-cta span { color: rgba(255,255,255,.55); font-size: 10px; }
  .mobile-cta strong { font-size: 14px; }
  .mobile-cta .button { min-height: 44px; padding-inline: 17px; }
  .site-footer { padding-bottom: 105px; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .brand strong { font-size: 19px; }
  .brand-mark { width: 38px; }
  .hero { padding-top: 55px; }
  .hero h1 { margin-top: 16px; }
  .hero-lead { font-size: 17px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div { display: grid; grid-template-columns: 90px 1fr; align-items: center; }
  .hero-meta strong { margin-top: 0; }
  .hero-actions .button { width: 100%; }
  .hero-photo-wrap { border-radius: 28px 28px 75px 28px; }
  .hero-photo-wrap img { aspect-ratio: 1 / .95; }
  .hero-badge { left: 18px; bottom: 18px; }
  .countdown-card { bottom: -5px; padding: 19px 15px; }
  .countdown strong { font-size: 29px; }
  .trust-grid > div { min-height: 98px; padding: 14px; justify-content: flex-start; }
  .trust-grid strong { font-size: 29px; }
  .trust-grid span { font-size: 11px; }
  .section-heading h2, .feature-copy h2, .program-intro h2, .teacher-copy h2, .video-copy h2, .offer-main h2, .faq-intro h2, .application-copy h2 { font-size: 39px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-card { min-height: auto; }
  .result-card h3 { margin-top: 34px; }
  .feature-gallery { min-height: 410px; }
  .gallery-main { width: 88%; }
  .gallery-small { width: 53%; }
  .gallery-caption { right: 0; width: 200px; }
  .program-summary { grid-template-columns: 1fr; }
  .program-list summary { grid-template-columns: 42px 1fr 28px; gap: 10px; }
  .program-list summary > strong { font-size: 20px; }
  .program-list details p { margin-left: 52px; }
  .teacher-photo::before { inset: -12px 18px 15px -12px; }
  .teacher-photo img { border-radius: 105px 22px 22px 22px; }
  .teacher-stamp { right: -3px; width: 112px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .reviews-track { grid-auto-columns: 88%; }
  .review-card { min-height: 410px; padding: 24px; }
  .offer-main, .offer-price { padding: 32px 24px; }
  .offer-facts { grid-template-columns: 1fr; }
  .offer-price > strong { font-size: 43px; }
  .lead-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; margin-top: 40px; }
  .success-dialog { padding: 36px 22px; }
}
