:root {
  --ink: #172c31;
  --ink-soft: #4e5f61;
  --navy: #0d3440;
  --navy-deep: #082831;
  --navy-light: #174b57;
  --gold: #d2ad60;
  --gold-light: #ead69f;
  --gold-pale: #f2e5bf;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --sand: #e9e1d2;
  --sage: #93a991;
  --white: #fff;
  --line: rgba(23, 44, 49, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 28px 80px rgba(6, 32, 39, 0.16);
  --container: 1240px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--navy-deep);
  background: var(--gold-light);
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 5.4vw, 76px);
}

h2 em,
h1 em {
  color: var(--gold);
  font-weight: 400;
}

p {
  margin-bottom: 1.3em;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #52666a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow.dark {
  color: rgba(13, 52, 64, 0.74);
}

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.42;
  letter-spacing: -0.015em;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  color: var(--navy);
  background: transparent;
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
}

.button-small {
  min-height: 45px;
  padding: 0 19px;
  font-size: 11px;
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.button-dark {
  color: var(--white);
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.button-dark:hover {
  color: var(--navy-deep);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  gap: 18px;
  color: #96742f;
}

.light-link {
  color: rgba(255, 255, 255, 0.85);
}

.light-link:hover {
  color: var(--gold-light);
}

/* Top bar and navigation */
.announcement {
  position: relative;
  z-index: 110;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-deep);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.announcement-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(210, 173, 96, 0.13);
}

.announcement-links {
  display: flex;
  gap: 13px;
}

.announcement a {
  transition: color 0.2s ease;
}

.announcement a:hover {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(247, 243, 234, 0.97);
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  height: 74px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(9, 39, 47, 0.08);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 310px;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(13, 52, 64, 0.14);
  border-radius: 50%;
}

.brand-mark svg {
  width: 36px;
  height: 36px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.brand-copy small {
  margin-top: 5px;
  color: #607074;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.4vw, 37px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: #294147;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 34px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  content: "";
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(30deg, transparent 49.4%, var(--gold) 49.5%, var(--gold) 50.5%, transparent 50.6%),
    linear-gradient(-30deg, transparent 49.4%, var(--gold) 49.5%, var(--gold) 50.5%, transparent 50.6%);
  background-position: -100px -180px, -100px -180px;
  background-size: 360px 624px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 45%);
  mask-image: linear-gradient(90deg, #000, transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 790px;
  grid-template-columns: 0.91fr 1.09fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  padding-top: 62px;
  padding-bottom: 72px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 27px;
  font-size: clamp(62px, 6.8vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.73);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.hero-trust p {
  margin: 0;
}

.hero-trust strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.avatar-seal {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(210, 173, 96, 0.65);
  border-radius: 50%;
  line-height: 1.1;
}

.avatar-seal span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
}

.avatar-seal small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.hero-photo {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(100%, 530px);
  height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 265px 265px 8px 8px;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 26, 32, 0.05) 52%, rgba(3, 26, 32, 0.88));
  content: "";
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.78) sepia(0.06) contrast(1.04);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero:hover .hero-photo > img {
  transform: scale(1.025);
}

.hero-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 27px;
  left: auto;
  display: flex;
  width: 245px;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}

.hero-photo figcaption small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.location-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.location-icon svg {
  width: 19px;
  height: 19px;
}

.hero-inset {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: -44px;
  width: 235px;
  margin: 0;
  padding: 8px;
  color: var(--white);
  background: var(--ivory);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  transform: rotate(-2.2deg);
}

.hero-inset img {
  width: 100%;
  height: 146px;
  object-fit: cover;
}

.hero-inset figcaption {
  padding: 9px 7px 4px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.hero-word {
  position: absolute;
  z-index: 1;
  top: 100px;
  left: -25px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 112px;
  writing-mode: vertical-rl;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 27px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.39);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  width: 1px;
  height: 44px;
  background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Facts */
.facts-bar {
  position: relative;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  min-height: 166px;
  grid-template-columns: 1.55fr repeat(4, 1fr);
}

.fact {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 30px clamp(18px, 2.4vw, 37px);
  border-right: 1px solid var(--line);
}

.fact:first-child {
  border-left: 1px solid var(--line);
}

.fact > strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(35px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.fact > span {
  margin-top: 8px;
  color: #6f7d7f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-source {
  color: var(--white);
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.fact-source strong {
  color: var(--navy-deep);
  font-size: 24px;
  line-height: 1.18;
}

.fact-source .fact-kicker {
  margin: 0 0 12px;
  color: rgba(13, 52, 64, 0.63);
}

.facts-note {
  position: absolute;
  right: 14px;
  bottom: 5px;
  margin: 0;
  color: rgba(23, 44, 49, 0.66);
  font-size: 9px;
  letter-spacing: 0.03em;
}

/* Story */
.story-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(13, 52, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 52, 64, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 80px 80px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.story-media {
  position: relative;
  min-height: 690px;
}

.arched-image {
  position: absolute;
  inset: 0 38px 0 0;
  margin: 0;
  overflow: hidden;
  border-radius: 270px 270px 5px 5px;
  box-shadow: var(--shadow);
}

.arched-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(4, 25, 31, 0.45));
  content: "";
}

.arched-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.76) contrast(1.03);
}

.story-card {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 45px;
  width: 220px;
  padding: 25px 28px 27px;
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: 0 20px 50px rgba(12, 43, 50, 0.2);
}

.story-card-number {
  display: block;
  font-family: var(--serif);
  font-size: 70px;
  line-height: 0.9;
}

.story-card p {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.vertical-caption {
  position: absolute;
  z-index: 3;
  top: 180px;
  right: -4px;
  margin: 0;
  color: #738184;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.story-copy {
  max-width: 540px;
}

.story-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-soft);
}

.story-copy blockquote {
  position: relative;
  margin: 38px 0 35px;
  padding: 25px 25px 24px 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-copy blockquote p {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
}

.story-copy blockquote cite {
  color: #718083;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

/* Programs */
.learning-intro {
  background: var(--paper);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 67px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(13, 52, 64, 0.09);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.program-card:hover {
  box-shadow: 0 24px 60px rgba(9, 44, 53, 0.13);
  transform: translateY(-8px);
}

.program-card figure {
  height: 310px;
  margin: 0;
  overflow: hidden;
}

.program-card figure::after {
  position: absolute;
  inset: 0 0 auto;
  height: 310px;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 34, 41, 0.42));
  content: "";
  pointer-events: none;
}

.program-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.program-card:nth-child(2) figure img {
  object-position: center 28%;
}

.program-card:hover figure img {
  transform: scale(1.045);
}

.program-number {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}

.program-body {
  position: relative;
  min-height: 240px;
  padding: 38px 34px 35px;
}

.program-icon {
  position: absolute;
  top: -31px;
  right: 30px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border: 6px solid var(--ivory);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 24px;
}

.program-icon svg {
  width: 24px;
  height: 24px;
}

.program-body h3 {
  margin-bottom: 15px;
  font-size: 29px;
}

.program-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.representational-note {
  max-width: 750px;
  margin: 30px auto 0;
  color: #7a8687;
  font-size: 10px;
  letter-spacing: 0.025em;
  text-align: center;
}

/* Approach */
.approach-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 46px;
  color: var(--white);
  background: var(--navy);
}

.approach-section::before {
  position: absolute;
  top: -270px;
  right: -150px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(210, 173, 96, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(210, 173, 96, 0.035), 0 0 0 180px rgba(210, 173, 96, 0.025);
  content: "";
}

.approach-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(65px, 8vw, 110px);
}

.approach-heading > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.63);
}

.approach-heading h2 {
  font-size: clamp(47px, 5vw, 72px);
}

.tab-list {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.approach-tab {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 18px;
  padding: 19px 40px 19px 0;
  color: rgba(255, 255, 255, 0.54);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: left;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.approach-tab::after {
  position: absolute;
  right: 4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.approach-tab span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.approach-tab:hover,
.approach-tab.active {
  padding-left: 10px;
  color: var(--white);
}

.approach-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #0a2831;
}

.approach-panel[hidden] {
  display: none;
}

.approach-panel.active {
  animation: panelIn 0.52s ease both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.approach-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 31, 38, 0.02) 35%, rgba(6, 31, 38, 0.78));
  content: "";
}

.approach-panel > img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.04);
}

#panel-multisensory > img {
  object-position: center 36%;
}

.panel-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(88%, 550px);
  padding: 36px 40px;
  color: var(--ink);
  background: var(--paper);
}

.panel-kicker {
  margin-bottom: 12px;
  color: #7c6a3e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-card h3 {
  margin-bottom: 22px;
  font-size: 30px;
}

.panel-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.panel-card li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  color: #a17e34;
}

.approach-source {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  text-align: right;
}

/* History */
.history-section {
  background: var(--ivory);
}

.history-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 75px;
}

.history-header h2,
.history-header p {
  margin-bottom: 0;
}

.history-header > p {
  max-width: 500px;
  padding-bottom: 14px;
  color: var(--ink-soft);
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 214px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 185px 59px 1fr;
  align-items: start;
  padding-bottom: 34px;
}

.timeline-year {
  padding-top: 8px;
  color: #9b762d;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  text-align: right;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 12px auto 0;
  background: var(--ivory);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--ivory);
}

.timeline-copy {
  max-width: 770px;
  padding: 0 0 36px 38px;
  border-bottom: 1px solid var(--line);
}

.timeline-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #778587;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.timeline-copy h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.timeline-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Heritage banner */
.heritage-banner {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.heritage-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.65) contrast(1.08);
}

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 29, 35, 0.93), rgba(5, 29, 35, 0.6) 57%, rgba(5, 29, 35, 0.45));
}

.heritage-content {
  position: relative;
  z-index: 2;
}

.heritage-content .hebrew-accent {
  display: block;
  margin-bottom: 21px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.heritage-content > p {
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.heritage-content h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(50px, 6vw, 82px);
}

/* Community */
.community-section {
  background: var(--paper);
}

.community-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(70px, 9vw, 125px);
}

.community-copy {
  padding-top: 30px;
}

.community-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-soft);
}

.culture-badge {
  margin-top: 35px;
  padding: 23px 25px;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
}

.culture-badge span {
  display: block;
  margin-bottom: 7px;
  color: #886723;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.culture-badge p {
  margin: 0;
  color: #667476;
  font-size: 11px;
  line-height: 1.65;
}

.commitments {
  border: 1px solid var(--line);
}

.commitments-heading {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: var(--white);
  background: var(--navy);
}

.commitments-heading span {
  font-family: var(--serif);
  font-size: 19px;
}

.commitments-heading small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.commitments article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding: 30px 32px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.commitments article:last-child {
  border-bottom: 0;
}

.commitments article:hover {
  background: var(--ivory);
}

.commitment-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #98752f;
  border: 1px solid rgba(152, 117, 47, 0.38);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
}

.commitments h3 {
  margin-bottom: 7px;
  font-size: 25px;
}

.commitments p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.photo-journal {
  display: grid;
  height: 760px;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 125px;
}

.photo-journal figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.photo-journal figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 27, 33, 0.72));
  content: "";
}

.photo-journal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.photo-journal figure:hover img {
  transform: scale(1.04);
}

.journal-large {
  grid-row: 1 / 3;
}

.journal-wide {
  grid-column: 2 / 4;
}

.photo-journal figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.photo-journal figcaption span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Admissions */
.admissions-section {
  overflow: hidden;
  color: var(--navy-deep);
  background: var(--gold);
}

.admissions-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at center, transparent 0 25px, rgba(13, 52, 64, 0.8) 26px 27px, transparent 28px),
    linear-gradient(30deg, transparent 49.5%, rgba(13, 52, 64, 0.8) 50%, transparent 50.5%),
    linear-gradient(-30deg, transparent 49.5%, rgba(13, 52, 64, 0.8) 50%, transparent 50.5%);
  background-position: 0 0, 0 0, 0 0;
  background-size: 120px 120px;
  -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
}

.admissions-section .container {
  position: relative;
  z-index: 2;
}

.admissions-header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 100px;
}

.admissions-header h2 {
  margin-bottom: 0;
}

.admissions-header h2 em {
  color: var(--white);
}

.admissions-intro {
  max-width: 500px;
  padding-bottom: 11px;
}

.admissions-intro p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}

.admissions-intro .button {
  margin-top: 4px;
}

.admissions-steps {
  display: grid;
  grid-template-columns: 1fr 65px 1fr 65px 1fr 65px 1fr;
  align-items: start;
  margin: 80px 0 64px;
}

.admissions-steps article {
  text-align: center;
}

.admissions-steps article > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 0 auto 19px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(13, 52, 64, 0.34);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
}

.admissions-steps h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.admissions-steps p {
  margin: 0;
  color: rgba(13, 52, 64, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.step-line {
  height: 1px;
  margin-top: 25px;
  background: rgba(13, 52, 64, 0.27);
}

.admissions-details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.requirements-card,
.admissions-note {
  padding: 45px 48px;
  background: var(--paper);
  box-shadow: 0 23px 55px rgba(63, 44, 6, 0.1);
}

.card-label {
  margin-bottom: 13px;
  color: #8b6b2c;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.requirements-card h3,
.admissions-note h3 {
  margin-bottom: 27px;
  font-size: 31px;
}

.requirements-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.requirements-card li svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  margin-top: 1px;
  color: #a17c2d;
  border: 1px solid rgba(161, 124, 45, 0.38);
  border-radius: 50%;
  padding: 3px;
}

.requirements-card li strong {
  color: var(--ink);
  font-weight: 700;
}

.admissions-note {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.admissions-note .note-mark {
  position: absolute;
  top: 35px;
  right: 38px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(210, 173, 96, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.admissions-note .card-label {
  color: var(--gold-light);
}

.admissions-note dl {
  margin-bottom: 25px;
}

.admissions-note dl > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.admissions-note dt {
  color: rgba(255, 255, 255, 0.5);
}

.admissions-note dd {
  margin: 0;
  font-weight: 600;
}

.fine-print {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.65;
}

/* FAQ */
.faq-section {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(75px, 10vw, 145px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(46px, 4.6vw, 67px);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-heading .text-link {
  margin-top: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 58px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 17px;
  height: 1px;
  background: var(--navy);
  content: "";
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -3px 58px 29px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list details p a {
  color: #87651f;
  border-bottom: 1px solid currentColor;
}

/* Visit */
.visit-section {
  display: grid;
  min-height: 780px;
  grid-template-columns: 0.84fr 1.16fr;
  color: var(--white);
  background: var(--navy-deep);
}

.visit-image {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}

.visit-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 27, 33, 0.05), rgba(5, 27, 33, 0.5));
  content: "";
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.66) contrast(1.03);
}

.visit-image-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 5vw, 80px);
  padding: 95px max(40px, calc((100vw - var(--container)) / 2)) 95px clamp(55px, 6vw, 95px);
}

.visit-copy h2 {
  font-size: clamp(48px, 5vw, 70px);
}

.visit-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.visit-copy address {
  display: grid;
  gap: 18px;
  margin: 33px 0;
  font-style: normal;
}

.visit-copy address a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}

.visit-copy address a > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(210, 173, 96, 0.36);
  border-radius: 50%;
}

.visit-copy address svg {
  width: 19px;
  height: 19px;
}

.visit-copy address small {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.map-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #12424d;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.22);
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: rotate(-8deg) scale(1.2);
}

.map-line {
  position: absolute;
  display: block;
  background: rgba(247, 243, 234, 0.26);
  box-shadow: 0 0 0 6px rgba(247, 243, 234, 0.04);
}

.line-one {
  top: 0;
  left: 46%;
  width: 4px;
  height: 115%;
  transform: rotate(12deg);
}

.line-two {
  top: 56%;
  left: -5%;
  width: 115%;
  height: 4px;
  transform: rotate(-9deg);
}

.map-street {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.street-one {
  top: 48%;
  left: 12%;
  transform: rotate(-9deg);
}

.street-two {
  top: 23%;
  left: 54%;
  transform: rotate(12deg);
}

.map-pin {
  position: absolute;
  z-index: 5;
  top: 45%;
  left: 46%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translate(-20%, -50%);
}

.map-pin > svg {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin > svg use {
  transform: rotate(45deg);
  transform-origin: center;
}

.map-pin div {
  min-width: 165px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.23);
  font-size: 10px;
  line-height: 1.4;
}

.map-pin strong,
.map-pin small {
  display: block;
}

.map-pin small {
  color: #6a7779;
}

.map-pulse {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: mapPulse 2.2s infinite;
}

@keyframes mapPulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(2.8); }
}

.map-subway {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.map-subway span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: #f2c100;
  border-radius: 50%;
  font-size: 12px;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #061f26;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  align-items: start;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.footer-brand {
  min-width: 0;
  color: var(--white);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.4;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a {
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.research-note {
  padding-bottom: 38px;
}

.research-note details {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.research-note summary {
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-note-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  padding: 7px 0 22px;
}

.research-note-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  line-height: 1.65;
}

.research-note-content a {
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 35px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.045em;
}

.back-to-top {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  margin-left: auto;
  color: var(--gold-light);
  border: 1px solid rgba(210, 173, 96, 0.35);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.back-to-top:hover {
  color: var(--navy);
  background: var(--gold);
}

/* Reveal motion */
html.js .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Interior pages */
.desktop-nav a[aria-current="page"]::after,
.mobile-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: #8d6921;
}

.mobile-menu a[aria-current="page"] {
  color: var(--gold-light);
}

.page-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(210, 173, 96, 0.11), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 68%, #154854);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, transparent 49.5%, var(--gold) 49.7%, var(--gold) 50.3%, transparent 50.5%),
    linear-gradient(-30deg, transparent 49.5%, var(--gold) 49.7%, var(--gold) 50.3%, transparent 50.5%);
  background-size: 300px 520px;
  content: "";
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.87fr) minmax(430px, 1.13fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 86px 0 92px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.breadcrumbs span[aria-hidden="true"] {
  opacity: 0.45;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.6vw, 96px);
}

.page-hero-summary {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.5;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.page-hero-visual {
  position: relative;
  height: 550px;
  align-self: end;
  margin-top: 54px;
}

.page-hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0, transparent 22%, transparent 76%, rgba(8, 40, 49, 0.28) 100%);
  content: "";
  pointer-events: none;
}

.page-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 240px 240px 0 0;
  filter: saturate(0.8) contrast(1.04);
}

.page-hero-caption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(6, 31, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-hero-caption strong {
  color: var(--gold-light);
  font-size: 10px;
}

.page-jumpbar {
  color: #365157;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-jumpbar .container {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: clamp(25px, 4vw, 58px);
  overflow-x: auto;
}

.page-jumpbar span {
  flex: 0 0 auto;
  color: #8b723e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-jumpbar a {
  flex: 0 0 auto;
  padding: 22px 0 18px;
  border-bottom: 2px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-jumpbar a:hover {
  color: #85682c;
  border-color: var(--gold);
}

.inner-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(70px, 10vw, 145px);
}

.inner-intro-copy h2 {
  max-width: 790px;
}

.inner-intro-copy .lead {
  max-width: 780px;
}

.inner-intro-copy > p:not(.eyebrow):not(.lead) {
  max-width: 700px;
  color: var(--ink-soft);
}

.inner-aside {
  padding: 36px;
  background: var(--paper);
  border-top: 3px solid var(--gold);
  box-shadow: 0 22px 58px rgba(9, 42, 50, 0.09);
}

.inner-aside > span {
  display: block;
  margin-bottom: 22px;
  color: #927334;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.inner-aside h3 {
  margin-bottom: 20px;
  font-size: 31px;
}

.inner-aside p {
  color: var(--ink-soft);
  font-size: 14px;
}

.inner-aside p:last-child {
  margin-bottom: 0;
}

.section-paper {
  background: var(--paper);
}

.section-mist {
  background: #e7eeea;
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: 75px;
  margin-bottom: 64px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
}

.section-heading-row.light > p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 42px 36px 36px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.feature-card::after {
  position: absolute;
  right: -35px;
  bottom: -65px;
  width: 140px;
  height: 140px;
  opacity: 0.14;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.feature-card-number {
  display: block;
  margin-bottom: 70px;
  color: #9b7834;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.feature-card h3 {
  margin-bottom: 17px;
  font-size: 31px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.media-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
  gap: 0;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.media-story.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.media-story figure {
  position: relative;
  min-height: 570px;
  margin: 0;
}

.media-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-story figcaption,
.community-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(6, 31, 38, 0.82);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-story-copy {
  display: flex;
  padding: clamp(52px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.media-story-copy h2 {
  font-size: clamp(45px, 5vw, 69px);
}

.media-story-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.media-story-copy .lead {
  color: rgba(255, 255, 255, 0.9);
}

.detail-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

.detail-list li::before {
  color: var(--gold-light);
  content: "✦";
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(13, 52, 64, 0.16);
  border: 1px solid rgba(13, 52, 64, 0.16);
}

.commitment-card {
  display: grid;
  min-height: 215px;
  grid-template-columns: 62px 1fr;
  align-content: start;
  gap: 22px;
  padding: 38px;
  background: var(--ivory);
}

.commitment-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
}

.commitment-card h3 {
  margin: 4px 0 11px;
  font-size: 27px;
}

.commitment-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 10px;
  color: #69511f;
  background: var(--gold-pale);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-label::before {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.community-gallery {
  display: grid;
  height: 680px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.community-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.community-gallery figure:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.community-gallery figure:nth-child(2) {
  grid-column: 7 / 13;
}

.community-gallery figure:nth-child(3) {
  grid-column: 7 / 10;
}

.community-gallery figure:nth-child(4) {
  grid-column: 10 / 13;
}

.community-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.community-gallery figure:hover img {
  transform: scale(1.035);
}

.source-note {
  margin-top: 30px;
  color: #667679;
  font-size: 10px;
  line-height: 1.7;
}

.source-note a {
  color: #765b27;
  border-bottom: 1px solid currentColor;
}

.media-story-copy .source-note {
  color: rgba(255, 255, 255, 0.58);
}

.media-story-copy .source-note a {
  color: var(--gold-light);
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* Keep compact editorial labels legible across the interior-page variants. */
.page-hero-media .inset-photo figcaption,
.campus-caption small,
.quick-contact small,
.field label,
.topics-field legend,
.field small,
.no-send-note,
.direct-method small,
.visit-map-card small,
.photo-strip figcaption span {
  font-size: 10px !important;
}

.inner-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background: var(--navy);
}

.inner-cta::after {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 530px;
  height: 530px;
  opacity: 0.18;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(210, 173, 96, 0.1), 0 0 0 160px rgba(210, 173, 96, 0.06);
  content: "";
}

.inner-cta .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 65px;
}

.inner-cta h2 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(45px, 5vw, 70px);
}

.inner-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1020px) {
  .page-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-hero-copy {
    padding: 78px 0 35px;
  }

  .page-hero-visual {
    width: min(100%, 690px);
    height: 470px;
    margin: 0 auto;
  }

  .inner-intro-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .media-story,
  .media-story.reverse {
    grid-template-columns: 1fr;
  }

  .media-story.reverse figure {
    order: -1;
  }

  .media-story figure {
    min-height: 450px;
  }

  .inner-cta .container {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 700px) {
  .page-hero h1 {
    font-size: clamp(50px, 16vw, 70px);
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .page-hero-copy {
    padding-top: 62px;
  }

  .page-hero-visual {
    height: 390px;
  }

  .page-hero-visual > img {
    border-radius: 180px 180px 0 0;
  }

  .page-hero-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .page-jumpbar .container {
    width: calc(100% - 30px);
  }

  .inner-aside {
    padding: 30px 25px;
  }

  .feature-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 300px;
    padding: 34px 28px;
  }

  .feature-card-number {
    margin-bottom: 48px;
  }

  .commitment-card {
    min-height: 0;
    grid-template-columns: 47px 1fr;
    gap: 16px;
    padding: 28px 22px;
  }

  .commitment-card > span {
    width: 43px;
    height: 43px;
    font-size: 15px;
  }

  .media-story figure {
    min-height: 350px;
  }

  .media-story-copy {
    padding: 52px 26px;
  }

  .community-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 230px 230px;
  }

  .community-gallery figure:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .community-gallery figure:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .community-gallery figure:nth-child(3),
  .community-gallery figure:nth-child(4) {
    grid-column: auto;
    grid-row: 3;
  }

  .inner-cta {
    padding: 78px 0;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .brand {
    min-width: 275px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .nav-cta {
    margin-left: 21px;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-inset {
    left: -15px;
  }

  .visit-section {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .visit-content {
    padding-right: 35px;
    padding-left: 50px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    background: var(--ivory);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    flex-direction: column;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: calc(38px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 30px;
    flex-direction: column;
    color: var(--white);
    background: rgba(8, 40, 49, 0.98);
    overflow-y: auto;
  }

  .site-header.scrolled .mobile-menu {
    top: 74px;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    padding: 8px;
    font-family: var(--serif);
    font-size: 32px;
  }

  .mobile-menu .button {
    margin-top: 22px;
    color: var(--navy-deep);
    background: var(--gold);
    border-color: var(--gold);
  }

  .hero,
  .hero-grid {
    min-height: 720px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero h1 {
    font-size: clamp(58px, 7.9vw, 78px);
  }

  .hero-photo {
    height: 565px;
  }

  .hero-media {
    min-height: 590px;
  }

  .hero-inset {
    bottom: 10px;
    width: 190px;
  }

  .hero-inset img {
    height: 110px;
  }

  .facts-grid {
    min-height: 145px;
    grid-template-columns: 1.25fr repeat(4, 1fr);
  }

  .fact {
    padding: 25px 18px;
  }

  .story-grid {
    gap: 70px;
  }

  .story-media {
    min-height: 590px;
  }

  .program-card figure {
    height: 250px;
  }

  .program-card figure::after {
    height: 250px;
  }

  .approach-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }

  .approach-panel,
  .approach-panel > img {
    min-height: 600px;
    height: 600px;
  }

  .panel-card {
    width: 95%;
  }

  .community-grid {
    gap: 60px;
  }

  .photo-journal {
    height: 620px;
    margin-top: 95px;
  }

  .admissions-header {
    gap: 70px;
  }

  .admissions-steps {
    grid-template-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
  }

  .visit-section {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .visit-content {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 310px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 95px 0;
  }

  .announcement-links span,
  .announcement-links a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 80px;
    padding-bottom: 105px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(64px, 12vw, 90px);
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-photo {
    right: 6%;
    left: 6%;
    width: auto;
    max-width: none;
    height: 610px;
  }

  .hero-inset {
    bottom: -5px;
    left: 0;
    width: 220px;
  }

  .hero-inset img {
    height: 140px;
  }

  .hero-scroll {
    display: none;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    min-height: 135px;
    border-bottom: 1px solid var(--line);
  }

  .fact-source {
    grid-column: 1 / 3;
  }

  .fact:last-child {
    grid-column: 1 / 3;
    align-items: center;
    text-align: center;
  }

  .facts-note {
    position: static;
    margin: 8px 20px;
    text-align: center;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .story-media {
    min-height: 680px;
  }

  .story-copy {
    max-width: 680px;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .program-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .program-card figure,
  .program-card figure::after {
    height: 100%;
    min-height: 300px;
  }

  .program-body {
    display: flex;
    min-height: 300px;
    justify-content: center;
    flex-direction: column;
  }

  .program-icon {
    top: 25px;
    right: 25px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-heading > p:not(.eyebrow) {
    max-width: 650px;
  }

  .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .approach-tab:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .approach-panel,
  .approach-panel > img {
    height: 680px;
  }

  .history-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline::before {
    left: 119px;
  }

  .timeline-item {
    grid-template-columns: 95px 49px 1fr;
  }

  .timeline-year {
    font-size: 19px;
  }

  .timeline-copy {
    padding-left: 22px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-copy {
    max-width: 680px;
  }

  .photo-journal {
    height: 900px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.3fr 0.7fr 0.8fr;
  }

  .journal-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .journal-wide {
    grid-column: 1 / 3;
  }

  .admissions-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .admissions-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .step-line {
    display: none;
  }

  .admissions-details {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading {
    position: static;
    max-width: 650px;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-image {
    min-height: 500px;
  }

  .visit-content {
    grid-template-columns: 1fr 1fr;
    padding: 85px 36px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .announcement {
    letter-spacing: 0.055em;
  }

  .announcement-inner {
    min-height: 34px;
  }

  .announcement p {
    font-size: 9px;
  }

  .announcement-links a {
    font-size: 9px;
  }

  .site-header {
    height: 70px;
  }

  .site-header.scrolled {
    height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .brand-copy strong {
    max-width: 205px;
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .mobile-menu {
    top: 104px;
  }

  .site-header.scrolled .mobile-menu {
    top: 66px;
  }

  .hero-grid {
    padding-top: 65px;
    padding-bottom: 85px;
  }

  .hero h1 {
    font-size: clamp(56px, 17.2vw, 76px);
    line-height: 0.96;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 23px;
    flex-direction: column;
  }

  .hero-trust {
    margin-top: 38px;
  }

  .hero-media {
    min-height: 490px;
  }

  .hero-photo {
    right: 0;
    left: 24px;
    height: 480px;
    border-radius: 230px 230px 4px 4px;
  }

  .hero-inset {
    bottom: -12px;
    width: 155px;
  }

  .hero-inset img {
    height: 95px;
  }

  .hero-inset figcaption {
    font-size: 7px;
  }

  .hero-word {
    display: none;
  }

  .facts-grid {
    width: 100%;
  }

  .fact {
    min-height: 126px;
  }

  .fact-source {
    min-height: 138px;
  }

  .fact-source strong {
    font-size: 22px;
  }

  .story-media {
    min-height: 500px;
  }

  .arched-image {
    right: 15px;
    border-radius: 220px 220px 4px 4px;
  }

  .story-card {
    right: 0;
    bottom: 25px;
    width: 172px;
    padding: 19px 21px;
  }

  .story-card-number {
    font-size: 52px;
  }

  .vertical-caption {
    display: none;
  }

  .lead {
    font-size: 22px;
  }

  .story-copy blockquote {
    padding-right: 10px;
  }

  .program-card {
    display: block;
  }

  .program-card figure,
  .program-card figure::after {
    height: 285px;
    min-height: 0;
  }

  .program-body {
    min-height: 230px;
    padding: 36px 28px;
  }

  .program-icon {
    top: -31px;
  }

  .approach-section {
    padding-top: 85px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .approach-tab:nth-child(odd) {
    border-right: 0;
  }

  .approach-panel,
  .approach-panel > img {
    min-height: 600px;
    height: 600px;
  }

  .panel-card {
    width: calc(100% - 18px);
    padding: 28px 25px;
  }

  .panel-card h3 {
    font-size: 26px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    grid-template-columns: 25px 1fr;
  }

  .timeline-year {
    grid-column: 2;
    padding-top: 0;
    text-align: left;
  }

  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 13px;
    height: 13px;
    margin-top: 8px;
  }

  .timeline-copy {
    grid-column: 2;
    padding: 8px 0 32px;
  }

  .timeline-copy h3 {
    font-size: 27px;
  }

  .heritage-banner {
    min-height: 540px;
  }

  .heritage-content h2 {
    font-size: 49px;
  }

  .commitments-heading {
    align-items: flex-start;
    gap: 5px;
    padding: 17px 20px;
    flex-direction: column;
  }

  .commitments article {
    grid-template-columns: 42px 1fr;
    gap: 17px;
    padding: 25px 20px;
  }

  .commitment-number {
    width: 40px;
    height: 40px;
  }

  .photo-journal {
    height: 760px;
    gap: 8px;
    margin-top: 75px;
  }

  .photo-journal figcaption {
    right: 13px;
    bottom: 11px;
    left: 13px;
    font-size: 14px;
  }

  .admissions-header {
    gap: 22px;
  }

  .admissions-steps {
    grid-template-columns: 1fr;
    margin: 60px 0 50px;
  }

  .admissions-steps article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
    text-align: left;
  }

  .admissions-steps article > span {
    grid-row: 1 / 3;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .admissions-steps h3,
  .admissions-steps p {
    grid-column: 2;
  }

  .requirements-card,
  .admissions-note {
    padding: 35px 26px;
  }

  .admissions-note dl > div {
    grid-template-columns: 105px 1fr;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 20px;
  }

  .faq-list details p {
    margin-right: 20px;
  }

  .visit-image {
    min-height: 390px;
  }

  .visit-content {
    grid-template-columns: 1fr;
    padding: 75px 22px;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card {
    height: 370px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 65px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-tagline {
    font-size: 22px;
  }

  .research-note-content {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .footer-bottom .container {
    min-height: 90px;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 20px 0;
    flex-direction: column;
  }

  .back-to-top {
    position: absolute;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
