:root {
  --ink: #fffaf1;
  --ink-dark: #25211c;
  --ink-soft: rgba(37, 33, 28, 0.78);
  --cream: #f5e9bd;
  --paper: #ffffff;
  --paper-soft: #f8f7f0;
  --gold: #8a6940;
  --gold-muted: #7d6542;
  --shadow: rgba(14, 11, 9, 0.42);
  --header-height: 104px;
  --container: 1180px;
  --navy: #263d55;
  --navy-soft: #23384b;
  --navy-link: #2d445a;
  --border-soft: rgba(122, 148, 172, 0.16);
  --border-faint: rgba(122, 148, 172, 0.08);
  --radius-control: 4px;
  --radius-card: 14px;
  --radius-hero: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(24, 38, 53, 0.08);
  --shadow-card: 0 14px 30px rgba(22, 28, 36, 0.06);
  --shadow-card-hover: 0 20px 38px rgba(22, 28, 36, 0.1);
  --shadow-action: 0 8px 20px rgba(22, 34, 49, 0.18);
  --shadow-action-hover: 0 10px 24px rgba(31, 44, 57, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #17120f;
  border-radius: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-bg.jpg");
  background-position: center 48%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(18, 15, 13, 0.3), rgba(18, 15, 13, 0.14) 31%, transparent 58%),
    linear-gradient(rgba(18, 14, 12, 0.08), rgba(18, 14, 12, 0.2)),
    linear-gradient(90deg, rgba(18, 14, 12, 0.28), rgba(18, 14, 12, 0.05) 25%, rgba(18, 14, 12, 0.05) 75%, rgba(18, 14, 12, 0.28));
  pointer-events: 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;
  text-decoration: none;
}

.brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border-radius: var(--radius-pill);
  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: var(--radius-pill);
  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: var(--shadow-soft);
  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;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.11em;
  color: rgba(255, 250, 241, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  white-space: nowrap;
}

.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: var(--ink-dark);
  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: var(--ink-dark);
  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: var(--navy);
  border-color: rgba(138, 105, 64, 0.28);
  transform: translateX(4px);
  outline: none;
}

.apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 40px;
  margin-top: 0;
  padding: 0 14px;
  background: var(--cream);
  color: rgba(34, 26, 19, 0.76);
  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: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

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

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

.menu-toggle span {
  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(42deg);
}

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

.hero-content {
  min-height: 100svh;
  width: min(100% - 72px, 1180px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 66px) 0 104px;
}

.cross {
  position: relative;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.22));
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
}

.cross::before {
  width: 31px;
  height: 2px;
}

.cross::after {
  width: 2px;
  height: 31px;
}

h1 {
  max-width: 18.8ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(4.35rem, 5vw, 5.45rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.24),
    0 0 44px rgba(255, 255, 255, 0.14),
    0 12px 30px var(--shadow);
}

.lead {
  max-width: 47ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 6px 20px var(--shadow);
}

.mission-section {
  position: relative;
  min-height: 46svh;
  padding: clamp(88px, 9vw, 118px) 24px clamp(92px, 9vw, 124px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--paper-soft);
  color: var(--ink-dark);
}

.mission-mark {
  width: 148px;
  height: auto;
  margin: 0 0 38px;
  opacity: 0.72;
}

.mission-kicker {
  margin: 0 0 14px;
  color: rgba(38, 61, 85, 0.56);
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mission-quote {
  max-width: 34ch;
  margin: 0 0 42px;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.05vw, 2.85rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.16;
  color: rgba(21, 19, 17, 0.86);
  text-wrap: balance;
}

.mission-quote cite {
  font-style: normal;
  white-space: nowrap;
}

.section-copy {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.62;
  font-weight: 400;
  font-synthesis: none;
  color: var(--ink-soft);
  text-wrap: balance;
}

.mission-statement {
  max-width: 55ch;
  margin: 0;
}

.distinctives-section {
  width: 100%;
  margin: 0;
  padding: clamp(78px, 8vw, 112px) 24px clamp(88px, 9vw, 124px);
  background: #ffffff;
  color: var(--ink-dark);
  overflow-x: clip;
}

.distinctives-intro {
  width: min(100%, 900px);
  margin: 0 auto 34px;
  text-align: center;
}

.distinctives-intro h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.distinctives-stack {
  width: min(100%, 1360px);
  margin: 0 auto;
  display: grid;
  gap: clamp(56px, 7vw, 108px);
  align-items: start;
  padding-bottom: 0;
}

.distinctive-row {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 430px) minmax(0, 860px);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  justify-content: center;
  justify-items: stretch;
  min-height: auto;
  background: transparent;
  box-shadow: none;
}

.distinctive-copy {
  order: 1;
  padding: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  text-align: left;
  width: min(100%, 430px);
  justify-self: end;
}

.distinctive-eyebrow {
  margin: 0 0 18px;
  color: #bc8b45;
  font-size: clamp(1.12rem, 1.35vw, 1.42rem);
  font-weight: 500;
  font-family: "EB Garamond", Georgia, serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

.distinctive-row-rooted .distinctive-copy {
  order: 1;
  width: 100%;
  padding-left: 0;
}

.distinctive-row-rooted .distinctive-media {
  order: 2;
}

.distinctive-eyebrow-rooted {
  margin-bottom: 18px;
  color: #bc8b45;
  font-size: clamp(1.12rem, 1.35vw, 1.42rem);
  font-weight: 500;
  font-family: "EB Garamond", Georgia, serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

.distinctive-copy .section-copy {
  max-width: 42ch;
  margin: 0;
}

.distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) {
  grid-template-columns: minmax(0, 860px) minmax(0, 430px);
}

.distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) .distinctive-copy {
  order: 2;
  justify-self: start;
}

.distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) .distinctive-media {
  order: 1;
}

.distinctives-stack > .distinctive-row:nth-child(odd):not(.distinctive-row-rooted) .distinctive-media {
  order: 2;
}

.distinctive-body {
  color: rgba(57, 58, 58, 0.7);
  font-size: clamp(1.06rem, 1.18vw, 1.22rem);
  line-height: 1.62;
  font-weight: 400;
}

.distinctive-media {
  order: 2;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: auto;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  justify-self: stretch;
  overflow: visible;
  background: transparent;
}

.distinctive-media:empty {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  border: 1px dashed rgba(188, 139, 69, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(243, 236, 226, 0.9)),
    repeating-linear-gradient(
      -45deg,
      rgba(188, 139, 69, 0.06) 0,
      rgba(188, 139, 69, 0.06) 18px,
      rgba(255, 255, 255, 0.22) 18px,
      rgba(255, 255, 255, 0.22) 36px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 24px 54px rgba(72, 57, 40, 0.08);
}

.distinctive-media:empty::before {
  content: "Image Placeholder";
  color: rgba(138, 105, 64, 0.72);
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distinctive-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.distinctive-media-rooted {
  justify-self: stretch;
}

.distinctive-media-rooted img {
  width: 100%;
  transform: none;
  transform-origin: center center;
}

.distinctive-media-sources {
  justify-self: stretch;
}

.distinctive-media-sources img {
  width: 100%;
  transform: none;
  transform-origin: center center;
}

.distinctive-feature {
  grid-template-columns: minmax(0, 430px) minmax(0, 860px);
}

.distinctive-feature .distinctive-copy {
  justify-self: end;
}

.distinctive-feature .distinctive-media {
  order: 2;
}

.distinctive-feature-reverse {
  grid-template-columns: minmax(0, 860px) minmax(0, 430px);
}

.distinctive-feature-reverse .distinctive-copy {
  order: 2;
  justify-self: start;
}

.distinctive-feature-reverse .distinctive-media {
  order: 1;
}

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

.distinctives-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.distinctive-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.distinctive-card .distinctive-copy {
  width: 100%;
  justify-self: center;
  justify-items: center;
  text-align: center;
}

.distinctive-card .distinctive-copy .section-copy {
  max-width: 30ch;
}

.programs-working-refined {
  width: 100%;
  margin: 0;
  padding: clamp(78px, 8vw, 112px) 24px clamp(88px, 9vw, 124px);
  color: var(--ink-dark);
  background: var(--paper-soft);
}

.programs-working-header {
  width: min(100%, var(--container));
  margin: 0 auto 32px;
}

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

.section-heading {
  color: var(--navy-soft);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.programs-working-header h2 {
  margin: 0;
  max-width: none;
}

.programs-working-grid {
  width: min(100%, var(--container));
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.program-card-refined {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding: clamp(34px, 3vw, 46px) clamp(34px, 4vw, 58px) 34px;
  text-decoration: none;
  color: var(--ink-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 0.75px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.program-card-refined > * {
  position: relative;
  z-index: 1;
}

.program-card-refined:hover,
.program-card-refined:focus-visible,
.program-card-refined:focus-within {
  transform: translateY(-5px);
  border-color: rgba(122, 148, 172, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    var(--shadow-card-hover);
  outline: none;
}

.program-card-refined-featured {
  color: rgba(255, 250, 241, 0.96);
  background:
    linear-gradient(rgba(10, 12, 16, 0.54), rgba(10, 12, 16, 0.74)),
    url("assets/studium-generale-card-bg.jpg");
  background-position: center 28%;
  background-size: cover;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--shadow-card);
}

.program-card-refined-liberal-arts {
  color: rgba(255, 250, 241, 0.96);
  background:
    linear-gradient(rgba(10, 12, 16, 0.36), rgba(10, 12, 16, 0.7)),
    url("assets/catholic-liberal-arts-card-bg.jpg");
  background-position: center 42%;
  background-size: cover;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--shadow-card);
}

.program-card-refined-featured:hover,
.program-card-refined-featured:focus-visible,
.program-card-refined-featured:focus-within,
.program-card-refined-liberal-arts:hover,
.program-card-refined-liberal-arts:focus-visible,
.program-card-refined-liberal-arts:focus-within {
  border-color: rgba(255, 255, 255, 0.2);
}

.program-card-refined-kicker {
  margin: 0 0 10px;
  color: #E83C2D;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.program-card-refined-seal {
  width: clamp(122px, 8.6vw, 150px);
  height: clamp(122px, 8.6vw, 150px);
  object-fit: contain;
  margin: 0 0 24px;
}

.program-card-refined-featured .program-card-refined-kicker,
.program-card-refined-liberal-arts .program-card-refined-kicker {
  color: #E83C2D;
}

.program-card-refined h3 {
  margin: 0;
  width: 100%;
  max-width: 18ch;
  color: var(--ink-dark);
  font-size: clamp(1.85rem, 2.3vw, 2.7rem);
  line-height: 1.02;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

.program-card-refined-featured h3,
.program-card-refined-liberal-arts h3 {
  color: #ffffff;
}

.program-card-refined-liberal-arts h3 {
  max-width: 12ch;
  font-size: clamp(1.75rem, 2vw, 2.35rem);
}

.program-card-refined-tag {
  display: table;
  margin: 10px auto 0;
  padding: 0;
  color: rgba(37, 33, 28, 0.62);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-card-refined-featured .program-card-refined-tag,
.program-card-refined-liberal-arts .program-card-refined-tag {
  color: rgba(255, 255, 255, 0.82);
}

.program-card-refined-copy {
  width: 100%;
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.52;
  text-align: center;
}

.program-card-refined-featured .program-card-refined-copy,
.program-card-refined-liberal-arts .program-card-refined-copy {
  color: rgba(255, 255, 255, 0.82);
}

.program-card-refined-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-link);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.program-card-refined-featured .program-card-refined-cta,
.program-card-refined-liberal-arts .program-card-refined-cta {
  color: rgba(255, 255, 255, 0.96);
}

.program-card-refined-cta {
  margin-top: 22px;
}

.program-card-refined:hover .program-card-refined-cta,
.program-card-refined:focus-visible .program-card-refined-cta {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.program-card-refined-featured:hover .program-card-refined-cta,
.program-card-refined-featured:focus-visible .program-card-refined-cta,
.program-card-refined-liberal-arts:hover .program-card-refined-cta,
.program-card-refined-liberal-arts:focus-visible .program-card-refined-cta {
  color: #ffffff;
}

.news-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: clamp(72px, 8vw, 104px) 16px;
  color: var(--navy);
  background: var(--paper);
  border-top: 0.75px solid var(--border-faint);
  border-bottom: 0.75px solid var(--border-faint);
}

.news-events-split {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.news-events-col {
  display: grid;
  align-content: start;
}

.news-events-col h2 {
  margin: 0 0 28px;
}

.news-events-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.news-events-featured {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.2vw, 28px);
  margin: 0 0 12px;
  text-decoration: none;
  color: inherit;
  background: var(--paper-soft);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  transition: background-color 160ms ease;
}

.news-events-featured:hover,
.news-events-featured:focus-visible {
  background: var(--paper-soft);
  outline: none;
}

.news-events-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 0;
  align-items: center;
  padding: clamp(12px, 1.35vw, 18px) clamp(20px, 2.2vw, 28px);
  text-decoration: none;
  color: inherit;
  background: var(--paper-soft);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  transition: background-color 160ms ease;
}

.news-events-item:hover,
.news-events-item:focus-visible {
  background: var(--paper-soft);
  outline: none;
}

.news-events-date {
  margin: 0;
  align-self: center;
  color: var(--gold);
  font-size: 0.84rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-events-featured .news-events-date {
  margin-bottom: 2px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.news-events-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.94rem, 1.06vw, 1.02rem);
  line-height: 1.22;
  font-weight: 600;
  transition: color 160ms ease;
}

.news-events-featured .news-events-title {
  max-width: 18ch;
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  line-height: 1.16;
}

.news-events-subtitle {
  margin: 0;
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.46;
  font-weight: 400;
}

.news-events-featured-event .news-events-subtitle {
  max-width: none;
}

.news-events-item:hover .news-events-title,
.news-events-item:focus-visible .news-events-title,
.news-events-featured:hover .news-events-title,
.news-events-featured:focus-visible .news-events-title {
  color: var(--gold);
}

.news-events-col .cluster-actions {
  margin-top: 22px;
  justify-content: flex-start;
}

.news-events-col .cluster-actions .button-line {
  color: var(--navy-link);
  padding: 10px 24px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(45, 68, 90, 0.16);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.news-events-col .cluster-actions .button-line:hover,
.news-events-col .cluster-actions .button-line:focus-visible {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(45, 68, 90, 0.26);
  box-shadow: var(--shadow-card-hover);
}

.news-section-alt {
  background:
    linear-gradient(180deg, rgba(248, 247, 240, 0.92), rgba(255, 255, 255, 1));
}

.news-events-alt-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.news-events-alt-header {
  display: grid;
  gap: 10px;
  max-width: 56rem;
}

.news-events-alt-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-events-alt-intro {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-soft);
}

.news-events-alt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.news-events-alt-panel {
  display: grid;
  gap: 20px;
}

.news-events-alt-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(38, 61, 85, 0.12);
}

.news-events-alt-panel-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 500;
}

.news-events-alt-link {
  color: var(--navy-link);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-events-alt-link:hover,
.news-events-alt-link:focus-visible {
  color: var(--gold);
  outline: none;
}

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

.event-agenda-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(38, 61, 85, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(28, 37, 48, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.event-agenda-item:hover,
.event-agenda-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(138, 105, 64, 0.28);
  box-shadow: 0 16px 28px rgba(28, 37, 48, 0.08);
  outline: none;
}

.event-agenda-item-featured {
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(38, 61, 85, 0.98), rgba(52, 77, 102, 0.96));
  border-color: rgba(38, 61, 85, 0.2);
  box-shadow: 0 18px 34px rgba(24, 34, 48, 0.14);
}

.event-agenda-datebox {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 78px;
  min-height: 84px;
  padding: 10px 8px;
  border-radius: 6px;
  background: rgba(248, 247, 240, 0.94);
  color: var(--navy);
}

.event-agenda-month,
.event-agenda-year {
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-agenda-day {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 600;
}

.event-agenda-body {
  display: grid;
  gap: 6px;
}

.event-agenda-eyebrow,
.event-agenda-meta,
.event-agenda-title,
.event-agenda-copy {
  margin: 0;
}

.event-agenda-eyebrow {
  color: rgba(245, 233, 189, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-agenda-title {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 600;
}

.event-agenda-item-featured .event-agenda-title {
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.event-agenda-meta {
  color: rgba(37, 33, 28, 0.68);
  font-size: 0.86rem;
  line-height: 1.3;
}

.event-agenda-item-featured .event-agenda-meta {
  color: rgba(255, 250, 241, 0.76);
}

.event-agenda-copy {
  max-width: 36ch;
  color: rgba(255, 250, 241, 0.86);
  font-size: 0.97rem;
  line-height: 1.45;
}

.news-magazine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-magazine-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(38, 61, 85, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 240, 0.94));
  box-shadow: 0 12px 28px rgba(28, 37, 48, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.news-magazine-card:hover,
.news-magazine-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(138, 105, 64, 0.24);
  box-shadow: 0 16px 32px rgba(28, 37, 48, 0.08);
  outline: none;
}

.news-magazine-card-featured {
  grid-column: 1 / -1;
  min-height: 280px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(248, 247, 240, 0.74), rgba(248, 247, 240, 0.9)),
    radial-gradient(circle at top right, rgba(138, 105, 64, 0.16), transparent 44%);
}

.news-magazine-kicker,
.news-magazine-title,
.news-magazine-copy,
.news-magazine-footer {
  margin: 0;
}

.news-magazine-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-magazine-title {
  color: var(--navy);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.2;
  font-weight: 600;
}

.news-magazine-card-featured .news-magazine-title {
  max-width: 16ch;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.03;
}

.news-magazine-copy {
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.48;
}

.news-magazine-footer {
  margin-top: auto;
  color: rgba(37, 33, 28, 0.62);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.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;
}

.button:hover,
.button: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);
  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);
}

.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;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 0.92;
  font-weight: 400;
  color: var(--ink-dark);
  white-space: nowrap;
}

.visit-invitation-lead {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin: 18px 0 0;
}

.visit-invitation-card .cluster-actions {
  position: relative;
  z-index: 1;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--ink-soft);
  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-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.98;
  color: var(--ink-dark);
  letter-spacing: 0;
}

.footer-motto {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--gold-muted);
}

.footer-statement {
  max-width: 46ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
  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: var(--ink-soft);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--ink-soft);
}

.footer-contact span {
  color: var(--gold);
}

.footer-contact a {
  color: var(--navy);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--navy);
}

.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: var(--gold-muted);
}

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

.footer-nav-col a:not(.button) {
  color: var(--navy);
  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: var(--gold-muted);
}

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

.footer-nav-col .button {
  color: var(--ink);
}

.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: var(--ink-soft);
  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: var(--ink-soft);
  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: var(--navy);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

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

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

  h1 {
    max-width: 720px;
    font-size: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 92px;
  }

  .hero {
    border-radius: 0;
  }

  .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;
    top: 86px;
    right: 18px;
    left: 18px;
    z-index: 39;
    display: block;
    max-height: calc(100svh - 112px);
    overflow: auto;
    padding: 18px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.44);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px) saturate(1.12);
  }

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

  .nav-list {
    display: grid;
    gap: 0;
    color: var(--navy);
    text-shadow: none;
    white-space: normal;
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .nav-item {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border-faint);
  }

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

  .nav-list > .nav-item > a {
    display: block;
    padding: 15px 4px;
    color: var(--navy);
  }

  .sub-nav {
    position: static;
    min-width: 0;
    padding: 0 0 12px 14px;
    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 {
    padding: 7px 0;
    color: rgba(37, 33, 28, 0.74);
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .apply {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-top: 4px;
    color: var(--ink);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.22));
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-menu-open .menu-toggle {
    color: var(--navy);
    filter: none;
  }

  .hero-content {
    width: min(100% - 36px, 680px);
    padding: 170px 18px 88px;
    text-align: center;
    transform: none;
  }

  .cross {
    width: 28px;
    height: 28px;
    margin-bottom: 22px;
  }

  h1 {
    max-width: 15.5ch;
    font-size: 42px;
    line-height: 0.94;
  }

  .lead {
    max-width: 58ch;
  }

  .mission-section {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 84px;
  }

  .mission-mark {
    width: 102px;
    margin-bottom: 24px;
  }

  .mission-quote {
    max-width: 14ch;
    margin-bottom: 34px;
    font-size: clamp(1.72rem, 9.5vw, 2.28rem);
    line-height: 1.14;
  }

  .mission-kicker {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .mission-statement {
    max-width: 30ch;
  }

  .distinctives-section {
    padding: 72px 18px 84px;
  }

  .distinctives-intro h2 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .distinctive-row {
    position: static;
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 0;
    gap: 18px;
  }

  .distinctives-stack {
    width: 100%;
    gap: 52px;
    padding-bottom: 0;
  }

  .distinctive-copy {
    order: 2;
    padding: 0;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .distinctive-eyebrow {
    font-size: clamp(1.35rem, 5.4vw, 1.72rem);
  }

  .distinctive-copy .section-copy {
    max-width: 100%;
  }

  .distinctive-row-rooted {
    width: 100%;
    margin-inline: 0;
    gap: 22px;
  }

  .distinctive-row-rooted .distinctive-copy {
    width: min(100%, 420px);
    justify-self: center;
    padding-left: 0;
    order: 2;
  }

  .distinctive-row-rooted .distinctive-media {
    order: 1;
    justify-self: center;
    width: min(100%, 640px);
  }

  .distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) .distinctive-copy,
  .distinctives-stack > .distinctive-row:nth-child(odd):not(.distinctive-row-rooted) .distinctive-copy {
    order: 2;
    justify-self: center;
  }

  .distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) .distinctive-media,
  .distinctives-stack > .distinctive-row:nth-child(odd):not(.distinctive-row-rooted) .distinctive-media {
    order: 1;
    justify-self: center;
  }

  .distinctive-media-rooted img {
    width: 100%;
    transform: none;
  }

  .distinctive-media-sources {
    width: min(100%, 640px);
  }

  .distinctive-media-sources img {
    width: 100%;
    transform: none;
  }

  .distinctives-card-grid,
  .distinctives-card-grid-two {
    grid-template-columns: 1fr;
  }

  .distinctive-media {
    order: 1;
    width: min(100%, 640px);
    max-width: 640px;
  }

  .programs-working-refined {
    padding: 62px 18px 72px;
  }

  .programs-working-grid {
    grid-template-columns: 1fr;
  }

  .program-card-refined {
    padding: 30px 20px 22px;
  }

  .program-card-refined-seal {
    width: 108px;
    height: 108px;
    margin-bottom: 14px;
  }

  .program-card-refined h3 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .program-card-refined-copy {
    max-width: 32ch;
    font-size: 0.92rem;
  }

  .program-card-refined-cta {
    width: auto;
  }

  .news-section {
    padding: 62px 10px 72px;
  }

  .news-events-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-events-col h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .news-events-featured {
    padding: 16px 16px 18px;
  }

  .news-events-featured .news-events-title {
    max-width: none;
    font-size: 1.22rem;
  }

  .news-events-featured .news-events-subtitle {
    max-width: none;
    font-size: 0.84rem;
  }

  .news-events-item {
    padding: 10px 16px;
    column-gap: 10px;
  }

  .news-events-date {
    font-size: 0.76rem;
  }

  .news-events-alt-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-events-alt-panel-head {
    align-items: start;
    flex-direction: column;
  }

  .event-agenda-item,
  .event-agenda-item-featured {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .event-agenda-datebox {
    width: 72px;
    min-height: 78px;
  }

  .event-agenda-item-featured .event-agenda-title {
    font-size: 1.18rem;
  }

  .news-magazine-grid {
    grid-template-columns: 1fr;
  }

  .news-magazine-card,
  .news-magazine-card-featured {
    min-height: auto;
    padding: 20px 18px;
  }

  .news-magazine-card-featured .news-magazine-title {
    max-width: none;
    font-size: 1.45rem;
  }

  .visit-invitation-card {
    min-height: auto;
    padding: 54px 44px 48px;
  }

  .visit-invitation-card h2 {
    white-space: normal;
  }

  .visit-invitation-lead {
    max-width: 100%;
  }

  .visit-invitation-card::before {
    inset: 18px;
    border-radius: 0 48px 0 48px;
  }

  .visit-invitation-card::after {
    inset: 28px;
    border-radius: 0 38px 0 38px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .footer-top {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-lower {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .footer-statement {
    max-width: none;
  }
}

@media (max-width: 1120px) {
  .distinctives-card-grid {
    grid-template-columns: 1fr;
  }

  .distinctive-row,
  .distinctive-row-rooted,
  .distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted),
  .distinctives-stack > .distinctive-row:nth-child(odd):not(.distinctive-row-rooted) {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .distinctive-feature,
  .distinctive-feature-reverse,
  .distinctive-feature-closing {
    grid-template-columns: 1fr;
  }

  .distinctive-copy,
  .distinctive-row-rooted .distinctive-copy,
  .distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) .distinctive-copy,
  .distinctives-stack > .distinctive-row:nth-child(odd):not(.distinctive-row-rooted) .distinctive-copy {
    order: 2;
    width: min(100%, 34rem);
    max-width: 100%;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .distinctive-feature .distinctive-copy,
  .distinctive-feature-reverse .distinctive-copy,
  .distinctive-feature-closing .distinctive-copy,
  .distinctive-card .distinctive-copy {
    order: 2;
    justify-self: center;
  }

  .distinctive-media,
  .distinctive-row-rooted .distinctive-media,
  .distinctives-stack > .distinctive-row:nth-child(even):not(.distinctive-row-rooted) .distinctive-media,
  .distinctives-stack > .distinctive-row:nth-child(odd):not(.distinctive-row-rooted) .distinctive-media {
    order: 1;
    width: min(calc(100% + 56px), 640px);
    max-width: none;
    margin-inline: -28px;
    justify-self: center;
  }

  .distinctive-feature .distinctive-media,
  .distinctive-feature-reverse .distinctive-media,
  .distinctive-feature-closing .distinctive-media {
    order: 1;
  }

  .distinctive-card {
    padding: 20px 18px 24px;
  }

  .distinctive-card .distinctive-media {
    width: min(calc(100% + 56px), 640px);
    margin-inline: -28px;
  }

  .distinctive-card .distinctive-copy .section-copy {
    max-width: 34ch;
  }
}

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

  .apply {
    width: 108px;
    height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 1.18rem;
  }
}

/* About page */
.about-page {
  background: var(--paper-soft);
  color: var(--ink-dark);
}

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

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-bg.jpg") center 48% / cover no-repeat;
  filter: saturate(0.92);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 45% 48%, rgba(18, 14, 12, 0.12), rgba(18, 14, 12, 0.48) 66%),
    linear-gradient(90deg, rgba(18, 14, 12, 0.54), rgba(18, 14, 12, 0.16) 55%, rgba(18, 14, 12, 0.5)),
    linear-gradient(rgba(18, 14, 12, 0.12), rgba(18, 14, 12, 0.3));
}

.about-hero-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 158px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
}

.about-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;
}

.about-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.2rem, 9vw, 8rem);
  line-height: 0.84;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero-lead {
  max-width: 42ch;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  line-height: 1.38;
  text-wrap: balance;
}

.about-hero-card {
  padding: 28px 26px 30px;
  color: #201d18;
  background: rgba(252, 248, 240, 0.92);
  border: 1px solid rgba(222, 203, 164, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.about-hero-card img {
  display: block;
  width: 116px;
  height: auto;
  margin: 0 auto 18px;
  opacity: 0.9;
}

.about-hero-card p {
  margin: 0;
  color: #4f463a;
  font-size: 1.1rem;
  line-height: 1.46;
  text-align: center;
}

.about-section {
  padding: clamp(78px, 8vw, 112px) 24px;
  background: #ffffff;
  color: var(--ink-dark);
}

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

.about-section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background: #17120f;
}

.about-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/visit-bg.webp") center / cover no-repeat;
  filter: saturate(0.9);
}

.about-section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 14, 12, 0.58);
}

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

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

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

.about-section h2 {
  margin: 0;
  color: #201d18;
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-section-dark h2,
.about-section-dark .about-section-kicker {
  color: var(--ink);
}

.about-lead {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  line-height: 1.58;
  text-wrap: balance;
}

.about-section-dark .about-lead {
  color: rgba(255, 250, 241, 0.88);
}

.about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.25vw, 1.2rem);
  line-height: 1.68;
}

.about-feature-panel,
.about-card,
.about-fact,
.about-contact-card {
  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);
}

.about-feature-panel {
  padding: clamp(28px, 4vw, 46px);
}

.about-feature-panel p {
  margin: 0;
  color: #20384d;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-fact {
  padding: 22px 24px;
}

.about-fact-value {
  margin: 0;
  color: #20384d;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 0.9;
}

.about-fact-label {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.about-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  padding: clamp(24px, 2.7vw, 34px);
}

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

.about-card p,
.about-card li {
  color: #5c6672;
  font-size: 1.02rem;
  line-height: 1.54;
}

.about-card p {
  margin: 0;
}

.about-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

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

.about-timeline li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.16);
}

.about-timeline-year {
  margin: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
}

.about-timeline-text {
  margin: 0;
  color: #4f5d6b;
  font-size: 1.08rem;
  line-height: 1.52;
}

.about-link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.about-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: #263d55;
  border-top: 0.75px solid rgba(122, 148, 172, 0.16);
  font-weight: 600;
}

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

.about-contact-card {
  padding: 28px;
}

.about-contact-card h3 {
  margin: 0 0 12px;
  color: #20384d;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
}

.about-contact-card p {
  margin: 0;
  color: #4f5d6b;
  font-size: 1.06rem;
  line-height: 1.5;
}

.about-contact-card a {
  color: #263d55;
  font-weight: 600;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1120px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-hero-card {
    width: min(100%, 420px);
  }

  .about-card-grid,
  .about-card-grid.two,
  .about-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .about-hero {
    min-height: auto;
  }

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

  .about-hero h1 {
    font-size: clamp(3.7rem, 16vw, 5.8rem);
  }

  .about-two-col,
  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-card-grid,
  .about-card-grid.two,
  .about-pill-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
