:root {
  --navy: #082654;
  --navy-deep: #041a3c;
  --navy-soft: #183b68;
  --gold: #b58437;
  --gold-soft: #d6bb82;
  --ink: #12213a;
  --muted: #627083;
  --cream: #f8f5ee;
  --paper: #fffefa;
  --line: rgba(8, 38, 84, 0.13);
  --shadow: 0 18px 50px rgba(9, 29, 58, 0.08);
  --serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
  --sans: "Avenir Next", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.shell { min-height: 100vh; overflow: hidden; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(850px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(16px);
}
.header-row { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; width: 154px; height: 58px; overflow: visible; }
.brand img { display: block; width: 154px; height: auto; transform: none; }
.main-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-link {
  position: relative; color: var(--navy-soft); font-size: 12px; letter-spacing: .05em;
  padding: 32px 0 28px; white-space: nowrap; transition: color .2s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 21px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }
.lang-btn, .menu-btn {
  border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: transparent;
  font-size: 12px; letter-spacing: .08em; padding: 10px 14px; transition: .2s ease;
}
.lang-btn:hover, .menu-btn:hover { border-color: var(--gold); color: var(--gold); }
.menu-btn { display: none; width: 42px; height: 42px; padding: 0; font-size: 20px; }

.section { padding: 105px 0; }
.section-compact { padding: 78px 0; }
.section-cream { background: var(--cream); }
.section-navy { color: white; background: var(--navy-deep); }
.eyebrow {
  margin: 0 0 16px; color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(43px, 5.4vw, 78px); line-height: 1.04; letter-spacing: -.04em; text-wrap: balance; }
h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
h3 { font-size: 27px; line-height: 1.2; }
:lang(zh-CN) h1 { font-size: clamp(40px, 5.05vw, 68px); line-height: 1.13; letter-spacing: -.065em; }
:lang(zh-CN) h2 { line-height: 1.15; letter-spacing: -.045em; }
.section-navy h2, .section-navy h3 { color: white; }
.lead { color: var(--muted); font-size: 18px; line-height: 1.85; }
.body-copy { color: var(--muted); font-size: 15px; line-height: 1.9; }
.section-navy .body-copy, .section-navy .lead { color: rgba(255,255,255,.72); }
.intro { max-width: 720px; margin-bottom: 52px; }
.intro .lead { margin-bottom: 0; }

.hero { position: relative; padding: 86px 0 94px; background: linear-gradient(135deg, #fffefa 0%, #f8f4eb 100%); }
.hero::after {
  content: ""; position: absolute; width: 650px; height: 650px; right: -240px; top: -230px;
  border: 1px solid rgba(181, 132, 55, .18); border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.14fr .86fr; gap: 70px; align-items: center; }
.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.45vw, 62px);
  line-height: 1.16;
  letter-spacing: -.045em;
}
:lang(zh-CN) .hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 4.18vw, 56px);
  line-height: 1.22;
  letter-spacing: -.055em;
}
.hero .lead {
  max-width: 820px;
  margin-bottom: 32px;
  font-size: 16.5px;
  line-height: 1.85;
}
:lang(zh-CN) .hero .lead {
  max-width: 860px;
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: -.02em;
}
.hero-art { position: relative; min-height: 425px; }
.hero-logo-card {
  position: absolute; inset: 10px 0 30px 0; display: grid; place-items: center;
  border: 1px solid rgba(181,132,55,.22); background: rgba(255,255,255,.68); box-shadow: var(--shadow);
}
.hero-logo-card img { width: 82%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px;
  padding: 0 20px; border: 1px solid var(--navy); color: white; background: var(--navy);
  font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transition: .22s ease;
}
.btn:hover { color: white; border-color: var(--gold); background: var(--gold); transform: translateY(-2px); }
.btn-outline { color: var(--navy); background: transparent; }
.btn-outline:hover { color: white; }
.btn-light { color: var(--navy); border-color: white; background: white; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative; border: 1px solid var(--line); background: rgba(255,255,255,.7); box-shadow: 0 10px 30px rgba(11,36,69,.04);
}
.feature-card { min-height: 290px; padding: 30px; transition: .25s ease; }
.feature-card:hover { border-color: rgba(181,132,55,.7); transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card .number { display: block; color: var(--gold); font-family: var(--serif); font-size: 19px; margin-bottom: 40px; }
.feature-card h3 { margin-bottom: 13px; }
.text-link { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.why-card { padding: 29px 26px; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.13); }
.why-card .number { color: var(--gold-soft); font-family: var(--serif); font-size: 22px; }
.why-card h3 { margin: 28px 0 12px; font-size: 23px; }
.why-card .body-copy { margin-bottom: 0; font-size: 14px; line-height: 1.85; }

.page-hero { padding: 93px 0 76px; color: white; background: var(--navy-deep); }
.page-hero h1 { max-width: 940px; margin-bottom: 19px; color: white; font-size: clamp(42px, 5.05vw, 68px); }
:lang(zh-CN) .page-hero h1 { max-width: 1000px; font-size: clamp(38px, 4.9vw, 60px); line-height: 1.16; letter-spacing: -.075em; }
.page-hero .lead { max-width: 780px; color: rgba(255,255,255,.72); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.split-reverse { grid-template-columns: 1.1fr .9fr; }
.gold-rule { width: 74px; height: 1px; margin: 18px 0 27px; background: var(--gold); }
.statement {
  border-left: 1px solid var(--gold); padding: 6px 0 6px 25px;
  color: var(--navy); font-family: var(--serif); font-size: 26px; line-height: 1.5;
}
.list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 7px; height: 1px; background: var(--gold); }
.content-card { padding: 29px; }
.content-card h3 { margin-bottom: 14px; font-size: 25px; }
.content-card .body-copy:last-child { margin-bottom: 0; }
.content-stack { display: grid; gap: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.service-card { padding: 30px; }
.service-card .number { display: block; margin-bottom: 26px; color: var(--gold); font-family: var(--serif); font-size: 22px; }
.service-card h3 { margin-bottom: 16px; }
.service-card .body-copy:last-child { margin-bottom: 0; }
.section-subtitle { margin: -22px 0 16px; color: var(--gold); font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.timeline { display: grid; gap: 0; border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 170px 1fr; gap: 34px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.timeline-step { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.timeline-copy h3 { margin-bottom: 12px; }
.timeline-copy .body-copy:last-child { margin-bottom: 0; }
.long-form-stack { display: grid; gap: 26px; }
.long-form-block { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.long-form-block:last-child { padding-bottom: 0; border-bottom: 0; }
.long-form-block h3 { margin-bottom: 12px; font-size: 25px; }
.long-form-block .body-copy { margin-bottom: 0; }
.course-band { display: grid; grid-template-columns: .34fr .66fr; border-top: 1px solid var(--line); padding: 30px 0; }
.course-band:last-child { border-bottom: 1px solid var(--line); }
.course-band h3 { margin-bottom: 0; font-size: 25px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 19px; }
.pill { padding: 8px 11px; border: 1px solid var(--line); color: var(--navy-soft); font-size: 12px; letter-spacing: .05em; }

.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person-card { overflow: hidden; border: 1px solid var(--line); background: white; transition: .25s ease; }
.person-card:hover { border-color: rgba(181,132,55,.7); transform: translateY(-4px); box-shadow: var(--shadow); }
.portrait {
  position: relative; display: grid; place-items: center; height: 205px;
  background: linear-gradient(145deg, #e6e0d4, #f6f2e9);
}
.portrait::before {
  content: ""; position: absolute; width: 118px; height: 118px; border: 1px solid rgba(181,132,55,.35);
  border-radius: 50%;
}
.portrait span { position: relative; color: var(--navy); font-family: var(--serif); font-size: 49px; letter-spacing: -.05em; }
.portrait-photo { overflow: hidden; background: #e9e1d4; }
.portrait-photo::before { display: none; }
.portrait-photo img {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top;
  filter: saturate(.95) contrast(1.03);
}
.person-copy { padding: 18px 18px 20px; }
.person-copy h3 { margin-bottom: 8px; font-size: 21px; }
.person-copy p { margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 58px 0 22px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.group-heading h2 { margin-bottom: 0; font-size: 37px; }
.group-heading span { color: var(--gold); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.notice { padding: 21px 24px; border: 1px solid rgba(181,132,55,.35); background: #fcfaf5; }
.notice p { margin-bottom: 0; }
.artist-hero { padding: 96px 0; }
.artist-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .7fr); gap: 64px; align-items: center; }
.artist-hero-copy h1 { max-width: 780px; margin-bottom: 18px; color: white; font-size: clamp(42px, 5vw, 70px); }
.artist-hero-copy h2 { margin-bottom: 24px; color: var(--gold-soft); font-family: var(--sans); font-size: clamp(22px, 2.6vw, 34px); font-weight: 600; letter-spacing: -.02em; }
.artist-hero-copy .gold-rule { margin-bottom: 28px; }
.artist-hero-panel { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.045); padding: 38px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.age-block { display: grid; gap: 10px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.age-block span { color: var(--gold-soft); font-family: var(--serif); font-size: clamp(58px, 8vw, 96px); line-height: .9; letter-spacing: -.06em; }
.age-block strong { color: white; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.artist-support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.artist-support-grid .content-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.legal-note { margin-top: 28px; }
.legal-note .eyebrow { margin-bottom: 8px; }

.profile-hero { padding-bottom: 92px; }
.profile-hero-grid { display: grid; grid-template-columns: 1.05fr .55fr; gap: 70px; align-items: center; }
.profile-title { margin: -5px 0 34px; color: var(--gold-soft); font-size: 15px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.profile-photo { overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); box-shadow: 0 22px 60px rgba(0,0,0,.18); }
.profile-photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; filter: saturate(.95) contrast(1.03); }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.62); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); background: var(--gold); }
.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }
.profile-card { padding: 32px; }
.profile-card h2 { margin-bottom: 20px; font-size: 34px; }
.profile-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.profile-list li { position: relative; padding-left: 22px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.profile-list li::before { content: ""; position: absolute; left: 0; top: .82em; width: 8px; height: 1px; background: var(--gold); }
.resume-actions { margin-bottom: 24px; }
.resume-viewer {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  background: #ebe5da;
  padding: 24px;
  box-shadow: var(--shadow);
}
.resume-page {
  margin: 0;
  background: white;
  box-shadow: 0 12px 30px rgba(9, 29, 58, .1);
}
.resume-page img {
  display: block;
  width: 100%;
  height: auto;
}
.resume-page figcaption {
  padding: 10px 14px 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta h2 { margin-bottom: 10px; color: white; }
.cta p { max-width: 670px; margin-bottom: 0; color: rgba(255,255,255,.7); line-height: 1.8; }

.form-layout { display: grid; grid-template-columns: 1fr .62fr; gap: 65px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { color: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 0; outline: none;
  color: var(--ink); background: white; padding: 14px; transition: .2s ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,132,55,.12); }
.form-status { grid-column: 1 / -1; padding: 13px 15px; color: #245d45; background: #eef8f1; font-size: 14px; line-height: 1.5; }
.form-status-error { color: #6f3f1f; background: #fff4e8; }
.form-status a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.status-detail { display: inline-block; margin-left: 8px; font-weight: 700; }
.contact-card { padding: 28px; border: 1px solid var(--line); background: var(--cream); }
.contact-row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:first-of-type { padding-top: 0; }
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row strong { display: block; margin-bottom: 7px; color: var(--gold); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.contact-row span { color: var(--muted); font-size: 14px; line-height: 1.7; }
.china-contact-section .intro { max-width: 760px; }
.admissions-hotline { display: grid; grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr); gap: 44px; align-items: center; }
.hotline-copy .lead { margin-bottom: 0; }
.admissions-form-panel {
  margin-top: 50px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 10px 30px rgba(11,36,69,.04);
}
.admissions-form-panel h2 { margin-bottom: 24px; }
.hotline-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(181,132,55,.32);
  background: rgba(255,255,255,.78);
  padding: 30px;
  box-shadow: var(--shadow);
}
.hotline-mark {
  display: grid;
  place-items: center;
  min-height: 132px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fffefa, #f6efe2);
}
.hotline-mark img { width: 88%; display: block; }
.hotline-rows { display: grid; gap: 12px; }
.hotline-rows p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hotline-rows strong { color: var(--gold); font-weight: 700; }
.hotline-rows a { color: var(--navy); border-bottom: 1px solid rgba(181,132,55,.45); }
.hotline-rows span { color: var(--muted); }
.regional-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.china-contact-card, .advisor-contact-card {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  background: white;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(9,29,58,.06);
}
.advisor-contact-card {
  opacity: .96;
  box-shadow: 0 8px 24px rgba(9,29,58,.04);
}
.china-contact-photo, .advisor-contact-photo {
  overflow: hidden;
  background: var(--navy-deep);
  aspect-ratio: 4 / 3;
}
.china-contact-photo img, .advisor-contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.china-contact-copy h3 { margin-bottom: 8px; font-size: 30px; }
.china-contact-copy .eyebrow { margin-bottom: 12px; }
.china-contact-role {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
:lang(zh-CN) .china-contact-role {
  letter-spacing: .08em;
  text-transform: none;
}
.china-contact-rows {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.china-contact-rows p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.china-contact-rows strong { color: var(--gold); font-weight: 700; }
.china-contact-rows a { color: var(--navy); border-bottom: 1px solid rgba(181,132,55,.45); }
.china-contact-rows a:hover { color: var(--gold); }
.faq { display: grid; gap: 12px; }
details { border-top: 1px solid var(--line); padding: 19px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { color: var(--navy); font-family: var(--serif); font-size: 21px; cursor: pointer; }
details p { margin: 15px 0 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

.site-footer { color: rgba(255,255,255,.72); background: #03142f; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 50px; padding: 58px 0; }
.footer-logo-panel {
  display: inline-flex; align-items: center; justify-content: center;
  width: 285px; padding: 0; background: transparent;
  overflow: visible;
}
.footer-logo { display: block; width: 100%; height: auto; }
.site-footer .footer-logo { opacity: 1; }
.footer-brand p { max-width: 460px; margin: 17px 0 0; font-size: 13px; line-height: 1.8; }
.footer-heading { margin-bottom: 16px; color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }
.footer-links a:hover { color: white; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding: 17px 0; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .08em; }

.fade-in { animation: fadeIn .5s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1120px) {
  .brand { width: 146px; height: 54px; }
  .brand img { width: 146px; }
  .header-row { height: 74px; }
  .menu-btn { display: block; margin-left: auto; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 74px; display: none; align-items: stretch;
    flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); background: rgba(255,254,250,.98); padding: 10px 24px 18px;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 4px; font-size: 13px; }
  .nav-link::after { display: none; }
  .lang-btn { padding: 10px 13px; }
  .section { padding: 88px 0; }
  .hero { padding: 78px 0 82px; }
  .hero-grid, .split, .split-reverse, .form-layout, .footer-grid, .profile-hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero h1, :lang(zh-CN) .hero h1 { max-width: 900px; font-size: clamp(36px, 5.8vw, 50px); line-height: 1.2; }
  .hero .lead, :lang(zh-CN) .hero .lead { max-width: 760px; font-size: 16px; line-height: 1.78; }
  .hero-art { min-height: 340px; max-width: 620px; width: 100%; }
  .hero-logo-card { inset: 0; }
  .admissions-hotline, .artist-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hotline-card { max-width: 760px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .people-grid, .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 84px 0 70px; }
  .lead { font-size: 17px; line-height: 1.8; }
  .footer-grid { padding: 52px 0; }
}
@media (min-width: 900px) and (max-width: 1120px) {
  .profile-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr); align-items: center; }
  .profile-photo img { max-height: 560px; }
  .form-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); }
}
@media (max-width: 780px) {
  .container, .narrow { width: min(100% - 30px, 620px); }
  .header-row { height: 70px; }
  .brand { width: 128px; height: 48px; }
  .brand img { width: 128px; }
  .main-nav { top: 70px; padding: 9px 15px 15px; }
  .nav-link { display: flex; align-items: center; min-height: 44px; padding: 11px 5px; font-size: 12px; }
  .section { padding: 76px 0; }
  .section-compact { padding: 60px 0; }
  h1 { font-size: clamp(36px, 10.5vw, 50px); line-height: 1.08; }
  h2 { font-size: clamp(30px, 8.5vw, 42px); }
  :lang(zh-CN) h1 { font-size: clamp(34px, 9.5vw, 46px); line-height: 1.18; letter-spacing: -.055em; }
  :lang(zh-CN) h2 { font-size: clamp(30px, 8.3vw, 40px); }
  .hero { padding: 68px 0 70px; }
  .hero-grid, .split, .split-reverse, .form-layout, .footer-grid, .profile-hero-grid, .profile-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero h1, :lang(zh-CN) .hero h1 { font-size: clamp(31px, 7.8vw, 40px); line-height: 1.24; letter-spacing: -.045em; }
  .hero .lead, :lang(zh-CN) .hero .lead { font-size: 15.5px; line-height: 1.75; }
  .hero-art { min-height: 300px; }
  .hero-logo-card { inset: 0; }
  .hero-logo-card img { width: 88%; }
  .page-hero { padding: 70px 0 58px; }
  .page-hero h1, :lang(zh-CN) .page-hero h1 { max-width: 100%; font-size: clamp(34px, 9.2vw, 45px); line-height: 1.2; }
  .lead { font-size: 16px; line-height: 1.75; }
  .grid-3, .grid-4, .service-grid, .artist-support-grid { grid-template-columns: 1fr; }
  .artist-support-grid .content-card:last-child:nth-child(odd) { grid-column: auto; }
  .artist-hero { padding: 74px 0; }
  .artist-hero-panel { padding: 28px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .timeline-step { font-size: 11px; }
  .course-band { grid-template-columns: 1fr; gap: 13px; padding: 24px 0; }
  .people-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portrait { height: 165px; }
  .portrait span { font-size: 40px; }
  .person-copy { padding: 14px; }
  .person-copy h3 { font-size: 18px; }
  .profile-list li { font-size: 13px; line-height: 1.75; }
  .profile-hero { padding-bottom: 70px; }
  .profile-card { padding: 25px; }
  .profile-card h2 { font-size: 29px; }
  .resume-viewer { padding: 18px; }
  .cta { align-items: start; flex-direction: column; }
  .form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .admissions-form-panel { margin-top: 38px; padding: 24px; }
  .hotline-card { grid-template-columns: 1fr; padding: 24px; }
  .hotline-mark { max-width: 260px; min-height: 120px; }
  .regional-contact-grid { grid-template-columns: 1fr; }
  .china-contact-card, .advisor-contact-card { grid-template-columns: 1fr; gap: 22px; }
  .china-contact-photo, .advisor-contact-photo { max-width: 420px; width: 100%; }
  .footer-grid { padding: 45px 0; }
}
@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 24px, 520px); }
  .section { padding: 64px 0; }
  .page-hero { padding: 58px 0 50px; }
  .eyebrow { font-size: 10px; letter-spacing: .2em; line-height: 1.7; }
  .hero { padding: 56px 0 62px; }
  .hero h1, :lang(zh-CN) .hero h1 { font-size: clamp(29px, 8.1vw, 36px); line-height: 1.25; }
  .hero .lead, :lang(zh-CN) .hero .lead { font-size: 15px; line-height: 1.72; }
  .hero-art { min-height: 230px; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 46px; padding: 0 16px; }
  .people-grid { grid-template-columns: 1fr; }
  .portrait { height: 230px; }
  .person-copy p { font-size: 12px; line-height: 1.65; }
  .feature-card { min-height: auto; padding: 24px; }
  .feature-card .number { margin-bottom: 26px; }
  .content-card, .profile-card, .contact-card { padding: 22px; }
  .resume-viewer { padding: 12px; }
  .group-heading { margin-top: 46px; }
  .group-heading h2 { font-size: 31px; }
  .statement { font-size: 22px; padding-left: 18px; }
  .footer-logo-panel { width: min(260px, 100%); }
}
