:root {
  --ink: #17251f;
  --ink-soft: #4d5c55;
  --paper: #fbf8f0;
  --paper-deep: #f2ecdf;
  --white: #ffffff;
  --green: #0b4a38;
  --green-deep: #063429;
  --green-soft: #dfece5;
  --gold: #b88a3b;
  --gold-soft: #e7d2a8;
  --line: rgba(11, 74, 56, 0.14);
  --shadow: 0 24px 70px rgba(20, 43, 34, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.section-title, h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.08; }
.section-title { margin: 0; font-size: clamp(2.25rem, 5vw, 4.65rem); letter-spacing: -.04em; }
.section-copy { max-width: 670px; margin: 20px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-head .section-copy { margin: 0; }
.muted { color: var(--ink-soft); }
.surface { background: var(--white); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 248, 240, .93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 12px 34px rgba(20, 43, 34, .06); }
.topbar { color: #dbeae4; background: var(--green-deep); font-size: .78rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 18px; }
.topbar a:hover { color: var(--white); }
.nav-shell { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand img { width: 49px; height: 53px; object-fit: contain; }
.brand-copy { display: grid; }
.brand-copy strong { color: var(--green-deep); font-family: var(--display); font-size: 1.12rem; font-weight: 600; line-height: 1.15; }
.brand-copy span { color: var(--ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > a, .language-menu > summary {
  padding: 10px 11px;
  border-radius: 10px;
  color: #33463e;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 650;
  list-style: none;
}
.main-nav > a:hover, .main-nav > a[aria-current="page"], .language-menu > summary:hover { color: var(--green); background: rgba(11, 74, 56, .07); }
.language-menu { position: relative; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::after { content: "⌄"; padding-left: 5px; }
.language-list {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 148px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.language-list a { display: block; padding: 9px 11px; border-radius: 9px; font-size: .86rem; }
.language-list a:hover { background: var(--green-soft); }
.nav-cta { margin-left: 3px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--green); transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--green-deep); box-shadow: 0 12px 25px rgba(11, 74, 56, .2); transform: translateY(-2px); }
.button-light { color: var(--green-deep); background: var(--white); border-color: var(--white); }
.button-ghost { color: var(--green); background: transparent; }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .74rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; background: var(--green-deep); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; }
.hero-copy { z-index: 2; padding: 86px 7vw 88px max(0px, calc((100vw - 1180px) / 2)); color: var(--white); }
.hero-copy .eyebrow { color: var(--gold-soft); }
.hero-copy h1 { max-width: 700px; margin: 0; font-size: clamp(3.6rem, 6.7vw, 7.15rem); letter-spacing: -.055em; }
.hero-copy h1 em { color: var(--gold-soft); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 640px; margin: 28px 0 34px; color: #cfddd7; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { position: relative; align-self: stretch; min-height: 620px; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-deep) 0%, transparent 34%), linear-gradient(0deg, rgba(6,52,41,.72), transparent 45%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.04); }
.hero-seal { position: absolute; z-index: 3; right: 8%; bottom: 9%; width: 144px; height: 144px; display: grid; place-items: center; color: var(--green-deep); background: var(--gold-soft); border: 8px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 16px 40px rgba(0,0,0,.25); text-align: center; }
.hero-seal strong { display: block; font-family: var(--display); font-size: 2.15rem; line-height: 1; }
.hero-seal span { display: block; margin-top: 4px; font-size: .6rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-pattern { position: absolute; inset: auto auto -280px -220px; width: 620px; height: 620px; border: 1px solid rgba(231,210,168,.16); border-radius: 50%; }
.hero-pattern::before, .hero-pattern::after { content: ""; position: absolute; inset: 70px; border: inherit; border-radius: inherit; }
.hero-pattern::after { inset: 140px; }

.stats { position: relative; z-index: 5; margin-top: -1px; background: var(--white); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 32px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; color: var(--green); font-family: var(--display); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 500; line-height: 1; }
.stat span { display: block; margin-top: 7px; color: var(--ink-soft); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.intro { padding: 130px 0; }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.image-stack { position: relative; min-height: 585px; }
.image-stack .image-main { width: 82%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.image-stack .image-small { position: absolute; right: 0; bottom: 0; width: 48%; height: 235px; object-fit: cover; border: 10px solid var(--paper); border-radius: 27px; }
.image-caption { position: absolute; left: 24px; bottom: 32px; max-width: 230px; padding: 18px; color: var(--white); background: rgba(6,52,41,.9); border-radius: 16px; font-size: .8rem; backdrop-filter: blur(8px); }
.intro-copy h2 { margin: 0; font-size: clamp(2.7rem, 5.2vw, 5.25rem); letter-spacing: -.045em; }
.intro-copy .lead { margin: 25px 0 20px; color: var(--green); font-family: var(--display); font-size: 1.42rem; line-height: 1.5; }
.intro-copy p { color: var(--ink-soft); }

.academics { padding: 120px 0; background: var(--paper-deep); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card { min-height: 270px; padding: 30px; background: var(--white); border: 1px solid transparent; border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.program-card:hover { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-6px); }
.program-number { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--green); background: var(--green-soft); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.program-card h3 { margin: 34px 0 13px; font-size: 1.65rem; }
.program-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.legacy { padding: 130px 0; overflow: hidden; }
.legacy-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 8vw, 110px); }
.legacy-quote { position: sticky; top: 150px; align-self: start; }
.legacy-quote blockquote { margin: 20px 0 0; color: var(--green-deep); font-family: var(--display); font-size: clamp(2rem, 4.2vw, 4.2rem); line-height: 1.16; letter-spacing: -.035em; }
.timeline { position: relative; padding-left: 50px; }
.timeline::before { content: ""; position: absolute; top: 9px; bottom: 20px; left: 13px; width: 1px; background: var(--gold-soft); }
.timeline-item { position: relative; padding: 0 0 46px; }
.timeline-item::before { content: ""; position: absolute; top: 7px; left: -43px; width: 13px; height: 13px; background: var(--gold); border: 6px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 1px var(--gold); }
.timeline-item time { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.timeline-item h3 { margin: 8px 0 12px; font-size: 1.75rem; }
.timeline-item p { margin: 0; color: var(--ink-soft); }

.admission-band { position: relative; overflow: hidden; padding: 105px 0; color: var(--white); background: var(--green); }
.admission-band::after { content: ""; position: absolute; right: -120px; top: -200px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.02); }
.admission-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 70px; }
.admission-grid h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.04em; }
.admission-grid p { color: #d7e5df; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.step { padding: 24px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.step span { color: var(--gold-soft); font-family: var(--display); font-size: 2.1rem; }
.step h3 { margin: 16px 0 8px; font-size: 1.25rem; }
.step p { margin: 0; font-size: .84rem; }

.news { padding: 120px 0; }
.feature-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.feature-card { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius-lg); }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:hover img { transform: scale(1.025); }
.feature-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 38px; color: var(--white); background: linear-gradient(0deg, rgba(6,52,41,.94), rgba(6,52,41,.06) 72%); }
.feature-overlay h3 { max-width: 560px; margin: 8px 0 13px; font-size: clamp(2rem, 4vw, 3.55rem); }
.feature-overlay p { max-width: 590px; margin: 0; color: #e5eee9; }
.contact-card { padding: 40px; color: var(--white); background: var(--green-deep); border-radius: var(--radius-lg); }
.contact-card h3 { margin: 60px 0 14px; font-size: 2.45rem; }
.contact-card p { color: #cfddd7; }
.contact-card .contact-list { margin: 36px 0; padding: 0; list-style: none; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-list small { display: block; color: #9db9ae; font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.page-hero { position: relative; min-height: 485px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--green-deep); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,52,41,.98) 0%, rgba(6,52,41,.85) 48%, rgba(6,52,41,.32)); }
.page-hero-media { position: absolute; inset: 0 0 0 42%; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-copy { position: relative; z-index: 2; max-width: 790px; padding: 105px 0 76px; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); letter-spacing: -.055em; }
.page-hero p { max-width: 680px; margin: 22px 0 0; color: #d7e5df; font-size: 1.08rem; }
.breadcrumbs { position: absolute; z-index: 3; top: 28px; color: #c8d8d1; font-size: .78rem; }
.breadcrumbs a:hover { color: var(--white); }

.content-section { padding: 110px 0; }
.content-section + .content-section { padding-top: 0; }
.prose-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 130px); }
.prose-aside { align-self: start; padding: 28px; background: var(--green-soft); border-radius: var(--radius-md); }
.prose-aside h3 { margin: 0 0 12px; font-size: 1.5rem; }
.prose-aside p { margin: 0; color: var(--ink-soft); }
.prose h2 { margin: 0 0 24px; font-size: clamp(2.5rem, 5vw, 4.6rem); letter-spacing: -.04em; }
.prose h3 { margin: 42px 0 12px; font-size: 1.7rem; }
.prose p { color: var(--ink-soft); }
.prose .lead { color: var(--green); font-family: var(--display); font-size: 1.35rem; line-height: 1.5; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 900; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.info-card h3 { margin: 0 0 13px; font-size: 1.55rem; }
.info-card p { margin: 0; color: var(--ink-soft); }
.info-card .tag { display: inline-block; margin-bottom: 32px; color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.curriculum-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.curriculum-table th, .curriculum-table td { padding: 19px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.curriculum-table th { color: var(--white); background: var(--green); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.curriculum-table tr:last-child td { border-bottom: 0; }
.curriculum-table td:first-child { color: var(--green); font-weight: 800; }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person-card { position: relative; overflow: hidden; min-height: 330px; padding: 32px; display: flex; flex-direction: column; justify-content: end; color: var(--white); background: var(--green-deep); border-radius: var(--radius-md); }
.person-card::before { content: attr(data-initials); position: absolute; top: 18px; right: 22px; color: rgba(231,210,168,.12); font-family: var(--display); font-size: 7rem; line-height: 1; }
.person-card .role { color: var(--gold-soft); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.person-card h3 { margin: 10px 0 9px; font-size: 1.8rem; }
.person-card a { color: #d5e3dd; font-size: .88rem; }
.person-card a:hover { color: var(--white); }

.gallery-grid { columns: 3 280px; column-gap: 16px; }
.gallery-item { position: relative; display: block; width: 100%; margin: 0 0 16px; padding: 0; overflow: hidden; background: var(--green-soft); border: 0; border-radius: 18px; cursor: zoom-in; break-inside: avoid; }
.gallery-item img { width: 100%; transition: transform .35s ease, filter .35s ease; }
.gallery-item:hover img { transform: scale(1.025); filter: brightness(.92); }
.lightbox { position: fixed; z-index: 1000; inset: 0; display: none; place-items: center; padding: 28px; background: rgba(4, 22, 16, .94); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox-close { position: absolute; top: 20px; right: 22px; width: 45px; height: 45px; color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; cursor: pointer; }

.notice { display: flex; gap: 16px; padding: 23px; color: #60491e; background: #f5ead3; border: 1px solid #e5cf9f; border-radius: 17px; }
.notice strong { flex: 0 0 auto; }
.notice p { margin: 0; color: inherit; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; }
.contact-panel { padding: clamp(30px, 5vw, 58px); border-radius: var(--radius-lg); }
.contact-panel.dark { color: var(--white); background: var(--green-deep); }
.contact-panel.light { background: var(--white); border: 1px solid var(--line); }
.contact-panel h2 { margin: 0 0 26px; font-size: clamp(2.5rem, 4vw, 4rem); }
.contact-detail { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-panel.light .contact-detail { border-color: var(--line); }
.contact-detail span { display: block; color: var(--gold-soft); font-size: .69rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel.light .contact-detail span { color: var(--gold); }
.contact-detail strong, .contact-detail a { display: block; margin-top: 5px; font-size: 1rem; font-weight: 650; }

.cta { padding: 100px 0; background: var(--paper-deep); }
.cta-box { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 86px); color: var(--white); background: var(--green); border-radius: var(--radius-lg); }
.cta-box::after { content: "١٣٢١"; position: absolute; right: 4%; bottom: -26px; color: rgba(255,255,255,.075); font-family: var(--display); font-size: clamp(8rem, 20vw, 18rem); line-height: .8; }
.cta-box h2 { position: relative; z-index: 1; max-width: 720px; margin: 0 0 22px; font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.04em; }
.cta-box p { position: relative; z-index: 1; max-width: 620px; color: #d9e6e1; }
.cta-box .button { position: relative; z-index: 1; margin-top: 16px; }

.site-footer { padding: 80px 0 24px; color: #c6d8d0; background: #042a21; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr 1fr; gap: 50px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy span { color: #93b1a5; }
.footer-brand > p { max-width: 370px; color: #9eb7ad; font-size: .89rem; }
.site-footer h3 { margin: 0 0 18px; color: var(--white); font-family: var(--sans); font-size: .74rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #a9c0b7; font-size: .88rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 62px; padding-top: 23px; color: #829e93; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

[dir="rtl"] { font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif; }
[dir="rtl"] .eyebrow { letter-spacing: 0; font-size: .92rem; }
[dir="rtl"] .eyebrow::before { order: 2; }
[dir="rtl"] .hero-copy, [dir="rtl"] .page-hero-copy { text-align: right; }
[dir="rtl"] .main-nav { margin-left: 0; margin-right: auto; }
[dir="rtl"] .language-list { right: auto; left: 0; }
[dir="rtl"] .text-link::after { content: "←"; }
[dir="rtl"] .check-list li { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .check-list li::before { left: auto; right: 0; }

@media (max-width: 1050px) {
  .topbar { display: none; }
  .nav-shell { min-height: 76px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: calc(100vh - 76px);
    display: none;
    align-items: stretch;
    padding: 20px;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(20,43,34,.14);
  }
  .menu-open .main-nav { display: grid; }
  .main-nav > a, .language-menu > summary { padding: 13px 14px; font-size: .96rem; }
  .language-list { position: static; margin-top: 5px; box-shadow: none; }
  .nav-cta { justify-self: start; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 90px max(20px, calc((100vw - 820px) / 2)); }
  .hero-media { min-height: 510px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(6,52,41,.86), transparent 60%); }
  .intro-grid, .legacy-grid, .admission-grid, .prose-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-copy { order: -1; }
  .legacy-quote { position: static; }
  .card-grid, .info-grid, .people-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .contact-card h3 { margin-top: 20px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .brand-copy strong { font-size: .94rem; }
  .brand-copy span { font-size: .59rem; }
  .brand img { width: 43px; height: 47px; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 78px 20px 62px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-media { min-height: 380px; }
  .hero-seal { width: 116px; height: 116px; right: 20px; bottom: 20px; }
  .hero-seal strong { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 18px; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-left: 0; }
  .intro, .legacy, .content-section { padding: 82px 0; }
  .academics, .news { padding: 82px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .section-copy { margin-top: 18px; }
  .image-stack { min-height: 440px; }
  .image-stack .image-main { height: 390px; }
  .image-stack .image-small { height: 170px; }
  .card-grid, .info-grid, .people-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 240px; }
  .steps { grid-template-columns: 1fr; }
  .admission-band { padding: 80px 0; }
  .feature-card { min-height: 430px; }
  .feature-overlay { padding: 26px; }
  .page-hero { min-height: 460px; }
  .page-hero-media { inset: 0; opacity: .45; }
  .page-hero-copy { padding-bottom: 60px; }
  .page-hero h1 { font-size: clamp(3.4rem, 16vw, 5.4rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (max-width: 460px) {
  .brand-copy strong { max-width: 190px; }
  .brand-copy span { display: none; }
  .hero-actions .button { width: 100%; }
  .image-stack .image-main { width: 92%; }
  .image-stack .image-small { width: 55%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
