:root {
  --navy: #081c46;
  --blue: #1746c9;
  --royal: #2047f4;
  --sky: #65c9ff;
  --gold: #d5ad4d;
  --gold-light: #f7d787;
  --cream: #fbf8f1;
  --paper: #f6f8fc;
  --ink: #10203f;
  --muted: #647089;
  --white: #fff;
  --line: rgba(16, 32, 63, .12);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(13, 37, 91, .12);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: -60px;
  padding: 12px 18px; border-radius: 10px; background: var(--white); color: var(--navy);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; z-index: 1000; top: 0; left: 0; width: 100%;
  border-bottom: 1px solid transparent; transition: .35s ease;
}
.site-header.scrolled {
  background: rgba(7, 24, 59, .92);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 40px rgba(1, 10, 32, .18);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 230px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); color: rgba(255,255,255,.86); font-size: 14px; font-weight: 600; }
.site-nav > a:not(.button) { position: relative; padding: 12px 0; }
.site-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; bottom: 6px; width: 0; height: 2px;
  background: var(--gold-light); transition: width .25s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { width: 100%; }
.nav-mobile-contact { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--white); transition: .25s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; letter-spacing: -.01em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: #17120a; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 30px rgba(213, 173, 77, .24); }
.button-blue { color: var(--white); background: var(--blue); box-shadow: 0 12px 30px rgba(32, 71, 244, .2); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 13px; }
.button-full { width: 100%; }

.hero { min-height: 760px; height: 100vh; height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; animation: heroScale 14s ease-out both; }
.hero-overlay {
  background:
    radial-gradient(circle at 76% 25%, rgba(60,132,255,.28), transparent 28%),
    linear-gradient(90deg, rgba(4,18,48,.95) 0%, rgba(5,26,64,.78) 43%, rgba(5,25,59,.25) 74%, rgba(4,19,47,.42) 100%),
    linear-gradient(0deg, rgba(3,15,40,.6), transparent 40%);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-light); }
.hero h1, .section-heading h2, .tour-copy h2 {
  margin: 0; font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: -.05em; line-height: 1.03;
}
.hero h1 { max-width: 880px; font-size: clamp(54px, 7.2vw, 106px); }
.hero h1 span { color: var(--gold-light); }
.hero-copy { max-width: 650px; margin: 26px 0 32px; color: rgba(255,255,255,.8); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue { position: absolute; z-index: 3; right: 4vw; bottom: 42px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right; }
.scroll-cue i { display: block; width: 50px; height: 1px; background: currentColor; }
@keyframes heroScale { from { transform: scale(1.08); } to { transform: scale(1); } }

.trust-strip { position: relative; z-index: 4; color: var(--white); background: var(--navy); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { position: relative; padding: 28px 30px 30px; border-left: 1px solid rgba(255,255,255,.13); }
.trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.trust-grid span, .trust-grid strong, .trust-grid small { display: block; }
.trust-grid span { position: absolute; top: 17px; right: 20px; color: rgba(255,255,255,.24); font-size: 11px; }
.trust-grid strong { font-family: "Manrope", sans-serif; font-size: 18px; }
.trust-grid small { margin-top: 2px; color: rgba(255,255,255,.52); font-size: 12px; }

.section-heading { max-width: 690px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .tour-copy h2 { font-size: clamp(38px, 5vw, 68px); }
.section-heading > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.split-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; align-items: end; }
.intro { background: var(--cream); }
.intro-copy { padding-bottom: 5px; }
.intro-copy p { margin: 0 0 26px; color: #4f5c75; font-size: 20px; }
.text-link { color: var(--blue); font-weight: 700; }
.text-link span { margin-left: 4px; transition: margin .2s ease; }
.text-link:hover span { margin-left: 10px; }

.why-section { background: var(--paper); }
.feature-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  position: relative; min-height: 340px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.86); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border .3s ease;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(32,71,244,.24); box-shadow: var(--shadow); }
.feature-number { position: absolute; top: 20px; right: 24px; color: #a9b0bf; font-size: 12px; }
.icon-shell {
  width: 68px; height: 68px; margin: 54px 0 26px; display: grid; place-items: center; border-radius: 22px;
  color: var(--white); background: linear-gradient(135deg, var(--royal), #54b6ff); box-shadow: 0 14px 26px rgba(32,71,244,.2); font-size: 28px;
}
.feature-card h3, .journey-stage h3, .admission-steps h3 { margin: 0 0 10px; font-family: "Manrope", sans-serif; font-size: 22px; letter-spacing: -.03em; }
.feature-card p, .journey-stage > p, .admission-steps p { margin: 0; color: var(--muted); font-size: 15px; }

.journey-section { overflow: hidden; }
.journey-grid { position: relative; margin-top: 65px; display: grid; grid-template-columns: repeat(4, 1fr); }
.journey-grid::before { content: ""; position: absolute; top: 21px; left: 4%; right: 4%; height: 1px; background: linear-gradient(90deg, var(--gold), var(--blue)); }
.journey-stage { position: relative; padding: 62px 36px 30px 0; }
.journey-stage::before { content: ""; position: absolute; z-index: 1; top: 12px; left: 0; width: 18px; height: 18px; border: 7px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px rgba(32,71,244,.18); }
.journey-stage:first-child::before { background: var(--gold); }
.stage-index { color: #a9b0bf; font-size: 12px; }
.journey-stage .stage-age { margin: 22px 0 7px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.journey-stage h3 { font-size: 27px; }
.stage-tag { display: inline-block; margin-top: 25px; padding: 6px 12px; border-radius: 99px; color: var(--blue); background: #eef3ff; font-size: 12px; font-weight: 700; }

.experience-section { background: var(--cream); }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 9px 14px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }
.filter-button.active { color: var(--white); border-color: var(--navy); background: var(--navy); }
.gallery-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 16px; }
.gallery-card { position: relative; margin: 0; border-radius: 22px; overflow: hidden; background: #dce4f2; }
.gallery-card.hidden { display: none; }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(4,20,50,.78)); }
.gallery-card figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 18px; color: var(--white); }
.gallery-card figcaption span, .gallery-card figcaption small { display: block; }
.gallery-card figcaption span { font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 700; }
.gallery-card figcaption small { color: rgba(255,255,255,.7); }
.photo-note { margin: 18px 0 0; color: #7b8496; font-size: 12px; text-align: right; }
.photo-note code { padding: 2px 5px; background: rgba(10,30,70,.06); border-radius: 5px; }

.difference-section { position: relative; color: var(--white); background: var(--navy); overflow: hidden; }
.difference-section::before { content: ""; position: absolute; width: 600px; height: 600px; right: -250px; top: -250px; border-radius: 50%; background: rgba(32,71,244,.28); filter: blur(5px); }
.difference-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; }
.difference-layout .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.comparison { border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); overflow: hidden; }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-head { padding: 18px 28px; color: rgba(255,255,255,.52); background: rgba(0,0,0,.12); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.comparison-row { padding: 22px 28px; border-top: 1px solid rgba(255,255,255,.1); }
.comparison-row span { color: rgba(255,255,255,.48); }
.comparison-row strong { color: var(--gold-light); font-weight: 600; }

.skills-section { background: var(--paper); }
.skills-wheel { min-height: 570px; display: grid; place-items: center; overflow: hidden; }
.skill-orbit { position: relative; width: min(660px, 92vw); aspect-ratio: 1; border: 1px solid rgba(32,71,244,.13); border-radius: 50%; }
.skill-orbit::before, .skill-orbit::after { content: ""; position: absolute; inset: 17%; border: 1px solid rgba(32,71,244,.12); border-radius: 50%; }
.skill-orbit::after { inset: 34%; background: radial-gradient(circle, rgba(32,71,244,.12), transparent 67%); }
.skill-center { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 138px; height: 138px; display: grid; place-content: center; border-radius: 42px; color: var(--white); background: linear-gradient(145deg, #2c5aff, var(--navy)); box-shadow: 0 28px 60px rgba(17,50,130,.28); transform: translate(-50%, -50%); text-align: center; }
.skill-center span { font-family: Georgia, serif; font-size: 44px; line-height: 1; color: var(--gold-light); }
.skill-center small { margin-top: 7px; font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: .08em; }
.skill-chip { position: absolute; padding: 12px 18px; border: 1px solid rgba(17,50,130,.1); border-radius: 99px; background: var(--white); box-shadow: 0 15px 40px rgba(18,43,100,.1); font-size: 14px; font-weight: 700; white-space: nowrap; }
.chip-1 { left: 2%; top: 24%; }.chip-2 { right: 3%; top: 22%; }.chip-3 { right: -2%; top: 55%; }
.chip-4 { right: 15%; bottom: 5%; }.chip-5 { left: 13%; bottom: 7%; }.chip-6 { left: -3%; top: 56%; }

.admissions-section { background: var(--white); }
.admission-steps { margin: 60px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.admission-steps li { position: relative; padding: 0 28px 0 0; }
.admission-steps li:not(:last-child)::after { content: "→"; position: absolute; top: 19px; right: 24px; color: #b5bdcb; }
.admission-steps li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 13px; font-weight: 800; }
.admission-steps li div { margin-top: 28px; }
.admission-steps small { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admission-steps h3 { margin-top: 5px; }

.tour-section { color: var(--white); background: linear-gradient(135deg, #0a1c43, #123b91); }
.tour-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; }
.tour-copy > p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.66); font-size: 18px; }
.contact-list { margin: 40px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.15); list-style: none; }
.contact-list li { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 14px; }
.contact-list span { color: rgba(255,255,255,.5); }
.contact-list a { text-align: right; font-weight: 600; }
.tour-form { padding: clamp(24px, 4vw, 46px); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; color-scheme: dark; background: rgba(255,255,255,.1); box-shadow: 0 30px 80px rgba(0,0,0,.16); backdrop-filter: blur(16px); }
.field-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 700; }
.field label span { color: rgba(255,255,255,.4); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; outline: 0; color: var(--white); background: rgba(255,255,255,.1); }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { padding: 13px 15px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.42); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(247,215,135,.12); }
.field select option { color: var(--ink); }
.form-note { margin: 11px 0 0; color: rgba(255,255,255,.45); font-size: 11px; text-align: center; }

.faq-layout { display: grid; grid-template-columns: .65fr 1fr; gap: 8vw; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 0; background: transparent; cursor: pointer; text-align: left; font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 700; }
.faq-item button i { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 4px; top: 10px; width: 14px; height: 2px; background: var(--blue); transition: transform .25s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { min-height: 0; margin: 0; overflow: hidden; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 24px; }

.site-footer { padding: 80px 0 28px; color: rgba(255,255,255,.66); background: #050f28; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-brand img { width: 250px; }
.footer-brand p { margin: 22px 0 0; }
.footer-grid h3 { margin: 0 0 17px; color: var(--white); font-family: "Manrope", sans-serif; font-size: 14px; }
.footer-grid a, .footer-grid address { display: block; margin: 9px 0; font-size: 14px; font-style: normal; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: 65px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 12px; }

.advisor { position: fixed; z-index: 900; right: 24px; bottom: 24px; }
.advisor-button { min-width: 58px; height: 58px; padding: 0 18px; display: flex; align-items: center; gap: 9px; border: 0; border-radius: 99px; color: var(--white); background: var(--blue); box-shadow: 0 18px 45px rgba(12,43,124,.32); cursor: pointer; }
.advisor-button span, .advisor-mark { display: grid; place-items: center; font-family: Georgia, serif; color: var(--gold-light); font-size: 23px; }
.advisor-button em { font-size: 12px; font-style: normal; font-weight: 800; }
.advisor-panel { position: absolute; right: 0; bottom: 72px; width: min(340px, calc(100vw - 32px)); padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 25px 70px rgba(10,30,70,.22); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; }
.advisor.open .advisor-panel { opacity: 1; visibility: visible; transform: none; }
.advisor-close { position: absolute; right: 15px; top: 11px; border: 0; background: transparent; color: var(--muted); font-size: 24px; cursor: pointer; }
.advisor-mark { width: 45px; height: 45px; border-radius: 15px; background: var(--navy); }
.advisor-panel h2 { margin: 16px 0 5px; font-family: "Manrope", sans-serif; font-size: 22px; }
.advisor-panel p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.advisor-panel a { padding: 11px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--blue); font-size: 13px; font-weight: 700; }

.mobile-action-bar { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .site-nav { position: fixed; inset: 0 0 0 25%; padding: 120px 40px 40px; flex-direction: column; align-items: flex-start; gap: 13px; background: rgba(5,15,40,.98); transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.open { transform: none; }
  .site-nav > a { width: 100%; font-size: 18px; }
  .site-nav .button { margin-top: 12px; }
  .nav-mobile-contact { width: 100%; margin-top: auto; padding-top: 24px; display: grid; gap: 7px; border-top: 1px solid rgba(255,255,255,.14); }
  .nav-mobile-contact span { color: rgba(255,255,255,.45); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .nav-mobile-contact a { color: var(--gold-light); font-size: 14px; }
  .menu-toggle { position: relative; z-index: 2; display: block; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-layout, .tour-card { grid-template-columns: 1fr; }
  .comparison { margin-top: 20px; }
  .tour-card { gap: 55px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 80px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 160px; }
  .hero { min-height: calc(100svh - 68px); height: auto; padding: 96px 0 48px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,18,48,.92), rgba(4,18,48,.58)), linear-gradient(0deg, rgba(3,15,40,.7), transparent); }
  .hero-content { padding-top: 18px; }
  .hero h1 { max-width: 360px; font-size: clamp(46px, 13.2vw, 54px); line-height: .98; }
  .hero-copy { margin: 22px 0 25px; font-size: 16px; line-height: 1.5; }
  .hero-actions { display: grid; justify-items: start; gap: 9px; }
  .hero-actions .button-gold { width: 100%; }
  .hero-actions .hero-secondary { min-height: 38px; padding: 0 4px; border: 0; background: transparent; backdrop-filter: none; font-size: 14px; }
  .trust-grid { grid-template-columns: repeat(3, minmax(126px, 1fr)); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .trust-grid::-webkit-scrollbar { display: none; }
  .trust-grid > div { min-width: 126px; padding: 20px 14px 22px; scroll-snap-align: start; }
  .trust-grid strong { font-size: 14px; line-height: 1.25; }
  .trust-grid small { font-size: 10px; line-height: 1.35; }
  .trust-grid span { top: 9px; right: 10px; font-size: 9px; }
  .scroll-cue { display: none; }
  .split-intro, .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 300px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid::before { top: 0; bottom: 0; left: 9px; right: auto; width: 1px; height: auto; }
  .journey-stage { padding: 10px 0 44px 50px; }
  .journey-stage::before { top: 2px; left: 0; }
  .heading-row { display: block; }
  .heading-row .filter-row, .heading-row .button { margin-top: 25px; }
  .filter-row { width: 100%; padding-bottom: 5px; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; scroll-snap-align: start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-large, .gallery-wide { grid-column: span 2; }
  .difference-layout { gap: 50px; }
  .comparison-head, .comparison-row { gap: 14px; }
  .comparison-head, .comparison-row { padding-left: 16px; padding-right: 16px; }
  .skills-wheel { min-height: 0; margin-top: 42px; display: block; overflow: visible; }
  .skill-orbit { width: 100%; aspect-ratio: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border: 0; border-radius: 0; }
  .skill-orbit::before, .skill-orbit::after { display: none; }
  .skill-center { position: static; grid-column: 1 / -1; width: 100%; height: auto; min-height: 108px; display: flex; align-items: center; justify-content: center; gap: 15px; border-radius: 24px; transform: none; }
  .skill-center span { font-size: 38px; }
  .skill-center small { margin: 0; text-align: left; }
  .skill-chip { position: static; min-height: 74px; padding: 16px 13px; display: flex; align-items: center; justify-content: center; border-radius: 18px; white-space: normal; text-align: center; line-height: 1.3; }
  .skill-chip { font-size: 12px; }
  .admission-steps { grid-template-columns: 1fr; gap: 34px; }
  .admission-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 0; }
  .admission-steps li:not(:last-child)::after { content: "↓"; left: 15px; right: auto; top: 52px; }
  .admission-steps li div { margin-top: 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { display: block; }
  .advisor { display: none; }
  .mobile-action-bar {
    position: fixed; z-index: 950; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 58px; padding: 6px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 6px;
    border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(5,20,52,.94);
    box-shadow: 0 18px 50px rgba(4,18,48,.35); backdrop-filter: blur(18px);
    opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity .25s ease, transform .25s ease;
  }
  .mobile-action-bar.is-ready { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-action-bar.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
  .mobile-action-bar a { min-height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 15px; font-size: 13px; font-weight: 800; }
  .mobile-action-whatsapp { color: var(--white); background: rgba(255,255,255,.08); }
  .mobile-action-whatsapp span { margin-right: 6px; color: #5de27d; }
  .mobile-action-tour { color: #17120a; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
}

@media (max-width: 480px) {
  .site-nav { left: 0; }
  .section-heading h2, .tour-copy h2 { font-size: 38px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-large, .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .comparison-head { display: none; }
  .comparison-row { padding: 17px 16px; display: block; }
  .comparison-row span, .comparison-row strong { display: block; }
  .comparison-row span { margin-bottom: 9px; font-size: 14px; }
  .comparison-row span::before, .comparison-row strong::before { display: block; margin-bottom: 2px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .comparison-row span::before { content: "Instead of"; color: rgba(255,255,255,.3); }
  .comparison-row strong::before { content: "At KINGDOMhigh"; color: rgba(255,255,255,.3); }
  .tour-form { padding: 22px 18px; }
  .contact-list li { display: block; }
  .contact-list a { margin-top: 3px; display: block; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@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; }
}
