@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Sans:wght@400;500;600;700&family=Noto+Serif+Devanagari:wght@500;600;700&family=Noto+Serif:wght@500;600;700&family=Shippori+Mincho:wght@500;600;700&display=swap");
:root {
  --b01: #011359;
  --b02: #01217f;
  --b03: #0134ae;
  --b04: #0053e6;
  --b05: #0070fd;
  --b06: #2b9bfd;
  --b07: #94e4fd;
  --navy: var(--b01);
  --navy2: var(--b02);
  --blue: var(--b05);
  --sky: var(--b07);
  --gold: #d4af37;
  --ivory: #f7f4ee;
  --paper: #fcfbf8;
  --mist: #edf4fb;
  --ink: #112a48;
  --muted: #5e6b79;
  --line: #dbe2e8;
  --white: #fff;
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Yu Gothic", sans-serif;
  --shadow: 0 18px 55px rgba(6, 31, 71, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
}
html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}
html[lang="zh-TW"] body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}
html[lang="ko"] body {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}
html[lang="ne"] {
  --serif: "Noto Serif Devanagari", "Noto Sans Devanagari", serif;
  --sans: "Noto Sans Devanagari", "Mangal", sans-serif;
}
html[lang="vi"] {
  --serif: "Noto Serif", Georgia, serif;
  --sans: "Noto Sans", Arial, sans-serif;
}
html[lang="en"] .nav {
  gap: 18px;
  font-size: 12px;
}
html[lang="pt-BR"] .nav {
  gap: 14px;
  font-size: 11.5px;
}
html[lang="ko"] .nav {
  gap: 20px;
  font-size: 12px;
}
html[lang="ne"] .nav,
html[lang="vi"] .nav {
  gap: 14px;
  font-size: 11.5px;
}
html[lang="zh-CN"] .hero h1,
html[lang="zh-CN"] .page-hero h1,
html[lang="zh-CN"] .section-title,
html[lang="zh-CN"] .statement h2,
html[lang="zh-CN"] .contact-band h2,
html[lang="zh-CN"] .path b,
html[lang="zh-CN"] .cycle h3,
html[lang="zh-CN"] .audience h3,
html[lang="zh-CN"] .school-entry strong,
html[lang="zh-CN"] .principle b,
html[lang="zh-CN"] .feature b,
html[lang="zh-CN"] .step h3,
html[lang="zh-CN"] .school-type h3 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
}
html[lang="zh-TW"] .hero h1,
html[lang="zh-TW"] .page-hero h1,
html[lang="zh-TW"] .section-title,
html[lang="zh-TW"] .statement h2,
html[lang="zh-TW"] .contact-band h2,
html[lang="zh-TW"] .path b,
html[lang="zh-TW"] .cycle h3,
html[lang="zh-TW"] .audience h3,
html[lang="zh-TW"] .school-entry strong,
html[lang="zh-TW"] .principle b,
html[lang="zh-TW"] .feature b,
html[lang="zh-TW"] .step h3,
html[lang="zh-TW"] .school-type h3 {
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
}
html[lang="ko"] .hero h1,
html[lang="ko"] .page-hero h1,
html[lang="ko"] .section-title,
html[lang="ko"] .statement h2,
html[lang="ko"] .contact-band h2,
html[lang="ko"] .path b,
html[lang="ko"] .cycle h3,
html[lang="ko"] .audience h3,
html[lang="ko"] .school-entry strong,
html[lang="ko"] .principle b,
html[lang="ko"] .feature b,
html[lang="ko"] .step h3,
html[lang="ko"] .school-type h3 {
  font-family: "Noto Serif KR", "Batang", serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--b06);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: 12px;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.site-header {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  top: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 31, 71, 0.09);
}
.logo {
  display: flex;
  align-items: center;
  min-width: 250px;
}
.logo img {
  width: 248px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
}
.nav a {
  position: relative;
}
.nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}
.nav a:hover:after,
.nav a.active:after {
  right: 0;
}
.language-menu {
  position: relative;
}
.language-menu summary {
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.language-menu summary::-webkit-details-marker {
  display: none;
}
.language-menu summary:after {
  content: "⌄";
  margin-left: 6px;
  color: var(--gold);
}
.language-menu[open] summary:after {
  content: "⌃";
}
.language-menu > div {
  position: absolute;
  z-index: 2;
  top: calc(100% + 18px);
  right: 0;
  width: max-content;
  min-width: 190px;
  padding: 12px 16px;
  display: grid;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(1, 19, 89, 0.12);
}
.language-menu span[aria-current="true"] {
  color: var(--muted);
}
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 21px;
  border-radius: 999px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
  cursor: pointer;
}
.menu i {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--navy);
  margin: 6px;
}
.hero {
  min-height: 850px;
  height: 100vh;
  max-height: 960px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("assets/hero-campus.png") center/cover no-repeat;
}
html[lang="ko"] .hero-photo {
  background-image: url("assets/hero-campus-ko.png");
}
html[lang="pt-BR"] .hero-photo {
  background-image: url("assets/hero-campus-pt-br.png");
}
html[lang="ne"] .hero-photo {
  background-image: url("assets/hero-campus-ne.png");
}
html[lang="vi"] .hero-photo {
  background-image: url("assets/hero-campus-vi.png");
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 244, 238, 0.98) 0%,
    rgba(247, 244, 238, 0.94) 30%,
    rgba(247, 244, 238, 0.48) 51%,
    rgba(1, 19, 89, 0.06) 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 55vw);
  margin-left: 7vw;
  padding-top: 60px;
}
.kicker,
.section-kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: #9a7921;
}
.hero h1,
.page-hero h1,
.section-title,
.statement h2,
.contact-band h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.46;
}
.hero h1 {
  font-size: clamp(46px, 5.2vw, 74px);
  margin: 20px 0 23px;
}
.hero-sub {
  font-size: 19px;
  font-family: var(--serif);
  line-height: 2;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-width: 210px;
  padding: 14px 20px 14px 25px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s;
}
.btn.primary {
  background: var(--navy);
  color: white;
}
.btn.light {
  background: #fff;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 31, 71, 0.15);
}
.scroll {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 7vw;
  font-size: 9px;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll:after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--navy);
}
.symbol-story {
  background: #fff;
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}
.symbol-wrap {
  position: relative;
  padding: 35px;
}
.symbol-wrap:before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #e9f7ff 0%, rgba(233, 247, 255, 0) 68%);
  left: 8%;
  top: 3%;
}
.symbol-wrap img {
  position: relative;
}
.section-kicker {
  margin: 0 0 22px;
}
.section-title {
  font-size: clamp(34px, 4vw, 58px);
  margin: 0 0 30px;
}
.symbol-copy > p {
  font-size: 17px;
  max-width: 620px;
}
.paths {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.path {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.path b {
  font-family: var(--serif);
  color: var(--navy);
}
.path p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.vision {
  background: var(--navy);
  color: #fff;
  padding: 120px 7vw;
  position: relative;
  overflow: hidden;
}
.vision:before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(101, 207, 255, 0.17);
  border-radius: 50%;
  right: -180px;
  top: -280px;
  box-shadow:
    0 0 0 80px rgba(101, 207, 255, 0.03),
    0 0 0 160px rgba(101, 207, 255, 0.025);
}
.vision-head {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  position: relative;
}
.vision .section-title {
  color: #fff;
}
.vision-line {
  white-space: nowrap;
}
.vision-copy {
  font-size: 17px;
  max-width: 650px;
}
.cycle {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 70px;
  position: relative;
}
.cycle article {
  min-height: 210px;
  padding: 26px 20px;
  background: rgba(255, 255, 255, 0.055);
  border-top: 2px solid var(--gold);
}
.cycle span {
  color: var(--sky);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.cycle h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 30px 0 10px;
}
.cycle p {
  font-size: 13px;
  color: #dce7f3;
  margin: 0;
}
.audiences {
  padding: 120px 7vw;
  background: var(--ivory);
}
.audience-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.audience-head p {
  max-width: 490px;
  color: var(--muted);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.school-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 0 24px;
  padding: 28px 32px;
  background: var(--navy);
  color: #fff;
  border-left: 4px solid var(--gold);
  transition: 0.25s;
}
.school-entry:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.school-entry span {
  display: grid;
  gap: 3px;
}
.school-entry small {
  color: #f0d675;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.school-entry strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}
.school-entry em {
  color: #dce7f3;
  font-size: 14px;
  font-style: normal;
}
.school-entry b {
  flex: 0 0 auto;
  font-size: 13px;
}
.audience {
  background: #fff;
  border: 1px solid rgba(6, 31, 71, 0.09);
  min-height: 305px;
  padding: 27px 22px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.audience:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.audience-no {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold);
}
.audience h3 {
  font-family: var(--serif);
  font-size: 23px;
  margin: 55px 0 14px;
}
.audience p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
}
.audience strong {
  margin-top: auto;
  color: var(--navy);
  font-size: 13px;
}
.audience:nth-child(1) {
  border-bottom: 3px solid var(--b03);
}
.audience:nth-child(2) {
  border-bottom: 3px solid var(--b04);
}
.audience:nth-child(3) {
  border-bottom: 3px solid var(--b05);
}
.audience:nth-child(4) {
  border-bottom: 3px solid var(--b06);
}
.audience:nth-child(5) {
  border-bottom: 3px solid var(--b07);
}
.companion {
  padding: 120px 7vw;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.companion-photo {
  position: relative;
}
.companion-photo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.companion-photo:after {
  content: "";
  position: absolute;
  width: 38%;
  height: 1px;
  background: var(--gold);
  right: -6%;
  bottom: 9%;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.principle {
  border-left: 1px solid var(--gold);
  padding-left: 15px;
}
.principle b {
  display: block;
  font-family: var(--serif);
}
.principle small {
  color: var(--muted);
}
.statement {
  padding: 130px 7vw;
  text-align: center;
  background: linear-gradient(180deg, #edf6ff, #fff9f0);
}
.statement h2 {
  font-size: clamp(38px, 5vw, 68px);
  margin: 0 0 20px;
}
.statement p {
  color: var(--muted);
}
.contact-band {
  padding: 95px 7vw;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.contact-band h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin: 0 0 15px;
}
.contact-band p {
  margin: 0;
  color: #dbe7f2;
}
.contact-band .btn {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.site-footer {
  background: #04152f;
  color: #fff;
  padding: 55px 6vw 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-brand img {
  width: 280px;
  height: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  font-size: 12px;
}
.footer-social {
  color: #f0d675;
}
.footer-social span {
  display: inline-block;
  margin-left: 3px;
}
.copyright {
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
  opacity: 0.65;
}
.page-hero {
  padding: 180px 7vw 95px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, #dff4ff, rgba(223, 244, 255, 0) 68%);
  right: -70px;
  top: -180px;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 66px);
  margin: 20px 0;
}
.page-lead {
  font-size: 17px;
  max-width: 700px;
}
.content {
  padding: 100px 7vw;
  background: #fff;
}
.content.alt {
  background: var(--ivory);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.copy p {
  margin: 0 0 20px;
}
.feature-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.feature {
  background: #fff;
  padding: 25px;
}
.feature b {
  font-family: var(--serif);
  font-size: 20px;
}
.feature p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0;
}
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 45px;
}
.step {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 210px;
}
.step:before {
  content: "0" counter(step);
  font-family: var(--serif);
  color: var(--gold);
}
.step h3 {
  font-family: var(--serif);
  margin: 28px 0 10px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
}
.school-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.school-type {
  background: #fff;
  padding: 30px 22px;
  border-top: 2px solid var(--gold);
}
.school-type h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 10px 0;
}
.school-type p {
  font-size: 13px;
  color: var(--muted);
}
.note {
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-top: 26px;
}
.contact-page {
  padding: 170px 7vw 110px;
  background: var(--navy);
  color: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
}
.contact-page h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.45;
}
.contact-form {
  display: grid;
  gap: 22px;
}
.contact-form label {
  font-size: 13px;
}
.contact-form span {
  color: var(--gold);
  font-size: 10px;
  margin-left: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  padding: 12px 2px;
  outline: none;
}
.contact-form select option {
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}
.contact-form button {
  border: 0;
  cursor: pointer;
}
.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
}
.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
}
.contact-form .consent span {
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.consent a {
  color: #f0d675;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page {
  padding: 150px 7vw 100px;
  background: var(--paper);
}
.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.legal-wrap > h1 {
  margin: 10px 0 45px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
}
.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.legal-section h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}
.legal-section p,
.legal-section li {
  color: var(--muted);
}
.legal-section ul {
  padding-left: 1.4em;
}
.legal-contact {
  overflow-wrap: anywhere;
}
.form-status {
  color: #f0d675;
  font-size: 13px;
}
.form-status.success {
  color: #b9f0d2;
}
.form-status.error {
  color: #ffd0d0;
}
.contact-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.prelaunch {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  margin-top: 30px;
  font-size: 13px;
  border-left: 2px solid var(--gold);
}
.contact-routes {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-route {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transition: 0.25s;
}
.contact-route:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 214, 117, 0.65);
}
.contact-route small {
  color: #f0d675;
  font-size: 12px;
}
.contact-route strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.contact-route span {
  overflow-wrap: anywhere;
  color: #dce7f3;
  font-size: 14px;
}
.instagram-link {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(240, 214, 117, 0.42);
  transition: 0.25s;
}
.instagram-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 214, 117, 0.75);
}
.instagram-link small {
  color: #f0d675;
  font-size: 12px;
}
.instagram-link strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.instagram-link span {
  color: #dce7f3;
  font-size: 14px;
}
.instagram-link b {
  margin-left: 4px;
  color: #f0d675;
  font-weight: 500;
}
@media (max-width: 1050px) {
  .menu {
    display: block;
  }
  .nav {
    display: none;
  }
  .site-header.open {
    background: #fff;
  }
  .site-header.open .nav {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 25px 4.5vw 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    box-shadow: 0 20px 30px rgba(1, 19, 89, 0.08);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-header.open .nav a {
    display: block;
  }
  .site-header.open .language-menu {
    width: 100%;
  }
  .site-header.open .language-menu > div {
    position: static;
    width: 100%;
    margin-top: 12px;
    box-shadow: none;
    border-left: 1px solid var(--gold);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cycle {
    grid-template-columns: repeat(3, 1fr);
  }
  .school-types {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 780px;
  }
  .hero-copy {
    width: min(620px, 68vw);
    margin-left: 6vw;
  }
  .hero h1 {
    font-size: clamp(43px, 7vw, 62px);
  }
  .symbol-story,
  .companion,
  .vision-head,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .symbol-wrap {
    width: min(520px, 72vw);
    margin: 0 auto;
    order: 2;
  }
  .vision-line {
    white-space: normal;
  }
  .cycle {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-head {
    align-items: start;
    flex-direction: column;
  }
  .contact-page {
    padding-top: 145px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .site-header {
    height: 68px;
    padding: 0 5vw;
  }
  .logo {
    min-width: 0;
  }
  .logo img {
    width: 205px;
  }
  .nav {
    display: none;
  }
  .site-header.open .nav {
    top: 68px;
    padding: 25px 6vw;
    max-height: calc(100dvh - 68px);
  }
  .site-header.open .nav a,
  .language-menu summary,
  .language-menu > div a,
  .language-menu > div span {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .hero {
    min-height: 760px;
    height: auto;
    padding: 130px 6vw 100px;
  }
  .hero-photo {
    background-position: 64% center;
  }
  .hero-photo:after {
    background: linear-gradient(
      90deg,
      rgba(247, 244, 238, 0.98),
      rgba(247, 244, 238, 0.86) 65%,
      rgba(247, 244, 238, 0.25)
    );
  }
  .hero-copy {
    width: 100%;
    margin: 0;
  }
  .hero h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.42;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .contact-band .btn,
  .contact-form .btn {
    width: 100%;
    min-height: 50px;
  }
  .symbol-story,
  .companion,
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
  }
  .symbol-wrap {
    order: 2;
  }
  .vision,
  .audiences,
  .content,
  .statement,
  .contact-band {
    padding: 80px 6vw;
  }
  .vision-head,
  .two-col {
    grid-template-columns: 1fr;
  }
  .cycle,
  .steps,
  .school-types {
    grid-template-columns: 1fr;
  }
  .audience-head,
  .footer-top {
    display: block;
  }
  .school-entry {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 25px 22px;
  }
  .school-entry strong {
    font-size: 22px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience {
    min-height: 250px;
  }
  .audience h3 {
    margin-top: 35px;
  }
  .contact-band {
    grid-template-columns: 1fr;
  }
  .contact-band .btn {
    margin-top: 15px;
  }
  .footer-links {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 140px 6vw 75px;
  }
  .page-hero h1 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.48;
  }
  .section-title {
    font-size: clamp(30px, 9vw, 40px);
  }
  .page-lead,
  .vision-copy,
  .symbol-copy > p {
    font-size: 16px;
  }
  .path {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 48px;
    font-size: 16px;
  }
  .footer-links {
    gap: 18px 24px;
    justify-content: flex-start;
  }
  .footer-brand img {
    width: min(280px, 82vw);
  }
  .legal-page {
    padding: 120px 6vw 75px;
  }
}
@media (max-width: 390px) {
  .logo img {
    width: 178px;
  }
  .hero {
    padding-top: 112px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .btn {
    min-width: 0;
    gap: 18px;
    padding-left: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
