:root {
  --ink: #fffaf1;
  --paper: #f8f7f0;
  --white: #ffffff;
  --navy: #263d55;
  --blue-soft: #f4f8fc;
  --gold: #8a6940;
  --red: #f04a3e;
  --text: #25211c;
  --muted: #5d574f;
  --line: rgba(122, 148, 172, 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #17120f;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  background: var(--paper);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

main {
  background: var(--white);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  width: min(100% - 48px, 1480px);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 0;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(18px);
  transform: translate(-50%, -50%) translateY(9px);
  z-index: 0;
  pointer-events: none;
}

.brand img {
  width: auto;
  height: 82px;
  display: block;
  position: relative;
  z-index: 1;
  transform: translateY(5px);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.42)) drop-shadow(0 0 36px rgba(255, 255, 255, 0.18));
}

.nav {
  display: flex;
  justify-content: center;
  justify-self: center;
  margin-left: 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled .nav {
  padding-left: 36px;
  padding-right: 36px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 30px rgba(24, 38, 53, 0.08);
  backdrop-filter: blur(18px) saturate(1.12);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.11em;
  font-weight: 400;
  color: rgba(255, 250, 241, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  white-space: nowrap;
}

.site-header.is-scrolled .nav-list {
  color: #25211c;
  text-shadow: none;
}

.nav-item {
  position: relative;
  padding: 10px 0;
  margin: -10px 0;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -26px;
  right: -26px;
  top: 100%;
  height: 30px;
}

.nav-list a {
  display: inline-flex;
  padding: 8px 0;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav-list > .nav-item > a:hover,
.nav-list > .nav-item > a:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.2),
    0 0 28px rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-header.is-scrolled .nav-list > .nav-item > a {
  color: #25211c;
  font-weight: 400;
  text-shadow: none;
}

.site-header.is-scrolled .nav-list > .nav-item > a:hover,
.site-header.is-scrolled .nav-list > .nav-item > a:focus-visible {
  color: #25211c;
  text-shadow: none;
}

.sub-nav {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  min-width: 246px;
  margin: 0;
  padding: 18px 20px 20px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 240, 0.9));
  box-shadow:
    0 24px 54px rgba(25, 32, 41, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.08);
  display: grid;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sub-nav::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(138, 105, 64, 0.72), rgba(138, 105, 64, 0));
}

.nav-item:hover .sub-nav,
.nav-item:focus-within .sub-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.13);
  color: rgba(37, 33, 28, 0.86);
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  white-space: normal;
  transition: color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.sub-nav li:last-child a {
  border-bottom: 0;
}

.sub-nav a:hover,
.sub-nav a:focus-visible {
  color: #263d55;
  border-color: rgba(138, 105, 64, 0.28);
  transform: translateX(4px);
  outline: none;
}

.apply,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  border: 0.75px solid transparent;
  color: var(--ink);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  box-shadow: var(--shadow-action);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 40px;
  margin-top: 0;
  padding: 0 14px;
  border-radius: var(--radius-control);
  border: 0.75px solid transparent;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fcfbf8;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-action);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease;
  justify-self: end;
}

.button:hover,
.button:focus-visible,
.apply:hover,
.apply:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-action-hover);
  outline: none;
}

.button-line {
  color: var(--navy-link);
  background: transparent;
  border-color: rgba(45, 68, 90, 0.34);
  border-radius: var(--radius-control);
  box-shadow: none;
}

.button-line:hover,
.button-line:focus-visible {
  color: var(--navy);
  background: rgba(45, 68, 90, 0.06);
  border-color: rgba(45, 68, 90, 0.52);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fffaf1;
  cursor: pointer;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transition: opacity 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.menu-toggle span {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

main section[id] {
  scroll-margin-top: 96px;
}

.program-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #17120f;
  color: var(--ink);
  border-radius: 0;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.94) contrast(0.94);
}

.program-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(255, 214, 168, 0.08), rgba(255, 214, 168, 0) 34%),
    linear-gradient(180deg, rgba(22, 18, 22, 0.46) 0%, rgba(18, 13, 18, 0.18) 28%, rgba(19, 15, 18, 0.52) 100%),
    linear-gradient(90deg, rgba(27, 22, 31, 0.3), rgba(27, 22, 31, 0.08) 48%, rgba(27, 22, 31, 0.3));
  pointer-events: none;
}

.hero-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 154px 0 132px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-content {
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(245, 233, 189, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  max-width: 16.5ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 56ch;
  margin: 28px 0 0;
  color: rgba(255, 248, 238, 0.9);
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .button {
  padding: 14px 22px;
  border-radius: var(--radius-control);
  font-size: 0.96rem;
}

.program-hero .hero-actions .button {
  width: 210px;
  height: 50px;
}

.hero-actions .hero-apply {
  padding: 0 14px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.hero-actions .hero-outline {
  color: #fffaf1;
  background: transparent;
  border-color: rgba(255, 250, 241, 0.74);
  box-shadow: none;
}

.hero-actions .hero-outline:hover,
.hero-actions .hero-outline:focus-visible {
  color: #fffaf1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 250, 241, 0.96);
  box-shadow: 0 10px 24px rgba(18, 14, 12, 0.18);
}

.section {
  padding: clamp(78px, 8vw, 112px) 24px;
  background: var(--white);
  color: var(--text);
}

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

.section-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

h2 {
  margin: 0;
  color: #201d18;
  font-size: clamp(2.05rem, 3.9vw, 4rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0;
}

.section-lead {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(37, 33, 28, 0.78);
  font-size: clamp(1.16rem, 1.6vw, 1.4rem);
  line-height: 1.52;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.copy-block p {
  margin: 0 0 18px;
  color: rgba(37, 33, 28, 0.78);
  font-size: clamp(1.1rem, 1.3vw, 1.26rem);
  line-height: 1.6;
}

.mission-section {
  text-align: center;
}

.mission-section .section-inner {
  width: min(100%, 1040px);
}

.mission-seal {
  width: clamp(118px, 12vw, 170px);
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.mission-mark {
  margin: 0 0 18px;
  color: rgba(99, 118, 141, 0.9);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.mission-title {
  margin: 0 auto;
  max-width: none;
  color: var(--navy-soft);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

#essence-title,
#fit-title,
#curriculum-title,
#method-title,
#formation-title,
#details-title,
#costs-title,
#admissions-title,
#outcomes-title {
  max-width: none;
  margin: 0;
  color: var(--navy-soft);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.mission-copy {
  max-width: 44rem;
  margin: 28px auto 0;
  color: rgba(37, 33, 28, 0.76);
  font-size: clamp(1.16rem, 1.52vw, 1.38rem);
  line-height: 1.6;
}

.mission-copy p {
  margin: 0;
}

.mission-copy p + p {
  margin-top: 18px;
}

.essence-section {
  padding-top: clamp(96px, 10vw, 152px);
  padding-bottom: clamp(104px, 11vw, 164px);
}

.essence-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  justify-items: stretch;
}

.essence-header {
  width: 100%;
  margin: 0;
}

.essence-header .section-kicker {
  margin: 0 0 16px;
}

.essence-section h2 {
  max-width: none;
  margin: 0;
  text-wrap: balance;
}

.essence-copy {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 24px;
}

.essence-copy p {
  max-width: none;
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.who-section {
  padding-top: clamp(92px, 10vw, 148px);
  padding-bottom: clamp(102px, 11vw, 162px);
  background: #ffffff;
}

.who-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  justify-items: stretch;
}

.who-header {
  width: 100%;
  margin: 0;
}

.who-header h2 {
  max-width: none;
  margin: 0;
  text-wrap: balance;
}

.who-manifesto {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 24px;
}

.who-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.who-statement {
  padding-top: 0;
  border-top: 0;
}

.who-statement p {
  max-width: none;
  margin: 0;
  color: rgba(37, 33, 28, 0.74);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.who-statement strong {
  color: #1e2f43;
  font-weight: 700;
}

.snapshot-section .section-inner {
  width: min(100%, 750px);
}

.snapshot-panel {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(138, 105, 64, 0.16);
  background: transparent;
  box-shadow: none;
}

.snapshot-panel h2 {
  margin: 0 0 28px;
  color: #1e2f43;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1;
  font-weight: 400;
}

.snapshot-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.snapshot-list li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 0.75px solid rgba(138, 105, 64, 0.14);
}

.snapshot-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.snapshot-list li:last-child {
  padding-bottom: 0;
}

.snapshot-label {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}

.snapshot-value {
  color: #3f4c5a;
  font-size: 1.06rem;
  line-height: 1.52;
}

.snapshot-value a {
  color: #20384d;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.snapshot-value a:hover,
.snapshot-value a:focus-visible {
  color: #172d42;
  outline: none;
}

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

.info-card {
  padding: clamp(24px, 2.7vw, 34px);
  background: rgba(246, 249, 253, 0.92);
  border: 0.75px solid rgba(122, 148, 172, 0.16);
  box-shadow: 0 12px 28px rgba(26, 34, 44, 0.035);
}

.info-card h3 {
  margin: 0 0 12px;
  color: #20384d;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1;
  font-weight: 400;
}

.info-card p {
  margin: 0;
  color: #5c6672;
  font-size: 1.02rem;
  line-height: 1.54;
}

.outcomes-section {
  padding-top: clamp(96px, 10vw, 152px);
  padding-bottom: clamp(104px, 11vw, 164px);
}

.outcomes-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  justify-items: stretch;
}

.outcomes-header {
  width: 100%;
  margin: 0;
}

.outcomes-header .section-kicker {
  margin: 0 0 16px;
}

.outcomes-header h2 {
  max-width: none;
  margin: 0;
  text-wrap: balance;
}

.outcomes-header .section-lead {
  max-width: none;
  margin: 18px 0 0;
  text-align: left;
}

.outcomes-copy {
  width: 100%;
  display: grid;
  gap: 24px;
}

.outcomes-copy p {
  max-width: none;
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.faq-section .section-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-top: 0.75px solid rgba(122, 148, 172, 0.16);
  padding-top: 12px;
}

.faq-item:last-child {
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.16);
  padding-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: #20384d;
  font-size: clamp(1.1rem, 1.45vw, 1.24rem);
  line-height: 1.4;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  margin: 12px 0 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.06rem, 1.32vw, 1.2rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.testimonial-section {
  padding-top: clamp(96px, 10vw, 152px);
  padding-bottom: clamp(104px, 11vw, 164px);
}

.testimonial-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.testimonial-header {
  width: 100%;
  margin: 0;
}

.testimonial-header .section-kicker {
  margin: 0 0 16px;
}

.testimonial-header h2 {
  max-width: none;
  margin: 0;
  text-wrap: balance;
}

.testimonial-figure {
  margin: 0;
  display: grid;
  gap: 28px;
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.testimonial-pull {
  margin: 0;
  color: #20384d;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.3;
  font-weight: 400;
  text-wrap: balance;
}

.testimonial-body {
  display: grid;
  gap: 24px;
  border-left: 2px solid rgba(138, 105, 64, 0.35);
  padding-left: clamp(18px, 2.4vw, 28px);
}

.testimonial-body p {
  max-width: none;
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.testimonial-attribution {
  display: grid;
  gap: 4px;
}

.testimonial-name {
  color: #20384d;
  font-size: clamp(1.06rem, 1.32vw, 1.18rem);
  font-weight: 600;
  line-height: 1.3;
}

.testimonial-role {
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.curriculum-header {
  width: min(100%, 750px);
  max-width: none;
  margin: 0 auto 34px;
}

.curriculum-header .section-lead {
  max-width: none;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.year-card {
  padding: 30px 28px;
  background: #ffffff;
  border: 0.75px solid rgba(122, 148, 172, 0.16);
  box-shadow: 0 14px 30px rgba(22, 28, 36, 0.05);
}

.year-card h3 {
  margin: 0 0 18px;
  color: #201d18;
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  line-height: 0.95;
  font-weight: 400;
}

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

.course-list li {
  padding-top: 10px;
  color: #4f5d6b;
  border-top: 0.75px solid rgba(122, 148, 172, 0.13);
  font-size: 1.02rem;
  line-height: 1.32;
}

.method-section .section-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.method-section .section-header,
.formation-section .section-header {
  margin-bottom: 0;
}

.method-section h2 {
  max-width: none;
  margin: 0;
}

.method-section .section-lead {
  max-width: none;
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-align: left;
  text-wrap: pretty;
}

.method-copy {
  display: grid;
  gap: 24px;
}

.method-list {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
  text-align: left;
  display: grid;
  gap: 8px;
}

.method-list li {
  margin: 0;
  color: rgba(37, 33, 28, 0.74);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
}

.method-note {
  max-width: none;
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-align: left;
  text-wrap: pretty;
}

.formation-section .section-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.formation-copy {
  display: grid;
  gap: 24px;
}

.formation-copy p {
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.details-section .section-inner {
  width: min(100%, 750px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

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

.detail-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  border-bottom: 0;
  text-align: left;
}

.detail-label {
  color: #000;
  font-size: 1.15rem;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
}

.detail-value {
  color: #25211c;
  font-size: 1rem;
  line-height: 1.62;
  font-style: normal;
}

.detail-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.detail-links a {
  display: inline-block;
  color: #263d55;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.admissions-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.admissions-section .section-inner {
  width: min(100%, 750px);
  margin: 0 auto;
}

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

.admissions-main {
  display: grid;
  gap: 28px;
}

.admissions-intro {
  max-width: 48rem;
}

.admissions-intro p {
  margin: 0;
  color: #4f5d6b;
  font-size: 1.08rem;
  line-height: 1.62;
}

.admissions-checklist {
  padding: clamp(24px, 2.8vw, 34px);
  background: var(--paper);
  border: 1px solid rgba(138, 105, 64, 0.16);
  box-shadow: 0 16px 34px rgba(54, 44, 32, 0.08);
}

.admissions-checklist h3 {
  margin: 0 0 10px;
  color: #20384d;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  line-height: 1;
  font-weight: 400;
}

.admissions-checklist-intro {
  margin: 0;
  color: #4f5d6b;
  font-size: 1.02rem;
  line-height: 1.58;
}

.admissions-checklist-note {
  margin: 14px 0 0;
  color: #5c6672;
  font-size: 0.98rem;
  line-height: 1.56;
}

.admissions-todo {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.admissions-todo-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 12px;
  border-top: 0.75px solid rgba(122, 148, 172, 0.16);
}

.admissions-todo-item input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #20384d;
}

.admissions-todo-item label {
  color: #3f4c5a;
  font-size: 1.02rem;
  line-height: 1.52;
  cursor: pointer;
}

.admissions-todo-item strong {
  color: #20384d;
  font-weight: 600;
}

.admissions-todo-link {
  display: inline-block;
  margin-top: 8px;
  color: #20384d;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.admissions-todo-action {
  grid-column: 2 / -1;
  padding-top: 2px;
}

.admissions-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  border: 0.75px solid transparent;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: var(--shadow-action);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.admissions-apply-link:hover,
.admissions-apply-link:focus-visible {
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
  outline: none;
}

.admissions-steps {
  display: grid;
  gap: 12px;
}

.admissions-step {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 0.75px solid rgba(122, 148, 172, 0.16);
}

.admissions-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.admissions-step-label {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}

.admissions-step-text {
  color: #4f5d6b;
  font-size: 1.04rem;
  line-height: 1.58;
}

.admissions-card {
  padding: clamp(28px, 3vw, 38px);
  background: transparent;
  border: 1px solid rgba(138, 105, 64, 0.16);
}

.admissions-card-layout {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
  align-items: center;
}

.admissions-card-photo {
  overflow: hidden;
  border: 1px solid rgba(138, 105, 64, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

.admissions-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.admissions-card h3 {
  margin: 0 0 14px;
  color: #1e2f43;
  font-size: clamp(1.8rem, 2.2vw, 2.25rem);
  line-height: 0.96;
  font-weight: 400;
}

.admissions-card p {
  margin: 0;
  color: #4f5d6b;
  font-size: 1.05rem;
  line-height: 1.58;
}

.admissions-card-mail {
  display: inline-block;
  margin-top: 8px;
  color: #20384d;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: none;
  text-underline-offset: 0.12em;
}

.admissions-card-mail:hover,
.admissions-card-mail:focus-visible {
  text-decoration: underline;
  outline: none;
}

.admissions-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-left: 0;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  border: 0.75px solid transparent;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-action);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.admissions-apply-link:hover,
.admissions-apply-link:focus-visible {
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
  outline: none;
}

.admissions-card-email {
  margin-top: 8px;
  color: #20384d;
  font-size: 1.02rem;
  line-height: 1.2;
}

.admissions-card-name {
  margin-bottom: 0;
  color: #20384d;
  font-weight: 700;
}

.admissions-card-mail {
  margin-top: 0;
  line-height: 1.2;
}

@media (max-width: 720px) {
  .admissions-card-layout {
    grid-template-columns: 1fr;
  }

  .admissions-card-photo {
    max-width: 220px;
  }
}

.costs-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.costs-section .section-inner {
  width: min(100%, 750px);
  margin: 0 auto;
}

.costs-highlight {
  padding: clamp(28px, 3vw, 40px);
  background: #ffffff;
  border: 1px solid rgba(138, 105, 64, 0.16);
  box-shadow: 0 18px 38px rgba(54, 44, 32, 0.08);
}

.costs-highlight h3 {
  margin: 0 0 28px;
  color: #1e2f43;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  line-height: 1;
  font-weight: 400;
}

.costs-breakdown {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.costs-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 0.75px solid rgba(122, 148, 172, 0.16);
  color: #3f4c5a;
  font-size: 1.02rem;
  line-height: 1.4;
}

.costs-breakdown strong {
  color: #20384d;
  font-weight: 400;
  font-size: 0.92rem;
}

.costs-breakdown li.costs-breakdown-estimate {
  color: #3f4c5a;
}

.costs-breakdown li.costs-breakdown-total {
  margin-top: 6px;
  padding-top: 16px;
  color: #20384d;
  font-size: 1.08rem;
  font-weight: 400;
  border-top: 1.5px solid rgba(32, 56, 77, 0.16);
  align-items: start;
}

.costs-breakdown li.costs-breakdown-total strong {
  font-weight: 700;
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  line-height: 1;
}

.costs-breakdown-total-copy {
  display: grid;
  gap: 4px;
}

.costs-breakdown-total-copy span {
  color: #20384d;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  font-weight: 700;
  line-height: 1.05;
}

.costs-breakdown-total-amount {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.costs-breakdown-total-copy small {
  color: rgba(92, 102, 114, 0.9);
  font-size: 0.92rem;
  line-height: 1.4;
}

.costs-block + .costs-block {
  margin-top: 18px;
}

.costs-block {
  padding-bottom: 12px;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.16);
}

.costs-block.costs-block-no-divider {
  border-bottom: none;
  padding-bottom: 0;
}

.costs-block-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}

.costs-scholarship-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  color: #3f4c5a;
}

.costs-scholarship-line span {
  font-weight: 400;
}

.costs-scholarship-line span.costs-line-emphasis {
  font-weight: 600;
  color: #20384d;
  font-size: 1rem;
}

.costs-scholarship-line strong {
  color: #20384d;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  font-weight: 600;
  white-space: nowrap;
}

.costs-scholarship-note {
  margin: 10px 0 0;
  max-width: 34ch;
  color: rgba(92, 102, 114, 0.9);
  font-size: 0.84rem;
  line-height: 1.35;
}

.costs-options {
  display: grid;
  gap: 14px;
}

.costs-subgroup {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.costs-option-group {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.16);
}

.costs-option-group.costs-option-group-no-divider {
  border-bottom: none;
  padding-bottom: 0;
}

.costs-option-group-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.costs-option-group-header-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.costs-option-group-copy {
  display: grid;
  gap: 2px;
}

.costs-option-group-copy.is-inline-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.costs-toggle {
  appearance: none;
  inline-size: 20px;
  block-size: 20px;
  margin: 0;
  border: 1px solid rgba(38, 61, 85, 0.36);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.costs-toggle::before {
  content: "x";
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 100%;
  block-size: 100%;
  color: transparent;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
}

.costs-toggle:checked::before {
  color: rgba(38, 61, 85, 0.82);
}

.costs-option-group[data-cost-toggle-group]:hover .costs-toggle {
  border-color: rgba(38, 61, 85, 0.5);
  background: rgba(38, 61, 85, 0.04);
}

.costs-option-group[data-cost-toggle-group]:hover .costs-toggle::before {
  color: rgba(38, 61, 85, 0.5);
}

.costs-option-group[data-cost-toggle-group]:hover .costs-option-group-header h4 {
  text-decoration: line-through;
}

.costs-option-group[data-cost-toggle-group]:hover .costs-option-group-header,
.costs-option-group[data-cost-toggle-group]:hover .costs-option-value,
.costs-option-group[data-cost-toggle-group]:hover .costs-option-group-header h4,
.costs-option-group[data-cost-toggle-group]:hover .costs-option-note {
  color: rgba(92, 102, 114, 0.78);
}

.costs-toggle:focus-visible {
  outline: none;
  border-color: rgba(38, 61, 85, 0.5);
  box-shadow: 0 0 0 3px rgba(38, 61, 85, 0.08);
}

.costs-option-group.is-disabled .costs-option-group-header,
.costs-option-group.is-disabled .costs-option-value,
.costs-option-group.is-disabled .costs-option-group-header h4,
.costs-option-group.is-disabled .costs-option-note {
  color: rgba(92, 102, 114, 0.58);
}

.costs-option-group.is-disabled .costs-option-group-header h4 {
  text-decoration: line-through;
}

.costs-option-group.is-disabled[data-cost-toggle-group]:hover .costs-option-group-header h4 {
  text-decoration: none;
}

.costs-option-group-header h4 {
  margin: 0;
  color: #20384d;
  font-size: 1rem;
  font-weight: 500;
}

.costs-option-note {
  color: rgba(92, 102, 114, 0.9);
  font-size: 0.84rem;
  line-height: 1.35;
}

.costs-option-group-no-divider .costs-option-note {
  max-width: 34ch;
}

.costs-option-value {
  color: #20384d;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.costs-input {
  inline-size: 6ch;
  min-inline-size: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #20384d;
  font: inherit;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  box-sizing: border-box;
}

.costs-input-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35ch;
  min-inline-size: 136px;
  padding: 6px 10px;
  border: 1px solid rgba(122, 148, 172, 0.26);
  background: #fff;
  white-space: nowrap;
  box-sizing: border-box;
  flex-shrink: 0;
}

.costs-input-suffix {
  color: #20384d;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.costs-input-wrap:focus-within {
  border-color: rgba(38, 61, 85, 0.42);
  box-shadow: 0 0 0 3px rgba(38, 61, 85, 0.08);
}

.costs-input:focus-visible {
  outline: none;
}

.costs-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.costs-chip {
  appearance: none;
  border: 1px solid rgba(122, 148, 172, 0.22);
  background: transparent;
  color: #3f4c5a;
  padding: 11px 14px;
  font: inherit;
  font-size: 0.97rem;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.costs-chip:hover,
.costs-chip:focus-visible {
  border-color: rgba(38, 61, 85, 0.3);
  outline: none;
}

.costs-chip.is-selected {
  border-color: rgba(38, 61, 85, 0.4);
  background: rgba(38, 61, 85, 0.08);
  color: #20384d;
  box-shadow: inset 0 0 0 1px rgba(38, 61, 85, 0.08);
}

.costs-notes {
  display: grid;
  gap: 22px;
}

.cost-note {
  padding: clamp(24px, 2.7vw, 32px);
  background: transparent;
  border: 1px solid rgba(38, 61, 85, 0.22);
  box-shadow: none;
}

.cost-note h3 {
  margin: 0 0 12px;
  color: #20384d;
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  line-height: 1;
  font-weight: 400;
}

.cost-note p {
  margin: 0;
  color: #5c6672;
  font-size: 1.02rem;
  line-height: 1.58;
}

.cost-note ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #5c6672;
  display: grid;
  gap: 10px;
}

.cost-note li {
  font-size: 1.02rem;
  line-height: 1.58;
}

.visit-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(44px, 6vw, 84px) 0 clamp(92px, 12vw, 164px);
  border: 0;
  background:
    linear-gradient(rgba(19, 15, 11, 0.18), rgba(19, 15, 11, 0.28)),
    url("assets/visit-bg.webp") center center / cover no-repeat;
}

.visit-invitation-card {
  position: relative;
  width: min(100%, 820px);
  min-height: clamp(780px, 92svh, 1240px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(32px, 3.6vw, 56px) clamp(18px, 2.4vw, 34px);
  overflow: hidden;
  background: transparent;
}

.visit-invitation-card::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 2.4vw, 28px) clamp(16px, 2.6vw, 28px);
  background: rgba(252, 248, 240, 0.94);
  border: 1.5px solid rgba(95, 88, 80, 0.58);
  border-radius: 0 clamp(72px, 8vw, 128px) 0 clamp(72px, 8vw, 128px);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.28),
    0 20px 48px rgba(18, 14, 10, 0.16);
  pointer-events: none;
}

.visit-invitation-card::after {
  content: "";
  position: absolute;
  inset: clamp(28px, 3.2vw, 40px) clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(92, 84, 74, 0.54);
  border-radius: 0 clamp(64px, 7vw, 120px) 0 clamp(64px, 7vw, 120px);
  pointer-events: none;
}

.visit-invitation-mark {
  width: 68px;
  height: auto;
  margin: 0 0 18px;
  opacity: 0.34;
  filter: grayscale(1) contrast(0.78);
  position: relative;
  z-index: 1;
}

.visit-invitation-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(0.8rem, 1vw, 0.98rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.visit-invitation-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  color: #201d18;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.visit-invitation-lead {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin: 28px 0 0;
  color: #4f4a43;
  font-size: clamp(1.12rem, 1.55vw, 1.28rem);
  line-height: 1.6;
}

.visit-invitation-card .hero-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.visit-invitation-card .hero-actions .button {
  min-width: 230px;
}

.visit-invitation-card .hero-actions .button-line {
  border-radius: var(--radius-control);
}

.visit-invitation-card .hero-actions .button-line:hover,
.visit-invitation-card .hero-actions .button-line:focus-visible {
  box-shadow: var(--shadow-action-hover);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #4f4a43;
  font-size: 0.93rem;
  border-top: 0;
}

.footer-top {
  background: var(--paper);
  padding: clamp(42px, 6vw, 64px) 24px 26px;
  position: relative;
  overflow: visible;
}

.footer-lower {
  background: var(--paper);
  padding: 24px 24px 26px;
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding-bottom: 30px;
  overflow: visible;
}

.footer-seal {
  width: min(182px, 36vw);
  height: auto;
  opacity: 0.94;
  margin-top: clamp(-116px, -10vw, -76px);
}

.footer-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.98;
  color: #201d18;
  letter-spacing: 0;
}

.footer-motto {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: #7d6542;
}

.footer-statement {
  max-width: 46ch;
  margin: 8px 0 0;
  color: #4f4a43;
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  line-height: 1.68;
}

.footer-contact-block {
  margin-top: 8px;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.footer-meta {
  margin: 0;
  color: #4f4a43;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #4f4a43;
}

.footer-contact span {
  color: #8a6940;
}

.footer-contact a {
  color: #263d55;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #263d55;
}

.footer-nav-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: clamp(6px, 0.8vw, 12px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.footer-nav-title {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d6542;
}

.footer-nav-col ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-nav-col a:not(.button) {
  color: #263d55;
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  line-height: 1.35;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-nav-title a:not(.button) {
  color: #7d6542;
}

.footer-nav-col a:not(.button):hover,
.footer-nav-col a:not(.button):focus-visible {
  color: #263d55;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.footer-nav-col .button {
  color: #fffaf1;
}

.footer-legal {
  margin: clamp(30px, 4vw, 42px) auto 0;
  padding-top: 14px;
  border-top: 0.75px solid rgba(122, 148, 172, 0.12);
  width: min(100%, var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal p {
  margin: 0;
  color: #4f4a43;
  font-size: 0.84rem;
  text-align: left;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal-links a {
  color: #4f4a43;
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  font-size: 0.84rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #263d55;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 24px);
    gap: 12px;
  }

  .nav-list {
    gap: 20px;
    font-size: 12px;
  }

  .hero-inner {
    align-items: start;
  }

  .card-grid,
  .curriculum-grid,
  .costs-shell,
  .admissions-shell {
    grid-template-columns: 1fr;
  }

  .costs-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: start;
    padding: 14px 18px 0;
  }

  .brand {
    width: auto;
    min-height: auto;
  }

  .brand img {
    height: 62px;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 39;
    display: block;
    max-height: 100svh;
    overflow: auto;
    padding: 112px 24px 32px;
    border-radius: 0;
    background:
      linear-gradient(rgba(18, 14, 12, 0.42), rgba(18, 14, 12, 0.42)),
      url("assets/hero-bg.jpg") center 40% / cover no-repeat;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px) saturate(1.06);
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0;
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 18px 0 24px;
    color: #263d55;
    text-shadow: none;
    white-space: normal;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(255, 251, 244, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 28px;
    box-shadow:
      0 28px 60px rgba(18, 20, 24, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .nav-item {
    padding: 0;
    margin: 0 28px;
    border-bottom: 1px solid rgba(122, 148, 172, 0.08);
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-list > .nav-item > a {
    display: block;
    padding: 18px 0 16px;
    color: #263d55;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .sub-nav {
    position: static;
    min-width: 0;
    padding: 0 0 18px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .sub-nav::before,
  .nav-item::after {
    content: none;
  }

  .sub-nav a {
    display: block;
    padding: 10px 0;
    color: rgba(37, 33, 28, 0.74);
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .apply {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 18px;
    z-index: 41;
    display: inline-flex;
    width: 56px;
    height: 56px;
    margin-top: 0;
    color: #fffaf1;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-menu-open .menu-toggle {
    color: #263d55;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
  }

  .site-header.is-menu-open .menu-toggle::before {
    opacity: 1;
    background: rgba(255, 251, 244, 0.94);
    border-color: rgba(38, 61, 85, 0.14);
  }

  .hero-inner {
    width: min(100% - 36px, 680px);
    padding: 160px 0 122px;
  }

  .mission-seal {
    width: clamp(156px, 40vw, 210px);
    margin-bottom: 32px;
  }

  .essence-inner,
  .essence-header,
  .essence-copy,
  .outcomes-inner,
  .outcomes-header,
  .outcomes-copy,
  .testimonial-inner,
  .testimonial-header {
    width: 100%;
  }

  .essence-copy p,
  .outcomes-copy p,
  .testimonial-body p {
    max-width: 60ch;
  }

  h1 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .two-col,
  .details-grid,
  .method-list,
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .admissions-step,
  .next-path {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .snapshot-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .program-hero::before {
    background-position: center top;
  }

  .mission-seal {
    width: clamp(178px, 48vw, 236px);
  }

  .essence-section {
    padding-top: 82px;
    padding-bottom: 92px;
  }

  .essence-inner,
  .essence-header,
  .essence-copy,
  .outcomes-inner,
  .outcomes-header,
  .outcomes-copy,
  .testimonial-inner,
  .testimonial-header {
    width: 100%;
  }

  .essence-copy p,
  .outcomes-copy p,
  .testimonial-body p {
    max-width: 100%;
    line-height: 1.68;
  }

}

/* Editorial life components (liturgical-life, campus-life, study-at-iti) */
.life-band {
  margin: 0;
  position: relative;
}

.life-band img {
  display: block;
  width: 100%;
  height: clamp(340px, 62vh, 640px);
  object-fit: cover;
}

.life-band figcaption {
  margin: 14px auto 0;
  width: min(100% - 48px, 750px);
  color: rgba(93, 87, 79, 0.85);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.life-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.life-chapter-media img,
.life-chapter-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid var(--line-soft, rgba(122, 148, 172, 0.16));
  border-radius: 4px;
}

.life-chapter-copy {
  display: grid;
  gap: 18px;
}

.life-chapter-copy .section-kicker {
  margin: 0;
}

.life-chapter-copy h2 {
  margin: 0;
  text-wrap: balance;
}

.life-chapter-copy p {
  margin: 0;
  color: rgba(37, 33, 28, 0.72);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.66;
  text-wrap: pretty;
}

.life-chapter-reverse .life-chapter-media {
  order: 2;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.life-grid figure {
  margin: 0;
}

.life-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-soft, rgba(122, 148, 172, 0.16));
  border-radius: 4px;
}

.life-grid figcaption {
  margin-top: 10px;
  color: rgba(93, 87, 79, 0.85);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.life-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78%, 460px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  width: min(100%, 1180px);
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}

.life-gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.life-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-soft, rgba(122, 148, 172, 0.16));
  border-radius: 4px;
}

.life-gallery figcaption {
  margin-top: 10px;
  color: rgba(93, 87, 79, 0.85);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.schedule-panel {
  width: min(100%, 750px);
  margin: 0 auto;
  border: 1px solid var(--line-soft, rgba(122, 148, 172, 0.16));
  padding: clamp(24px, 2.8vw, 36px);
  background: var(--white, #fff);
}

.schedule-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 0.75px solid var(--line-soft, rgba(122, 148, 172, 0.16));
}

.schedule-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.schedule-day {
  color: var(--gold, #8a6940);
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 3px;
}

.schedule-what {
  color: rgba(37, 33, 28, 0.78);
  font-size: clamp(1.04rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.schedule-note {
  margin: 16px 0 0;
  color: rgba(93, 87, 79, 0.85);
  font-size: 0.92rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
  text-align: center;
}

.stat-band .stat-number {
  display: block;
  color: #20384d;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.1;
}

.stat-band .stat-label {
  display: block;
  margin-top: 8px;
  color: var(--gold, #8a6940);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.life-quote {
  width: min(100%, 750px);
  margin: 0 auto;
  color: #20384d;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.life-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--gold, #8a6940);
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .life-chapter {
    grid-template-columns: 1fr;
  }

  .life-chapter-reverse .life-chapter-media {
    order: 0;
  }

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

  .stat-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .schedule-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
