:root {
  color-scheme: light;
  --paper: #f2ede2;
  --paper-soft: #faf7f0;
  --ink: #171717;
  --ink-soft: #47433d;
  --line: #c8bdab;
  --navy: #203142;
  --navy-deep: #162231;
  --gold: #8c7650;
  --gold-soft: #b9a584;
  --iti-red: #7b4a42;
  --iti-beige: #f3ead5;
  --iti-beige-light: #f8f3e8;
  --iti-blue: #d8e0e7;
  --panel: rgba(248, 243, 232, 0.9);
  --shadow: 0 18px 44px rgba(22, 28, 36, 0.1);
  --hairline: 0.75px solid rgba(122, 148, 172, 0.26);
  --hairline-strong: 0.75px solid rgba(122, 148, 172, 0.36);
  --ornament-line: rgba(140, 118, 80, 0.42);
  --ornament-dot: rgba(140, 118, 80, 0.7);
  --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: var(--paper-soft);
  color: var(--ink);
  font-family: "Source Serif 4", "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.66;
  letter-spacing: 0.008em;
  font-synthesis: none;
}

.texture_layer {
  display: none;
}

a {
  color: inherit;
}

.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: var(--paper-soft);
  backdrop-filter: none;
  box-shadow: none;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: none;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site_header.is_scrolled {
  border: 0;
  background: var(--paper-soft);
  backdrop-filter: none;
  box-shadow: none;
}

body.home_gold .site_header {
  position: fixed;
  left: 0;
  right: 0;
  width: min(100% - 48px, 1480px);
  background: transparent;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

body.home_gold .site_header.is_scrolled {
  background: transparent;
  backdrop-filter: none;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 28px;
}

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

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

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

body.home_gold .brand_text {
  display: none;
}

body.home_gold .site_header.is_scrolled .brand_text {
  display: grid;
  gap: 4px;
}

body.home_gold .site_header.is_scrolled .brand_mark {
  gap: 14px;
  min-width: 0;
}

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

body.home_gold .site_header.is_scrolled .brand_text strong {
  font-size: clamp(0.98rem, 1.3vw, 1.22rem);
  line-height: 1;
  color: #233042;
  white-space: nowrap;
}

body.home_gold .site_header.is_scrolled .brand_text small {
  font-size: clamp(0.8rem, 1.02vw, 0.96rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #6d6256;
  white-space: nowrap;
}

.site_nav {
  margin-left: auto;
}

body.home_gold .site_nav {
  margin-left: 0;
  justify-self: center;
  background: transparent;
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: none;
}

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

body.home_gold .nav_list {
  justify-content: center;
  gap: 30px;
}

.nav_item {
  position: relative;
}

.nav_item::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}

.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(--navy);
}

body.home_gold .nav_item > a {
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

body.home_gold .site_header:not(.is_scrolled) .nav_item > a:hover,
body.home_gold .site_header:not(.is_scrolled) .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);
}

body.home_gold .site_header.is_scrolled .site_nav {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

body.home_gold .site_header.is_scrolled .nav_item > a {
  color: #1c1a17;
}

body.home_gold .site_header.is_scrolled .nav_item > a:hover,
body.home_gold .site_header.is_scrolled .nav_item > a:focus-visible {
  color: #3a2f22;
  text-shadow: none;
}

.sub_nav {
  list-style: none;
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  margin: 0;
  padding: 18px 20px 20px;
  min-width: 290px;
  border: 1px solid rgba(214, 194, 154, 0.24);
  border-radius: 0;
  background: rgba(18, 15, 13, 0.88);
  box-shadow: 0 24px 54px rgba(6, 6, 8, 0.34);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sub_nav::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(214, 194, 154, 0.82), rgba(214, 194, 154, 0));
}

.sub_nav a {
  text-decoration: none;
  color: rgba(250, 245, 237, 0.96);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 500;
  display: block;
  line-height: 1.2;
  padding: 10px 0;
  border-bottom: 0.75px solid rgba(214, 194, 154, 0.12);
  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: #fff8eb;
  border-color: rgba(214, 194, 154, 0.34);
  transform: translateX(4px);
}

body.home_gold .sub_nav {
  background:
    linear-gradient(180deg, rgba(32, 24, 20, 0.96), rgba(14, 11, 10, 0.92));
  border-color: rgba(222, 203, 164, 0.28);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 247, 229, 0.08);
}

body.home_gold .sub_nav a {
  color: rgba(250, 245, 237, 0.95);
}

body.home_gold .sub_nav a:hover,
body.home_gold .sub_nav a:focus-visible {
  color: #fff8ee;
}

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

.menu_button {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(235, 222, 196, 0.72);
  border-radius: 24px;
  background: rgba(250, 246, 238, 0.94);
  color: transparent;
  font: inherit;
  padding: 0;
  box-shadow:
    0 20px 44px rgba(24, 19, 16, 0.18),
    0 0 54px rgba(227, 183, 108, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    box-shadow 260ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

body.home_gold .menu_button {
  border-color: transparent;
  background: transparent;
  color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu_button:hover,
.menu_button:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 24px 52px rgba(24, 19, 16, 0.22),
    0 0 60px rgba(227, 183, 108, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.menu_button_text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu_button_icon {
  position: relative;
  width: 30px;
  height: 22px;
}

.menu_button_icon::before,
.menu_button_icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #2b241d;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    top 260ms cubic-bezier(0.22, 1, 0.36, 1),
    bottom 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    background-color 220ms ease;
}

.menu_button_icon::before {
  top: 4px;
}

.menu_button_icon::after {
  bottom: 4px;
}

.menu_button.is_open .menu_button_icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu_button.is_open .menu_button_icon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.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_intro_minimal {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #151311;
  isolation: isolate;
}

.hero_intro_minimal::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(rgba(12, 10, 9, 0.34), rgba(12, 10, 9, 0.48)),
    url("assets/ikone.jpg") center center / cover no-repeat;
  transform: translate3d(calc(var(--hero-parallax-x) * -1), calc(var(--hero-parallax-y) * -1), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
  z-index: -2;
}

body.home_gold .hero_intro_minimal::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.2), transparent);
  pointer-events: none;
  z-index: -1;
}

.hero_intro_inner {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding:
    calc(var(--header-reserve) + clamp(32px, 6vw, 72px))
    24px
    clamp(120px, 18vh, 200px);
}

.hero_intro_inner::before {
  content: "";
  width: 28px;
  height: 28px;
  margin: 0 0 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) center / 24px 1.5px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) center / 1.5px 24px no-repeat;
  opacity: 0.94;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.16));
}

.js body.home_gold .hero_intro_inner::before,
.js body.home_gold .hero_intro_title,
.js body.home_gold .hero_intro_lead {
  transition:
    opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.js body.home_gold:not(.page_loaded) .hero_intro_inner::before,
.js body.home_gold:not(.page_loaded) .hero_intro_title,
.js body.home_gold:not(.page_loaded) .hero_intro_lead {
  opacity: 0;
  transform: translateY(30px);
}

.js body.home_gold.page_loaded .hero_intro_inner::before,
.js body.home_gold.page_loaded .hero_intro_title,
.js body.home_gold.page_loaded .hero_intro_lead {
  opacity: 1;
  transform: translateY(0);
}

.js body.home_gold .hero_intro_inner::before {
  transition-delay: 80ms;
}

.js body.home_gold .hero_intro_title {
  transition-delay: 220ms;
}

.js body.home_gold .hero_intro_lead {
  transition-delay: 420ms;
}

.hero_intro_title {
  margin: 0;
  max-width: 16ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 6.2rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.97);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.22),
    0 0 42px rgba(255, 255, 255, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.22);
  text-wrap: balance;
}

.hero_intro_lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.99);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 400;
  text-wrap: balance;
}

.hero_intro_image_hint {
  display: none;
}

.hero_intro_image_hint img {
  display: none;
}

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

.hero_copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.92;
}

.hero h1 {
  max-width: 10ch;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(4.3rem, 8.8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: #171717;
  text-wrap: balance;
}

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: 46ch;
  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;
}

.hero_actions {
  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;
  padding: 10px 16px;
  border-radius: 0;
  border: 0.75px solid transparent;
  color: #fcfbf8;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 72%, #31465d 100%);
  box-shadow: 0 8px 20px rgba(22, 34, 49, 0.18);
  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;
}

body.home_gold .site_header > .button_small {
  margin-left: 0;
  justify-self: end;
  background: #efe1b1;
  border-color: #efe1b1;
  color: #171717;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  letter-spacing: 0.11em;
  padding: 10px 16px;
}

body.home_gold .site_header > .button_small:hover,
body.home_gold .site_header > .button_small:focus-visible {
  background: #f5e9be;
  border-color: #f5e9be;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

body.home_gold .brand_mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 41px;
  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;
}

body.home_gold .brand_mark img {
  height: 82px;
  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));
}

.button_line {
  color: var(--ink);
  background: rgba(248, 236, 232, 0.48);
  border-color: rgba(232, 60, 45, 0.24);
  box-shadow: none;
}

.hero_media {
  margin: 44px 0 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: 0;
  padding-top: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "building building"
    "students spiritual";
  gap: 18px;
  align-items: end;
}

.hero_layer {
  margin: 0;
  position: relative;
  border: 0.75px solid rgba(31, 44, 57, 0.18);
  background: var(--paper-soft);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(22, 28, 36, 0.1);
}

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

.hero_layer_building {
  grid-area: building;
  inset: auto;
  z-index: auto;
  width: min(100%, 920px);
  justify-self: center;
  height: clamp(300px, 31vw, 430px);
}

.hero_layer_building img {
  object-position: center 18%;
}

.hero_layer_students {
  grid-area: students;
  width: auto;
  height: clamp(165px, 17vw, 210px);
  left: auto;
  bottom: auto;
  z-index: auto;
}

.hero_layer_spiritual {
  grid-area: spiritual;
  width: auto;
  height: clamp(165px, 17vw, 210px);
  right: auto;
  top: auto;
  z-index: auto;
}

.hero_highlights {
  padding-top: 20px;
  padding-bottom: 48px;
}

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

.hero_highlight_box {
  position: relative;
  min-height: 240px;
  padding: 22px 22px 24px;
  border: var(--hairline-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  box-shadow: 0 14px 36px rgba(22, 28, 36, 0.06);
  overflow: hidden;
}

.hero_highlight_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 74, 62, 0.8), rgba(140, 118, 80, 0.22));
}

.hero_highlight_label {
  max-width: none;
  margin: 0;
  color: #7b6651;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero_highlight_value {
  max-width: none;
  margin: 0;
  color: #181614;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 2.3vw, 2.85rem);
  font-weight: 500;
  line-height: 0.94;
  text-wrap: balance;
}

.hero_highlight_detail {
  max-width: 28ch;
  margin: auto 0 0;
  color: #5c5952;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.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: 148px;
  height: auto;
  margin: 0 0 38px;
  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;
  font-weight: 300 !important;
  font-synthesis: none;
  font-synthesis-weight: none;
  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: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testimonial_intro {
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}

.testimonial_intro h2 {
  margin-bottom: 0;
}

.testimonial_intro p {
  max-width: 70ch;
  color: #5b5952;
}

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

.testimonial_tile {
  border: var(--hairline);
  background: rgba(255, 255, 255, 0.56);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.testimonial_tile_feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  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.26rem, 2vw, 1.72rem);
  line-height: 1.3;
  color: #202834;
}

.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: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

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

.js .programs_stagger .programs_stagger_item {
  opacity: 0;
  transform: translateY(28px);
  transition-delay: calc(var(--stagger-order, 0) * 110ms);
}

.js .programs_stagger.is_visible .programs_stagger_item {
  opacity: 1;
  transform: translateY(0);
}

.js .programs_stagger h2.programs_stagger_item {
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.program_card {
  position: relative;
  min-height: 260px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1px solid rgba(205, 216, 226, 0.82);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 38, 52, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.js .programs_stagger .program_card.programs_stagger_item {
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 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(236, 137, 123, 0.62);
  box-shadow: 0 14px 30px rgba(26, 38, 52, 0.07);
}

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

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

.program_card p:not(.program_type) {
  max-width: 44ch;
  color: #514d47;
}

.program_cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #314760;
  padding: 11px 14px;
  border: 1px solid rgba(196, 211, 224, 0.62);
  background: rgba(252, 252, 252, 0.78);
  align-self: flex-start;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.program_card:hover .program_cta,
.program_card:focus-visible .program_cta,
.program_card:focus-within .program_cta {
  border-color: rgba(171, 189, 206, 0.82);
  background: rgba(255, 255, 255, 0.96);
}

.program_card_wide {
  min-height: 260px;
}

.program_track_links {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.program_track_links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #314760;
  font-size: 0.88rem;
  padding: 11px 14px;
  border: 1px solid rgba(196, 211, 224, 0.62);
  background: rgba(252, 252, 252, 0.78);
}

.program_track_links a:hover,
.program_track_links a:focus-visible {
  color: #314760;
  border-color: rgba(171, 189, 206, 0.82);
  background: rgba(255, 255, 255, 0.96);
}

.student_worlds_section {
  width: min(100% - 32px, var(--container));
}

.student_worlds_intro {
  margin: 0 0 42px;
  max-width: 74ch;
}

.student_worlds_intro h2 {
  margin-bottom: 14px;
}

.student_worlds_lead {
  max-width: 68ch;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: var(--ink-soft);
}

.world_block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: stretch;
  background: #fff;
  border: var(--hairline-strong);
  box-shadow: 0 8px 22px rgba(22, 28, 36, 0.06);
  overflow: hidden;
}

.world_block + .world_block {
  margin-top: 22px;
}

.world_block_reverse .world_block_text {
  order: 1;
}

.world_block_reverse .world_block_media {
  order: 2;
}

.world_block_text {
  display: grid;
  align-content: start;
  padding: 42px 40px 40px;
}

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

.world_block h3 {
  max-width: 11ch;
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.world_block_lead {
  max-width: 32ch;
  margin: 0 0 14px;
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.58;
  color: #2f2a25;
}

.world_block_body {
  max-width: 44ch;
  margin: 0;
  color: var(--ink-soft);
}

.world_fact_list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.world_fact_list li {
  padding: 0 0 12px;
  border-bottom: var(--hairline);
  background: transparent;
  color: #2d2a26;
}

.world_block_media {
  margin: 0;
  background: var(--paper-soft);
  min-height: 100%;
}

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

.world_block_link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f2f41;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world_block_link::after {
  content: ">";
  color: var(--gold);
  font-size: 0.96rem;
}

.news_section {
  position: relative;
  isolation: isolate;
  border-top: 0;
  border-bottom: 0;
}

.news_section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background:
    radial-gradient(circle at 50% 14%, rgba(224, 230, 236, 0.56), rgba(224, 230, 236, 0) 34%),
    linear-gradient(180deg, rgba(238, 242, 246, 0.9) 0%, rgba(242, 245, 248, 0.82) 56%, rgba(246, 248, 250, 0.78) 100%);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  transform: translateX(-50%);
  z-index: -1;
}

#latest_news {
  position: relative;
  isolation: isolate;
}

#latest_news::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #fff;
  transform: translateX(-50%);
  z-index: -1;
}

.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.2);
  transform: translateX(-0.5px);
}

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

.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.16);
  transition: color 160ms ease;
}

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

.news_events_date {
  margin: 0;
  color: #f04a3e;
  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: #2d445a;
  font-size: clamp(0.98rem, 1.28vw, 1.12rem);
  line-height: 1.32;
  transition: color 160ms ease;
}

.news_events_subtitle {
  margin: 0;
  color: #667282;
  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: #7b8694;
  font-weight: 400;
}

.news_events_item:hover .news_events_title,
.news_events_item:focus-visible .news_events_title {
  color: #f04a3e;
}

.news_events_item:hover .news_events_date,
.news_events_item:focus-visible .news_events_date {
  color: #f04a3e;
}

.news_events_item:hover .news_events_subtitle,
.news_events_item:focus-visible .news_events_subtitle {
  color: #5d5a53;
}

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

.audience_paths_section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(46px, 5vw, 62px);
}

.audience_paths_section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(244, 238, 226, 0.98) 100%);
  border-bottom: 1px solid rgba(122, 148, 172, 0.18);
  transform: translateX(-50%);
  z-index: -1;
}

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

.audience_path_card {
  min-height: 168px;
  padding: 24px 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(194, 205, 215, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 248, 242, 0.92) 100%);
  box-shadow: 0 10px 26px rgba(26, 38, 52, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.audience_path_card:hover,
.audience_path_card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(236, 137, 123, 0.52);
  box-shadow: 0 16px 30px rgba(26, 38, 52, 0.08);
}

.audience_path_card h3 {
  margin-bottom: 0;
  color: #24374b;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience_path_body {
  max-width: none;
  color: #5f5b54;
  font-size: 0.96rem;
  line-height: 1.55;
}

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

.distinct_manifest {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.manifest_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  border: var(--hairline-strong);
  background:
    linear-gradient(135deg, rgba(248, 243, 232, 0.96), rgba(255, 255, 255, 0.98) 62%),
    #fff;
}

.manifest_intro_copy {
  padding: 34px 36px 38px;
}

.manifest_eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.manifest_intro_title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.manifest_intro_lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.manifest_metric {
  border-left: var(--hairline-strong);
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: rgba(255, 255, 255, 0.94);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.manifest_metric_label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.manifest_metric_value {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.manifest_metric_note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.manifest_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.manifest_panel {
  border: var(--hairline-strong);
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 204px;
  min-height: 188px;
  overflow: hidden;
}

.manifest_panel_feature {
  grid-row: span 3;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) 280px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(248, 243, 232, 0.8), #fff 58%);
}

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

.manifest_panel_tag {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--iti-red);
}

.manifest_panel_copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.08;
}

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

.manifest_panel_feature .manifest_panel_copy {
  padding: 30px 32px;
}

.manifest_panel_feature .manifest_panel_copy h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

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

.manifest_panel_feature .manifest_panel_media {
  border-left: 0;
  border-top: var(--hairline);
}

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

.distinct_manifest + .distinct_variant {
  margin-top: 26px;
}

.formation_path {
  margin-top: 18px;
  border: var(--hairline-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 232, 0.9));
}

.formation_path_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: stretch;
  border-bottom: var(--hairline);
}

.formation_path_copy {
  padding: 34px 36px 36px;
}

.formation_path_eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.formation_path_title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.formation_path_lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.76;
  color: var(--ink-soft);
}

.formation_path_visual {
  margin: 0;
  min-height: 100%;
  border-left: var(--hairline);
}

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

.formation_intro_section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.formation_intro_simple {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.formation_intro_kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.formation_intro_heading {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.formation_intro_text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

.formation_steps {
  display: grid;
}

.formation_steps_section {
  padding-top: 0;
}

.formation_step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(240px, 340px);
  gap: 24px;
  align-items: stretch;
  padding: 28px 0;
  border-bottom: var(--hairline);
}

.formation_step:last-child {
  border-bottom: 0;
}

.formation_step_number {
  margin: 0;
  color: rgba(123, 74, 66, 0.82);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 0.9;
}

.formation_step_copy {
  max-width: 58ch;
  display: grid;
  align-content: start;
}

.formation_step_tag {
  margin: 0 0 8px;
  color: var(--iti-red);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.formation_step_copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
}

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

.formation_step_media {
  margin: 0;
  min-height: 220px;
  overflow: hidden;
}

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

.formation_path_actions {
  padding: 28px 36px 34px;
  border-top: var(--hairline);
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 1280px) {
  .formation_path {
    position: relative;
    left: 50%;
    width: min(100vw - 56px, 1460px);
    transform: translateX(-50%);
  }

  .formation_path_intro {
    grid-template-columns: minmax(0, 1.08fr) 520px;
  }
}

.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: var(--navy);
  background: rgba(216, 224, 231, 0.32);
}

.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: var(--paper-soft);
}

.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: var(--paper-soft);
  box-shadow: 0 6px 18px rgba(22, 28, 36, 0.06);
  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(--navy);
}

.positioning {
  position: relative;
  padding: clamp(58px, 6vw, 76px) clamp(34px, 5vw, 58px) clamp(34px, 5vw, 58px);
  border: var(--hairline-strong);
  border-radius: 0;
  background: var(--paper-soft);
  box-shadow: 0 10px 26px rgba(22, 28, 36, 0.08);
}

#visit.section {
  width: min(100% - 32px, 1360px);
}

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

.positioning_cta {
  min-height: clamp(420px, 52vw, 620px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(72px, 9vw, 118px) clamp(28px, 5vw, 72px);
  background:
    linear-gradient(rgba(13, 11, 10, 0.54), rgba(13, 11, 10, 0.58)),
    url("assets/ikone.jpg") center center / cover no-repeat;
  border-color: rgba(230, 219, 198, 0.28);
  box-shadow:
    0 18px 44px rgba(22, 28, 36, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.positioning_cta::before {
  display: none;
}

.positioning_kicker {
  margin: 0 0 16px;
  color: rgba(239, 224, 190, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.positioning_cta h2 {
  max-width: 14ch;
  margin: 0;
  color: #fff9ef;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.positioning_lead {
  max-width: 46ch;
  margin: 20px 0 0;
  color: rgba(255, 249, 239, 0.9);
  font-size: clamp(1.16rem, 1.9vw, 1.42rem);
  line-height: 1.7;
}

.positioning_cta .cluster_actions {
  margin-top: 34px;
  justify-content: center;
}

.positioning_cta .button {
  box-shadow: 0 14px 30px rgba(9, 12, 18, 0.26);
}

.positioning_cta .button_line {
  color: #fff7eb;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 246, 226, 0.34);
}

.positioning_cta .button_line:hover,
.positioning_cta .button_line:focus-visible {
  color: #fffaf3;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 246, 226, 0.48);
}

.page_hero {
  padding-top: calc(var(--header-reserve) + 32px);
  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: var(--paper-soft);
  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: var(--paper-soft);
  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(--navy);
}

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

.details_panel {
  border: var(--hairline-strong);
  background: var(--paper-soft);
  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: var(--paper-soft);
  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: var(--gold);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.soft_band {
  background: var(--paper);
  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(--navy);
}

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

.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(--paper);
  padding: clamp(42px, 6vw, 64px) 24px 0;
  position: relative;
  overflow: visible;
}

.footer_lower {
  background: var(--paper);
  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;
  overflow: visible;
}

.footer_seal {
  width: min(224px, 42vw);
  height: auto;
  opacity: 0.98;
  margin-top: clamp(-128px, -11vw, -84px);
}

.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(--navy);
}

.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(--navy);
}

.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(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.js .reveal_stagger_item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 860ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 860ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is_visible .reveal_stagger_item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--reveal-order, 0) * 110ms + 110ms);
}

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

  .reveal,
  .reveal_stagger_item,
  .hero_intro_inner::before,
  .hero_intro_title,
  .hero_intro_lead,
  .button,
  .sub_nav {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1120px) {
  .hero_intro_title {
    max-width: 14ch;
    font-size: clamp(3.4rem, 8vw, 5.6rem);
  }

  .formation_intro_heading {
    max-width: 11ch;
  }

  .hero_collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "building building"
      "students spiritual";
    gap: 14px;
  }

  .hero_layer_building {
    width: min(100%, 780px);
    height: clamp(260px, 34vw, 360px);
  }

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

  .hero_highlight_box {
    min-height: 220px;
  }

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

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

  .world_block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  }

  .world_block_media {
    min-height: 380px;
  }

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

  .formation_step {
    grid-template-columns: 96px minmax(0, 1fr) 280px;
    gap: 20px;
  }

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

  .pillar_media {
    display: none;
  }

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

  .manifest_metric {
    border-left: 0;
    border-top: var(--hairline-strong);
  }

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

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

  .manifest_panel_feature {
    grid-row: auto;
  }

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

  .formation_path_visual {
    border-left: 0;
    border-top: var(--hairline);
    min-height: 280px;
  }
}

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

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

  .world_block_reverse .world_block_text,
  .world_block_reverse .world_block_media {
    order: initial;
  }

  .world_block_media {
    min-height: 320px;
  }

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

  .manifest_panel_media {
    border-left: 0;
    border-top: var(--hairline);
    min-height: 184px;
  }

  .formation_step {
    grid-template-columns: 88px minmax(0, 1fr);
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media (max-width: 860px) {
  body.menu_open {
    overflow: hidden;
  }

  .menu_button {
    display: inline-flex;
    justify-self: end;
    width: 58px;
    height: 58px;
  }

  body.home_gold .menu_button {
    border-radius: 18px;
  }

  body.home_gold .site_header:not(.is_scrolled) .menu_button {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.home_gold .site_header:not(.is_scrolled) .menu_button .menu_button_icon::before,
  body.home_gold .site_header:not(.is_scrolled) .menu_button .menu_button_icon::after {
    background: rgba(255, 255, 255, 0.98);
  }

  body.home_gold .site_header.is_scrolled .menu_button {
    width: 54px;
    height: 54px;
    border-color: rgba(239, 228, 204, 0.72);
    background: rgba(251, 247, 239, 0.94);
    box-shadow:
      0 16px 34px rgba(24, 19, 16, 0.16),
      0 0 38px rgba(227, 183, 108, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
  }

  body.home_gold .site_header.is_scrolled .menu_button .menu_button_icon::before,
  body.home_gold .site_header.is_scrolled .menu_button .menu_button_icon::after {
    background: #2b241d;
  }

  body.home_gold .site_header {
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .site_nav {
    display: block;
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-reserve) + 12px);
    width: auto;
    max-height: calc(100svh - var(--header-reserve) - 28px);
    overflow-y: auto;
    border: 1px solid rgba(233, 220, 196, 0.22);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(22, 18, 16, 0.9), rgba(10, 8, 7, 0.94));
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 246, 227, 0.08);
    backdrop-filter: blur(18px);
    padding: 16px 18px 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 220ms ease,
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 340ms;
  }

  body.home_gold .site_nav {
    background: linear-gradient(180deg, rgba(28, 22, 19, 0.97), rgba(12, 10, 9, 0.96));
    border-color: rgba(226, 208, 173, 0.22);
    border-radius: 0;
    padding: 18px 18px 24px;
  }

  body.home_gold .site_nav::before {
    content: "Menu";
    display: block;
    margin: 0 0 20px;
    padding: 16px 18px 18px;
    border: 1px solid rgba(255, 245, 225, 0.22);
    color: rgba(255, 248, 237, 0.96);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2rem, 7vw, 2.5rem);
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .site_nav.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 220ms ease,
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

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

  .nav_item {
    display: grid;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 0.75px solid rgba(226, 208, 173, 0.12);
  }

  .nav_item::after {
    display: none;
  }

  .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;
    backdrop-filter: none;
    padding: 0 0 0 14px;
    min-width: 0;
  }

  .sub_nav::before {
    display: none;
  }

  .sub_nav a {
    padding: 8px 0;
    font-family: "Source Serif 4", "Iowan Old Style", "Times New Roman", serif;
    font-size: 0.98rem;
    line-height: 1.28;
    color: rgba(247, 239, 228, 0.82);
    border-bottom-color: rgba(226, 208, 173, 0.08);
  }

  .sub_nav li:first-child {
    display: none;
  }

  body.home_gold .nav_item > a,
  body.home_gold .sub_nav a {
    color: rgba(255, 255, 255, 0.94);
  }

  body.home_gold .nav_item > a {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.72rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0;
  }

  body.home_gold .nav_item > a:hover,
  body.home_gold .nav_item > a:focus-visible {
    color: #fff8ee;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
  }

  body.home_gold .sub_nav a:hover,
  body.home_gold .sub_nav a:focus-visible {
    transform: translateX(0);
    color: #fff8ee;
    border-bottom-color: rgba(226, 208, 173, 0.18);
  }

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

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

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

  .hero_intro_inner {
    padding:
      calc(var(--header-reserve) + 12px)
      20px
      132px;
  }

  .hero_intro_inner::before {
    width: 24px;
    height: 24px;
    margin-bottom: 22px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) center / 20px 1.5px no-repeat,
      linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) center / 1.5px 20px no-repeat;
  }

  .hero_intro_title {
    max-width: 12ch;
    font-size: clamp(3.35rem, 13.2vw, 4.9rem);
  }

  .formation_intro_section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .formation_intro_heading {
    max-width: 11ch;
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .formation_intro_text {
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.7;
  }

  .formation_step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .formation_step_number {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .formation_step_copy {
    max-width: none;
  }

  .formation_step_media,
  .formation_step_media img {
    min-height: 200px;
  }

  h1 {
    max-width: 10ch;
  }

  .lead {
    max-width: 32ch;
  }

  .hero_actions {
    width: 100%;
  }

  .hero_highlights {
    padding-top: 8px;
    padding-bottom: 28px;
  }

  .hero_highlights_grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero_highlight_box {
    min-height: auto;
    padding: 16px;
    gap: 8px;
  }

  .hero_highlight_value {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .hero_highlight_detail {
    max-width: none;
    font-size: 0.86rem;
  }

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

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

  .audience_path_card {
    min-height: auto;
    padding: 20px 18px;
  }

  .audience_path_card h3 {
    font-size: clamp(1.08rem, 5.4vw, 1.28rem);
  }

  .audience_path_body {
    font-size: 0.92rem;
  }

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

  .manifest_intro_copy {
    padding: 28px 26px 30px;
  }

  .manifest_metric {
    padding: 24px 26px;
  }

  .manifest_panel_copy {
    padding: 22px;
  }

  .manifest_panel_feature .manifest_panel_copy {
    padding: 26px 22px;
  }

  .student_worlds_intro {
    margin-bottom: 32px;
  }

  .world_block {
    gap: 0;
  }

  .world_block h3 {
    max-width: 12ch;
  }

  .world_block_text {
    padding: 28px 26px 30px;
  }

  .world_media_secondary figure {
    min-height: 180px;
  }

  .formation_path_copy {
    padding: 28px 26px 30px;
  }

  .formation_step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 22px;
  }

  .formation_path_actions {
    padding: 22px;
  }

  .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 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "building"
      "students"
      "spiritual";
    gap: 10px;
    padding-top: 0;
  }

  .hero_media {
    margin-top: 34px;
  }

  .hero_layer_building {
    width: 100%;
    height: 220px;
  }

  .hero_layer_students,
  .hero_layer_spiritual {
    height: 148px;
  }

  .pillar_copy {
    padding: 16px;
  }

  .manifest_intro_title {
    max-width: 11ch;
  }

  .student_worlds_lead {
    font-size: 1rem;
  }

  .world_block h3 {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .world_block_lead {
    max-width: 100%;
    font-size: 1.06rem;
  }

  .world_fact_list li {
    padding: 0 0 10px;
  }

  .world_block_media {
    min-height: 240px;
  }

  .manifest_intro_lead {
    font-size: 1rem;
  }

  .formation_path_title {
    max-width: 11ch;
  }

  .formation_path_lead {
    font-size: 1rem;
  }

  .manifest_metric_value {
    max-width: 8ch;
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .manifest_panel_copy h3,
  .manifest_panel_feature .manifest_panel_copy h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .manifest_panel_media {
    min-height: 160px;
  }

  .formation_path_visual {
    min-height: 220px;
  }

  .formation_step_number {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .formation_step_copy h3 {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .mission_sentence {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 122px;
  }

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

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

}
