:root {
  color-scheme: light;
  --paper: #f4f0e7;
  --paper-soft: #f8f5ee;
  --ink: #151515;
  --ink-soft: #46423b;
  --line: #cdc3b1;
  --navy: #1a2a3a;
  --navy-deep: #1c2934;
  --gold: #8a6f44;
  --gold-soft: #b9a584;
  --iti-red: #e83c2d;
  --iti-beige: #f8ecca;
  --iti-beige-light: #fcf7e6;
  --iti-blue: #dce9f3;
  --panel: rgba(250, 246, 237, 0.85);
  --shadow: 0 18px 44px rgba(18, 14, 10, 0.11);
  --hairline: 0.75px solid rgba(122, 148, 172, 0.26);
  --hairline-strong: 0.75px solid rgba(122, 148, 172, 0.36);
  --ornament-line: rgba(232, 60, 45, 0.32);
  --ornament-dot: rgba(232, 60, 45, 0.58);
  --radius: 16px;
  --container: 1180px;
  --header-reserve: 78px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: "Source Serif 4", "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.66;
  letter-spacing: 0.008em;
}

.texture_layer {
  display: none;
}

a {
  color: inherit;
}

.load_intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  background: #fff;
}

.load_intro img {
  width: min(42vw, 360px);
  height: auto;
  opacity: 0;
  transform: scale(1.05);
  animation: intro-logo-in 720ms ease-out 180ms forwards;
}

.load_intro p {
  position: absolute;
  margin: 0;
  bottom: 10vh;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6f6558;
  opacity: 0;
  animation: intro-text-in 600ms ease-out 480ms forwards;
}

.js.intro_pending .load_intro {
  display: grid;
}

.js.intro_pending body {
  overflow: hidden;
}

.js.intro_done .load_intro {
  animation: intro-out 940ms cubic-bezier(0.65, 0.03, 0.19, 1) forwards;
}

@keyframes intro-logo-in {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-text-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-out {
  to {
    opacity: 0;
    transform: translateY(-18px);
    visibility: hidden;
  }
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  backdrop-filter: none;
  box-shadow: none;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: inset 0 -0.75px 0 rgba(122, 148, 172, 0.18);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site_header.is_scrolled {
  border: 0;
  background: #fff;
  backdrop-filter: none;
  box-shadow: inset 0 -0.75px 0 rgba(122, 148, 172, 0.3);
}

.brand_mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand_mark img {
  display: block;
  width: auto;
  height: 52px;
}

.brand_text {
  display: grid;
  line-height: 1.1;
}

.brand_text strong {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2a35;
}

.brand_text small {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: #756b5e;
}

.site_nav {
  margin-left: auto;
}

.nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav_item {
  position: relative;
}

.nav_item > a {
  text-decoration: none;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  padding: 4px 0;
  transition: color 160ms ease;
}

.nav_item > a:hover,
.nav_item > a:focus-visible {
  color: var(--iti-red);
}

.sub_nav {
  list-style: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 12px 14px;
  min-width: 230px;
  border: var(--hairline-strong);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 14, 10, 0.12);
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sub_nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  display: block;
  line-height: 1.3;
}

.sub_nav a:hover,
.sub_nav a:focus-visible {
  color: var(--iti-red);
}

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

.menu_button {
  display: none;
  border: 0.75px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 7px 12px;
}

.section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 100px) 0;
}

.hero {
  min-height: calc(100svh - var(--header-reserve));
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.hero_layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  width: 100%;
  padding-top: clamp(14px, 2.8vh, 34px);
  padding-bottom: clamp(14px, 2.8vh, 34px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #bc3c2e;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  margin-bottom: 14px;
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.3vw, 3.5rem);
  letter-spacing: 0.01em;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.46rem, 2.6vw, 2rem);
}

p {
  margin: 0;
  max-width: 68ch;
  color: var(--ink-soft);
}

.lead {
  max-width: 58ch;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.hero_actions,
.cluster_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 0;
  border: 0.75px solid transparent;
  color: #fcfbf8;
  background: linear-gradient(135deg, #243545 0%, #1c2934 72%, #2c4051 100%);
  box-shadow: 0 8px 20px rgba(31, 44, 57, 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 44, 57, 0.22);
}

.button_small {
  margin-left: 8px;
  padding: 8px 13px;
  font-size: 0.79rem;
}

.button_line {
  color: var(--ink);
  background: #fff;
  border-color: rgba(232, 60, 45, 0.35);
  box-shadow: none;
}

.hero_media {
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero_media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero_collage {
  position: relative;
  min-height: clamp(300px, 34vw, 430px);
}

.hero_layer {
  margin: 0;
  position: absolute;
  border: 0.75px solid rgba(31, 44, 57, 0.18);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18, 14, 10, 0.12);
}

.hero_layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero_layer_building {
  inset: 8% 8% 10% 18%;
  z-index: 1;
}

.hero_layer_students {
  width: 56%;
  height: 48%;
  left: -4%;
  bottom: -6%;
  z-index: 2;
}

.hero_layer_spiritual {
  width: 47%;
  height: 43%;
  right: -4%;
  top: -6%;
  z-index: 3;
}

.mission_sentence {
  position: relative;
  min-height: 56svh;
  padding-top: 104px;
  padding-bottom: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mission_sentence::before,
.founding_manifesto::before,
.page_hero::before {
  content: "";
  display: block;
  width: 92px;
  height: 13px;
  margin: 0 auto 28px;
  background:
    linear-gradient(var(--ornament-line), var(--ornament-line)) center / 92px 0.75px no-repeat,
    radial-gradient(circle, var(--ornament-dot) 0 1.5px, transparent 1.7px) center / 13px 13px no-repeat;
}

.mission_mark {
  width: 56px;
  height: auto;
  margin: 0 0 30px;
  opacity: 0.82;
}

.mission_sentence p {
  max-width: 40ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.78rem, 3.2vw, 2.9rem);
  line-height: 1.22;
  color: #25211c;
}

.testimonial_section {
  border-top: 0;
  border-bottom: 0;
  padding-top: 88px;
  padding-bottom: 92px;
}

.testimonial_single {
  margin: 0 auto;
  max-width: min(100%, 980px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.testimonial_single_quote {
  margin: 0;
  max-width: 34ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
  line-height: 1.18;
  color: #1e232c;
  text-wrap: balance;
}

.testimonial_single_photo {
  width: 74px;
  height: 74px;
  margin-top: 16px;
  object-fit: cover;
  display: block;
  border: var(--hairline-strong);
}

.testimonial_single_name {
  margin: 4px 0 0;
  font-size: 1.16rem;
  font-weight: 600;
  color: #1d2430;
}

.testimonial_single_role {
  margin: 0;
  color: #3f756f;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testimonial_intro {
  margin-bottom: 20px;
}

.testimonial_intro p {
  max-width: 64ch;
}

.testimonial_wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.testimonial_tile {
  border: var(--hairline);
  background: #fff;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.testimonial_tile_feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  align-items: center;
}

.testimonial_tile_feature .testimonial_tile_head {
  align-items: flex-start;
}

.testimonial_tile_feature .testimonial_avatar {
  width: 58px;
  height: 58px;
}

.testimonial_tile_feature .testimonial_text {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.26;
}

.testimonial_tile_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial_avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  display: block;
  border: var(--hairline-strong);
}

.testimonial_name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1b2430;
}

.testimonial_role {
  margin: 1px 0 0;
  color: #3f756f;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.testimonial_text {
  margin: 0;
  color: #293340;
  font-size: 1rem;
  line-height: 1.45;
}

.testimonial_section .cluster_actions {
  margin-top: 6px;
}

.program_grid {
  display: grid;
  gap: 18px;
}

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

.program_grid_bottom {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program_intro {
  margin: 0 0 30px;
  max-width: 74ch;
}

.program_card {
  position: relative;
  min-height: 260px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: var(--hairline-strong);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 6px 18px rgba(18, 14, 10, 0.07);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.program_card::before {
  content: "";
  display: none;
}

.program_card:hover,
.program_card:focus-visible,
.program_card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(232, 60, 45, 0.42);
  box-shadow: 0 10px 22px rgba(18, 14, 10, 0.12);
}

.program_type {
  margin: 0;
  color: #aa3b2f;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.program_card h3 {
  margin-bottom: 0;
  font-size: clamp(1.72rem, 2.5vw, 2.3rem);
  line-height: 1.05;
}

.program_card p {
  max-width: 44ch;
}

.program_cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f2f41;
  padding-top: 10px;
  border-top: 0;
}

.program_cta::after {
  content: ">";
  color: #aa3b2f;
  font-size: 0.96rem;
}

.program_card_wide {
  min-height: 260px;
}

.program_track_links {
  margin-top: auto;
  display: grid;
  gap: 0;
  border-top: 0;
}

.program_track_links a {
  text-decoration: none;
  color: #1e2a36;
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 0;
}

.program_track_links a:last-child {
  border-bottom: 0;
}

.program_track_links a:hover,
.program_track_links a:focus-visible {
  color: var(--iti-red);
}

.news_section {
  border-top: 0;
  border-bottom: 0;
}

.news_events_split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.8vw, 58px);
}

.news_events_split::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 1px;
  background: rgba(122, 148, 172, 0.3);
  transform: translateX(-0.5px);
}

.news_events_col h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.news_events_list {
  display: grid;
  margin: 0;
}

.news_events_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 15px 0 17px;
  text-decoration: none;
  color: inherit;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.22);
}

.news_events_item:first-child {
  border-top: 0;
}

.news_events_date {
  margin: 0;
  color: var(--iti-red);
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 600;
  font-family: "Source Serif 4", "Iowan Old Style", "Times New Roman", serif;
  letter-spacing: 0.06em;
  text-wrap: nowrap;
  text-transform: uppercase;
}

.news_events_title {
  margin: 0;
  color: #1f3d59;
  font-size: clamp(0.98rem, 1.28vw, 1.12rem);
  line-height: 1.32;
}

.news_events_subtitle {
  margin: 0;
  color: #5f6d7d;
  font-size: 0.84rem;
  line-height: 1.35;
  max-width: 62ch;
}

.news_events_col .news_events_title {
  font-weight: 600;
}

.news_events_col .news_events_subtitle {
  color: #768394;
  font-weight: 400;
}

.news_events_item:hover .news_events_title,
.news_events_item:focus-visible .news_events_title {
  color: var(--iti-red);
}

.news_events_item:hover .news_events_date,
.news_events_item:focus-visible .news_events_date {
  color: var(--iti-red);
}

.news_events_item:hover .news_events_subtitle,
.news_events_item:focus-visible .news_events_subtitle {
  color: #7c3f37;
}

.news_events_col .cluster_actions {
  margin-top: 22px;
}

.founding_manifesto {
  position: relative;
  border-top: 0;
  border-bottom: 0;
  padding-top: 70px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
}

.founding_manifesto p {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  font-size: clamp(1.34rem, 2.6vw, 2.2rem);
  line-height: 1.34;
  color: #27221c;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.seal_mark {
  position: absolute;
  right: clamp(8px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  width: min(36vw, 280px);
  opacity: 0.075;
  filter: grayscale(16%);
}

.principles_section h2 {
  max-width: 14ch;
}

.principles_list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.principles_list li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 0;
}

.principles_list h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

.principles_list p {
  margin: 0;
  max-width: 56ch;
}

.distinct_showcase {
  border: 0;
  padding: 0;
  background: transparent;
}

.distinct_head p {
  max-width: 66ch;
}

.distinct_variant {
  margin-top: 20px;
}

.pillar_stack {
  display: grid;
  gap: 12px;
}

.pillar_panel {
  border: var(--hairline-strong);
  background: #fff;
  min-height: 192px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 240px;
}

.pillar_symbol {
  border-right: var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2f41;
  background: rgba(220, 233, 243, 0.22);
}

.pillar_symbol svg {
  width: 30px;
  height: 30px;
  display: block;
}

.pillar_copy {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar_copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.pillar_media {
  margin: 0;
  border-left: var(--hairline);
}

.pillar_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.question_grid {
  display: grid;
  gap: 10px;
}

.question_grid details {
  border: var(--hairline-strong);
  border-radius: 0;
  padding: 15px 16px;
  background: #fff;
}

.question_grid summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.question_grid p {
  margin-top: 9px;
}

.life_gallery_intro {
  margin: 0 0 18px;
  max-width: 58ch;
}

.life_gallery_grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}

.life_tile {
  margin: 0;
  border: 0.75px solid rgba(31, 44, 57, 0.16);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(18, 14, 10, 0.08);
  grid-column: span 4;
}

.life_tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.life_tile_wide {
  grid-column: span 8;
}

.life_tile_large {
  grid-column: span 6;
}

.life_tile_tall {
  grid-row: span 2;
}

.life_tile_wide_small {
  grid-column: span 6;
}

.split_section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  border-top: 0;
  border-bottom: 0;
  padding-top: 62px;
  padding-bottom: 62px;
}

.resource_list {
  margin: 10px 0 0;
  padding-left: 20px;
}

.resource_list li + li {
  margin-top: 8px;
}

.resource_list a {
  color: #1d3042;
  text-decoration: none;
}

.resource_list a:hover,
.resource_list a:focus-visible {
  color: var(--iti-red);
}

.positioning {
  position: relative;
  padding: clamp(58px, 6vw, 76px) clamp(34px, 5vw, 58px) clamp(34px, 5vw, 58px);
  border: var(--hairline-strong);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 14, 10, 0.1);
}

.positioning::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 72px;
  height: 12px;
  transform: translateX(-50%);
  background:
    linear-gradient(var(--ornament-line), var(--ornament-line)) center / 72px 0.75px no-repeat,
    radial-gradient(circle, var(--ornament-dot) 0 1.4px, transparent 1.6px) center / 12px 12px no-repeat;
}

.page_hero {
  padding-top: 68px;
  padding-bottom: 54px;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.22);
}

.page_hero h1 {
  max-width: 22ch;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 0.95;
  margin-bottom: 12px;
}

.page_intro {
  max-width: 66ch;
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
}

.subpage_lead_grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 24px;
  align-items: start;
}

.subpage_media {
  margin: 0;
  border: var(--hairline-strong);
  background: #fff;
  overflow: hidden;
}

.subpage_media img {
  display: block;
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  object-fit: cover;
}

.subpage_media figcaption {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: #6b6257;
  border-top: var(--hairline);
}

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

.info_card {
  border: var(--hairline-strong);
  background: #fff;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.info_card h3 {
  font-size: clamp(1.32rem, 2vw, 1.86rem);
  margin-bottom: 0;
}

.info_card p {
  color: #4a4f58;
  font-size: 0.95rem;
}

.info_card a {
  text-decoration: none;
  color: #1f2f41;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.info_card a:hover,
.info_card a:focus-visible {
  color: var(--iti-red);
}

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

.details_panel {
  border: var(--hairline-strong);
  background: #fff;
  padding: 20px;
}

.details_panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.34rem, 2.1vw, 1.9rem);
}

.details_panel ul {
  margin: 0;
  padding-left: 18px;
}

.details_panel li + li {
  margin-top: 7px;
}

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

.fact_block {
  border: var(--hairline-strong);
  background: #fff;
  padding: 18px 14px;
  text-align: center;
}

.fact_value {
  margin: 0;
  color: #1d2e42;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 0.95;
}

.fact_label {
  margin: 8px 0 0;
  color: #6d6458;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.timeline_item {
  border: var(--hairline);
  background: #fff;
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.timeline_year {
  margin: 0;
  color: #bc3c2e;
  font-size: 1.08rem;
  font-weight: 600;
}

.timeline_text {
  margin: 0;
  color: #38414f;
}

.soft_band {
  background: #fcf9ef;
  border-top: 1px solid rgba(122, 148, 172, 0.2);
  border-bottom: 1px solid rgba(122, 148, 172, 0.2);
}

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

.simple_link_list li {
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.22);
  padding-bottom: 12px;
}

.simple_link_list a {
  text-decoration: none;
  color: #1f2f41;
}

.simple_link_list a:hover,
.simple_link_list a:focus-visible {
  color: var(--iti-red);
}

.nav_item > a.nav_current {
  color: var(--iti-red);
}

.site_footer {
  width: 100%;
  margin: clamp(68px, 9vw, 112px) 0 0;
  padding: 0;
  background: transparent;
  color: #4d4438;
  font-size: 0.93rem;
  border-top: 0;
}

.footer_top {
  background: var(--iti-beige-light);
  padding: clamp(42px, 6vw, 64px) 24px 0;
}

.footer_lower {
  background: var(--iti-beige-light);
  padding: 26px 24px 26px;
}

.footer_inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 0;
}

.footer_seal {
  width: min(224px, 42vw);
  height: auto;
  opacity: 0.98;
}

.footer_title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 0.95;
  color: #1b1a18;
  letter-spacing: 0.06em;
}

.footer_motto {
  margin: 0;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: #5b5143;
}

.footer_meta {
  margin: 14px 0 0;
  color: #4c4338;
}

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

.footer_contact span {
  color: #8a6f44;
}

.footer_contact a {
  color: #283f57;
  text-decoration: none;
}

.footer_contact a:hover,
.footer_contact a:focus-visible {
  color: var(--iti-red);
}

.footer_nav_grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: clamp(4px, 0.8vw, 10px);
  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: #1f2f41;
  text-decoration: none;
  line-height: 1.35;
}

.footer_nav_col a:not(.button):hover,
.footer_nav_col a:not(.button):focus-visible {
  color: var(--iti-red);
}

.footer_nav_col .button {
  color: #fcfbf8;
}

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

.footer_legal p {
  margin: 0;
  color: #5a5044;
  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: #4f463a;
  text-decoration: none;
  font-size: 0.84rem;
}

.footer_legal_links a:hover,
.footer_legal_links a:focus-visible {
  color: var(--iti-red);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is_visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .load_intro img,
  .load_intro p,
  .js.intro_done .load_intro,
  .reveal,
  .button,
  .sub_nav {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

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

  .hero_media {
    order: -1;
  }

  .hero_collage {
    min-height: 400px;
  }

  .hero_layer_building {
    inset: 10% 4% 12% 14%;
  }

  .hero_layer_students {
    width: 52%;
    height: 44%;
    left: -2%;
    bottom: -2%;
  }

  .hero_layer_spiritual {
    width: 44%;
    height: 38%;
    right: -2%;
    top: -2%;
  }

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

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

  .program_grid_bottom .program_card:last-child {
    grid-column: 1 / -1;
  }

  .footer_nav_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .subpage_media {
    order: -1;
  }

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

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

  .pillar_panel {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .pillar_media {
    display: none;
  }
}

@media (max-width: 960px) {
  .split_section {
    grid-template-columns: 1fr;
  }

  .site_header {
    border-radius: 0;
  }

  .brand_text {
    display: none;
  }

  .brand_mark img {
    height: 44px;
  }

  .life_gallery_grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .life_tile {
    grid-column: span 3;
  }

  .life_tile_wide {
    grid-column: span 6;
  }

  .life_tile_large {
    grid-column: span 4;
  }

  .life_tile_wide_small {
    grid-column: span 3;
  }

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

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

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

  .news_events_split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .news_events_split::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .menu_button {
    display: inline-flex;
  }

  .site_nav {
    display: none;
    position: absolute;
    right: 12px;
    top: calc(100% + 10px);
    width: min(90vw, 330px);
    border: 1px solid rgba(122, 148, 172, 0.38);
    border-radius: 0;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .site_nav.is_open {
    display: block;
  }

  .nav_list {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav_item {
    padding-bottom: 10px;
    border-bottom: 0;
  }

  .nav_item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .sub_nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 6px 0 0 12px;
    min-width: 0;
  }

  .site_header > .button_small {
    display: none;
  }
}

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

  .hero {
    min-height: calc(100svh - var(--header-reserve));
  }

  .brand_mark img {
    width: auto;
    height: 36px;
  }

  .program_grid_top,
  .program_grid_bottom {
    grid-template-columns: 1fr;
  }

  .page_hero {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .program_grid_bottom .program_card:last-child {
    grid-column: auto;
  }

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

  .testimonial_tile {
    padding: 12px;
    gap: 10px;
  }

  .testimonial_tile_feature {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .testimonial_avatar {
    width: 38px;
    height: 38px;
  }

  .testimonial_name {
    font-size: 0.96rem;
  }

  .testimonial_section {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .testimonial_single_quote {
    max-width: 20ch;
    font-size: clamp(1.58rem, 7.2vw, 2.24rem);
  }

  .testimonial_single_photo {
    width: 62px;
    height: 62px;
    margin-top: 12px;
  }

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

  .footer_legal_links {
    justify-content: flex-start;
  }

  .site_footer {
    padding: 0;
  }

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

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

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

  .timeline_item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .news_events_col h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .news_events_item {
    gap: 4px;
    padding: 10px 0 12px;
  }

  .news_events_date {
    font-size: 0.72rem;
  }

  .news_events_title {
    font-size: 0.94rem;
    line-height: 1.3;
  }

  .news_events_subtitle {
    font-size: 0.8rem;
  }

  .life_gallery_grid {
    gap: 10px;
  }

  .life_tile,
  .life_tile_wide,
  .life_tile_large,
  .life_tile_wide_small {
    grid-column: auto;
  }

  .life_tile_tall {
    grid-row: auto;
  }

  .life_tile img {
    min-height: 188px;
  }

  .hero_collage {
    min-height: 320px;
  }

  .hero_layer_building {
    inset: 12% 4% 12% 10%;
  }

  .hero_layer_students {
    width: 58%;
    height: 40%;
    left: 0;
    bottom: 0;
  }

  .hero_layer_spiritual {
    width: 52%;
    height: 36%;
    right: 0;
    top: 0;
  }

  .pillar_copy {
    padding: 16px;
  }

  .mission_sentence {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 90px;
  }

  .mission_mark {
    width: 40px;
    margin-bottom: 18px;
  }

  .mission_sentence p {
    max-width: 27ch;
    font-size: clamp(1.4rem, 7.8vw, 1.98rem);
    line-height: 1.24;
  }

  .founding_manifesto {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .founding_manifesto p {
    font-size: clamp(1.24rem, 7.4vw, 1.84rem);
  }

  .seal_mark {
    width: min(50vw, 190px);
    right: 4px;
  }

}
