: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: "EB Garamond", "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: "EB 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: "EB 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.2), rgba(12, 10, 9, 0.4)),
    url("assets/iti-hero-bg-v1.png") 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: "EB 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: "EB 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: "EB 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: "EB 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;
}

body.design_lab_page {
  background:
    radial-gradient(circle at top, rgba(216, 224, 231, 0.5), transparent 32%),
    linear-gradient(180deg, #f8f3e8 0%, #f4efe4 100%);
}

body.style_guide_page {
  background:
    radial-gradient(circle at top left, rgba(216, 224, 231, 0.42), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfaf6 42%, #f5efe3 100%);
}

.style_guide_header.site_header {
  position: sticky;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 0.75px solid rgba(37, 33, 28, 0.08);
  backdrop-filter: blur(14px);
}

.style_guide_header .brand_mark img {
  height: 56px;
}

.style_guide_header .nav_list {
  gap: 12px;
}

.style_guide_header .nav_item > a {
  font-size: 0.86rem;
}

.style_guide_header .nav_item > a[aria-current="page"] {
  color: #25211c;
  text-decoration: underline;
  text-decoration-thickness: 0.75px;
  text-underline-offset: 5px;
}

.style_guide_main {
  padding-bottom: clamp(72px, 9vw, 128px);
}

.style_guide_hero,
.style_guide_block,
.style_guide_direction {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.style_guide_hero {
  min-height: 72svh;
  padding: clamp(72px, 12vw, 142px) 0 clamp(52px, 8vw, 96px);
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.style_guide_hero_rule {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  margin: 0 auto clamp(42px, 6vw, 68px);
}

.style_guide_hero_rule span {
  display: block;
  height: 1px;
  background: rgba(37, 33, 28, 0.62);
}

.style_guide_hero_rule p {
  margin: 0;
  color: #464543;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1;
}

.style_guide_hero h1 {
  max-width: none;
  margin: 0;
  color: #25211c;
  font-size: clamp(5.2rem, 13vw, 10.5rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

.style_guide_manifesto {
  max-width: 34ch;
  margin: clamp(28px, 4vw, 42px) auto 0;
  color: #464543;
  font-size: clamp(1.38rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  text-wrap: balance;
}

.style_guide_block {
  padding: clamp(54px, 7vw, 92px) 0;
  border-top: 0.75px solid rgba(37, 33, 28, 0.16);
}

.style_guide_block_head {
  margin-bottom: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 14px;
  align-items: start;
}

.style_guide_block_head h2 {
  grid-column: 2;
  max-width: 12ch;
  margin: 0;
  color: #25211c;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.style_guide_block_head > p:last-child {
  grid-column: 2;
  max-width: 48ch;
  color: #464543;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.45;
}

.style_guide_label,
.style_guide_token {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 5px 9px 6px;
  color: #2d445a;
  background: rgba(220, 233, 243, 0.62);
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.style_guide_label {
  color: #7b4a42;
  background: rgba(248, 236, 202, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.style_guide_spec_rows {
  display: grid;
  gap: clamp(24px, 4.2vw, 42px);
}

.style_guide_spec_row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.style_type_main,
.style_type_secondary,
.style_type_tertiary {
  margin: 0;
  max-width: none;
  color: #25211c;
  letter-spacing: 0;
}

.style_type_main {
  font-size: clamp(4.4rem, 8.5vw, 7.2rem);
  line-height: 0.88;
  font-weight: 500;
}

.style_type_secondary {
  font-size: clamp(3rem, 6vw, 5rem);
  font-style: italic;
  line-height: 0.98;
  font-weight: 400;
}

.style_type_tertiary {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  font-weight: 400;
}

.style_type_sub {
  margin: 0;
  color: #25211c;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.style_type_body {
  max-width: 52ch;
  color: #464543;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.34;
}

.style_guide_note {
  margin-top: 10px;
  color: rgba(70, 69, 67, 0.72);
  font-size: 0.98rem;
  line-height: 1.42;
}

.style_sample_large,
.style_sample_medium,
.style_sample_regular,
.style_sample_small {
  color: #464543;
}

.style_sample_large {
  font-size: clamp(1.78rem, 3vw, 2.42rem);
  line-height: 1.24;
}

.style_sample_medium {
  font-size: clamp(1.32rem, 2.2vw, 1.72rem);
  line-height: 1.34;
}

.style_sample_regular {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.56;
}

.style_sample_small {
  font-size: 0.92rem;
  line-height: 1.45;
}

.style_weight_stack {
  display: grid;
  gap: 10px;
  color: #25211c;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.25;
}

.style_weight_600 {
  font-weight: 600;
}

.style_weight_500 {
  font-weight: 500;
}

.style_weight_400 {
  font-weight: 400;
}

.style_weight_300 {
  font-weight: 300;
}

.style_palette_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.style_swatch {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.style_swatch span {
  width: 100%;
  aspect-ratio: 1.06;
  display: block;
  background: var(--swatch);
  border: 0.75px solid rgba(37, 33, 28, 0.42);
}

.style_swatch strong {
  margin-top: 10px;
  color: #25211c;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.style_swatch p {
  color: #5b5a57;
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.style_subtle_link {
  display: inline-flex;
  width: fit-content;
  color: #2d445a;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.style_subtle_link::after {
  content: "→";
  margin-left: 8px;
  font-size: 0.88rem;
  line-height: 1;
}

.style_card_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.style_editorial_card,
.style_news_sample {
  min-height: 320px;
  padding: clamp(24px, 3vw, 32px);
  border: 0.75px solid rgba(37, 33, 28, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.style_editorial_card {
  display: grid;
  align-content: center;
  gap: 16px;
  text-align: center;
}

.style_editorial_card h3 {
  max-width: 10ch;
  margin: 0 auto;
  color: #25211c;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 0.96;
}

.style_editorial_card p:not(.audience_paths_kicker) {
  margin: 0 auto;
  color: #464543;
  font-size: 1.06rem;
  line-height: 1.48;
}

.style_editorial_card .style_subtle_link {
  margin: 4px auto 0;
}

.style_portal_sample {
  min-height: 320px;
}

.style_news_sample {
  display: grid;
  align-content: start;
  gap: 10px;
}

.style_news_sample .style_guide_label {
  margin-bottom: 12px;
}

.style_program_sample {
  min-height: 320px;
}

.style_identity_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 52px);
  align-items: end;
}

.style_identity_grid figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.style_identity_grid img {
  width: min(100%, 250px);
  height: 250px;
  object-fit: contain;
}

.style_identity_grid figcaption {
  color: #464543;
  font-size: 1.12rem;
  line-height: 1.1;
}

.style_guide_direction {
  padding: clamp(64px, 8vw, 108px) 0 0;
  text-align: left;
}

.style_guide_direction .style_guide_hero_rule {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.style_guide_direction > p {
  max-width: 78ch;
  margin: 0 auto;
  color: #25211c;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.46;
  text-align: justify;
}

.style_guide_direction > p + p {
  margin-top: clamp(26px, 4vw, 42px);
}

.design_lab_variants {
  width: 100%;
  display: grid;
  gap: 0;
  padding: 0 0 72px;
}

.variant_card {
  position: relative;
  display: block;
}

.variant_tag {
  position: absolute;
  top: calc(var(--header-reserve) + 18px);
  left: clamp(14px, 2.6vw, 28px);
  z-index: 6;
  margin: 0;
  padding: 10px 14px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.96);
  background: rgba(18, 16, 14, 0.72);
  border: 1px solid rgba(255, 245, 222, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  user-select: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  gap: 10px;
}

button.variant_tag {
  appearance: none;
  font-family: inherit;
  line-height: 1;
}

.variant_tag_label {
  display: inline-flex;
  align-items: center;
}

.variant_tag_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 250, 240, 0.96);
}

.variant_tag:hover,
.variant_tag:focus-visible {
  transform: translateY(-1px);
  background: rgba(22, 19, 16, 0.84);
  border-color: rgba(255, 245, 222, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.variant_tag:focus-visible {
  outline: 2px solid rgba(255, 239, 204, 0.84);
  outline-offset: 3px;
}

.variant_card.is_collapsed {
  margin: 2px 0;
  min-height: 0;
}

.variant_card.is_collapsed > :not(.variant_tag) {
  display: none;
}

.variant_card.is_collapsed .variant_tag {
  position: relative;
  top: auto;
  left: auto;
  display: inline-flex;
  margin: 6px clamp(14px, 2.6vw, 28px);
}

.design_lab_current_hero {
  min-height: min(100svh, 920px);
}

.variant_current_working .hero_intro_minimal::before {
  background:
    linear-gradient(rgba(12, 10, 9, 0.12), rgba(12, 10, 9, 0.26)),
    url("/Users/tobiashanifl/.codex/generated_images/019e6f4f-81c6-7810-9b59-fd90b67cb540/ig_0aec0e263526bb32016a186dcdf8d88191985e307e452bf6f4.png") center center / cover no-repeat;
}

.variant_current_locked .hero_intro_minimal::before {
  background:
    linear-gradient(rgba(12, 10, 9, 0.12), rgba(12, 10, 9, 0.26)),
    url("assets/hero-v2-reference.png") center center / cover no-repeat;
}

.hero_intro_inner_panel::before {
  content: none;
}

.design_lab_hero_panel {
  position: relative;
  width: min(100%, 1080px);
  min-height: min(64svh, 560px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 4.2vw, 54px) clamp(30px, 4vw, 50px);
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.design_lab_hero_panel,
.design_lab_hero_panel .design_lab_hero_panel_kicker,
.design_lab_hero_panel .design_lab_panel_title,
.design_lab_hero_panel .design_lab_panel_lead {
  font-family: "Source Serif 4", "Times New Roman", serif;
}

.design_lab_hero_panel::before,
.design_lab_hero_panel::after {
  content: none;
}

.design_lab_hero_panel_kicker {
  margin: 0 0 clamp(22px, 3vw, 30px);
  color: #7a6345;
  font-size: clamp(0.84rem, 1.15vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.design_lab_panel_title {
  width: min(92%, 17ch);
  color: #1f1d1a;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(4.1rem, 7vw, 6.1rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: none;
}

.design_lab_panel_lead {
  width: min(90%, 34ch);
  margin-top: clamp(24px, 3.5vw, 38px);
  color: #342d26;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.56rem, 2.2vw, 1.92rem);
  font-weight: 400;
  line-height: 1.28;
}

.design_lab_page .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_warm_original::before {
  background:
    linear-gradient(rgba(23, 17, 13, 0.26), rgba(23, 17, 13, 0.38)),
    url("assets/ikone.jpg") center center / cover no-repeat;
}

.hero_intro_warm_original::after {
  background:
    linear-gradient(to top, rgba(12, 10, 9, 0.26), transparent 48%),
    radial-gradient(circle at 50% 36%, rgba(229, 199, 148, 0.18), transparent 22%);
}

.hero_intro_inner_warm {
  gap: 0;
}

.js body.design_lab_page .hero_intro_inner::before,
.js body.design_lab_page .hero_intro_title,
.js body.design_lab_page .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.design_lab_page:not(.page_loaded) .hero_intro_inner::before,
.js body.design_lab_page:not(.page_loaded) .hero_intro_title,
.js body.design_lab_page:not(.page_loaded) .hero_intro_lead {
  opacity: 0;
  transform: translateY(30px);
}

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

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

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

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

.hero_variant {
  position: relative;
  min-height: min(100svh, 920px);
  overflow: hidden;
  border: 0;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: none;
}

.hero_variant_copy {
  position: relative;
  z-index: 1;
}

.hero_variant_kicker {
  margin-bottom: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(248, 243, 232, 0.82);
}

.hero_variant_text {
  font-size: 1.06rem;
}

.hero_variant_minimal {
  display: grid;
  grid-template-rows: 1.1fr auto;
  background: #171513;
  color: #f8f3e8;
}

.hero_variant_media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.hero_variant_minimal .hero_variant_copy {
  padding: 38px 34px 36px;
  background:
    linear-gradient(180deg, rgba(24, 20, 18, 0), rgba(24, 20, 18, 0.95) 18%),
    linear-gradient(180deg, rgba(24, 20, 18, 0.96), rgba(24, 20, 18, 0.96));
  margin-top: -96px;
}

.hero_variant_minimal h2,
.hero_variant_immersive h2 {
  color: #fff8ee;
}

.hero_variant_minimal .hero_variant_text,
.hero_variant_immersive .hero_variant_text {
  color: rgba(248, 243, 232, 0.88);
}

.hero_variant_editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.95fr);
  gap: 0;
  padding: 56px clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(248, 243, 232, 0.96), rgba(239, 232, 217, 0.88)),
    var(--paper-soft);
}

.hero_variant_editorial .hero_variant_kicker,
.hero_variant_columns .hero_variant_kicker,
.hero_variant_emblem .hero_variant_kicker {
  color: var(--gold);
}

.hero_variant_editorial h2,
.hero_variant_columns h2,
.hero_variant_emblem h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
}

.hero_variant_meta_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero_variant_meta_row span,
.hero_variant_programs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(140, 118, 80, 0.24);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #54473a;
}

.hero_variant_editorial_stack {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-self: stretch;
}

.hero_variant_editorial_image {
  margin: 0;
  min-height: 480px;
}

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

.hero_variant_quote {
  padding: 20px 22px;
  border-top: 1px solid rgba(140, 118, 80, 0.18);
}

.hero_variant_quote p {
  max-width: 28ch;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.18;
  color: #2f261d;
}

.hero_variant_immersive {
  display: flex;
  align-items: end;
  padding: 56px clamp(28px, 4vw, 40px);
  background: #151311;
}

.hero_variant_immersive_backdrop {
  position: absolute;
  inset: 0;
}

.hero_variant_immersive_backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 14, 13, 0.12), rgba(16, 14, 13, 0.76)),
    radial-gradient(circle at top, rgba(255, 241, 210, 0.18), transparent 36%);
}

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

.hero_variant_immersive .hero_variant_copy {
  max-width: 30rem;
}

.hero_variant_action_copy {
  max-width: 42rem;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(100%, 42rem);
  margin-inline: auto;
  padding: clamp(34px, 4vw, 54px) clamp(22px, 3vw, 42px);
  text-align: center;
}

.hero_variant_action_copy::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(74vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 56%, rgba(255, 255, 255, 0.82) 68%, rgba(255, 255, 255, 0.22) 84%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.96;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 42px rgba(255, 255, 255, 0.14));
  z-index: -1;
}

.hero_variant_action_copy .hero_variant_kicker,
.hero_variant_action_copy h2,
.hero_variant_action_copy .hero_variant_text {
  position: relative;
  z-index: 1;
}

.hero_variant_action_copy .hero_variant_kicker {
  color: rgba(47, 38, 29, 0.72);
  margin-bottom: 4px;
}

.hero_variant_action_copy h2 {
  display: grid;
  justify-items: center;
  gap: 0;
  max-width: 10ch;
  margin: 0;
  color: #2f261d;
  text-shadow: none;
}

.hero_variant_action_copy h2 span {
  display: block;
}

.hero_variant_action_copy .hero_variant_text {
  max-width: 30ch;
  margin: 0;
  color: rgba(47, 38, 29, 0.88);
}

.hero_variant_action {
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px) clamp(22px, 4vw, 56px);
}

.hero_variant_action .hero_variant_immersive_backdrop::after {
  background:
    linear-gradient(180deg, rgba(16, 14, 13, 0.1), rgba(16, 14, 13, 0.46)),
    radial-gradient(circle at center, rgba(255, 248, 231, 0.18), transparent 42%);
}

.hero_actions_compact {
  justify-content: flex-start;
  gap: 10px;
}

.hero_variant_slideshow {
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  background: #141312;
  color: #f8f3e8;
}

.hero_slideshow_stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero_slideshow_slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1000ms ease;
}

.hero_slideshow_slide.is_active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero_slideshow_slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), transparent 54%);
}

.hero_slideshow_caption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(100% - 48px, 780px);
  max-width: 780px;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  transform: translate(-50%, -50%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.hero_slideshow_kicker {
  margin: 0;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.84);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero_slideshow_caption h2 {
  max-width: 16ch;
  margin: 0 auto;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 0.96;
  color: #fff8ee;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35), 0 8px 28px rgba(0, 0, 0, 0.4);
}

.hero_slideshow_controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vw, 34px);
  z-index: 3;
  transform: translateX(-50%);
  justify-content: center;
}

.hero_slideshow_button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 245, 222, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.hero_slideshow_button:hover,
.hero_slideshow_button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero_slideshow_button:focus-visible,
.hero_slideshow_dot:focus-visible {
  outline: 2px solid rgba(255, 244, 222, 0.84);
  outline-offset: 2px;
}

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

.hero_slideshow_dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 244, 222, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero_slideshow_dot.is_active {
  transform: scaleX(2.6);
  border-radius: 999px;
  background: rgba(255, 244, 222, 0.96);
}

.hero_variant_columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 26px;
  padding: 56px clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.98), rgba(238, 232, 220, 0.92));
}

.hero_variant_programs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero_variant_stats {
  display: grid;
  align-content: center;
  gap: 16px;
}

.hero_variant_stats div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-left: 1px solid rgba(140, 118, 80, 0.34);
  background: rgba(255, 251, 245, 0.6);
}

.hero_variant_stats strong {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.3rem;
  color: #2c241c;
}

.hero_variant_stats span {
  color: #5c5147;
}

.hero_variant_emblem {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
  padding: 56px 32px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 249, 231, 0.8), transparent 44%),
    linear-gradient(180deg, #f7f2e7 0%, #f1ebde 100%);
}

.hero_variant_emblem_mark {
  width: 170px;
}

.hero_variant_emblem_mark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero_variant_emblem .hero_variant_copy {
  display: grid;
  justify-items: center;
}

.hero_variant_emblem h2 {
  max-width: 11ch;
}

.hero_variant_rule {
  width: 88px;
  height: 1px;
  margin: 22px 0 16px;
  background: rgba(140, 118, 80, 0.48);
}

.hero_variant_subline {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: #6d6256;
}

@media (max-width: 1100px) {
  .hero_variant_editorial,
  .hero_variant_columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .design_lab_variants {
    gap: 0;
    padding-bottom: 56px;
  }

  .variant_tag {
    top: calc(var(--header-reserve) + 12px);
    left: 12px;
    padding: 9px 12px;
  }

  .variant_card.is_collapsed {
    margin: 0;
  }

  .variant_card.is_collapsed .variant_tag {
    margin: 6px 12px;
  }

  .design_lab_hero_panel {
    min-height: min(60svh, 500px);
    padding: 30px 20px;
    border-radius: 0;
  }

  .design_lab_panel_title {
    width: min(94%, 12ch);
    font-size: clamp(3rem, 10vw, 4.6rem);
    font-weight: 300;
  }

  .design_lab_panel_lead {
    width: min(92%, 26ch);
    font-size: clamp(1.2rem, 5vw, 1.62rem);
  }

  .hero_variant {
    min-height: min(100svh, 760px);
  }

  .hero_variant_minimal .hero_variant_copy,
  .hero_variant_editorial,
  .hero_variant_immersive,
  .hero_variant_columns,
  .hero_variant_emblem {
    padding: 26px 22px;
  }

  .hero_variant_minimal .hero_variant_copy {
    margin-top: 0;
  }

  .hero_variant_media img,
  .hero_variant_editorial_image {
    min-height: 260px;
  }

  .hero_variant_editorial h2,
  .hero_variant_columns h2,
  .hero_variant_emblem h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero_variant_quote p {
    font-size: 1.28rem;
  }

  .hero_variant_stats div {
    padding: 16px;
  }

  .hero_variant_emblem_mark {
    width: 132px;
  }

  .hero_variant_action_copy {
    padding: 26px 20px;
  }

  .hero_variant_action_copy::before {
    width: min(92vw, 540px);
  }

  .hero_slideshow_caption {
    width: min(100% - 32px, 520px);
  }

  .hero_slideshow_kicker {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
  }

  .hero_slideshow_caption h2 {
    font-size: clamp(1.65rem, 7.8vw, 2.8rem);
  }
}

.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: "EB 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: "EB 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;
}

.variant_mission_working .mission_sentence {
  background: transparent;
  border: 0;
  box-shadow: none;
}

#mission_locked {
  background: #ffffff;
  font-family: "Source Serif 4", "Times New Roman", serif;
}

#mission_locked.section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.variant_mission_working .mission_mark {
  opacity: 0.72;
}

.variant_mission_working .mission_sentence p {
  font-size: clamp(1.72rem, 3.05vw, 2.72rem);
  line-height: 1.24;
  font-weight: 300 !important;
  color: rgba(37, 33, 28, 0.8);
}

#mission_locked p {
  font-family: "Source Serif 4", "Times New Roman", serif !important;
}

.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: "EB 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;
}

#programs,
.programs_section_clone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(54px, 7vw, 90px);
  padding-bottom: clamp(60px, 8vw, 104px);
}

.programs_section_clone::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  width: 100vw;
  background: #9b9686;
  transform: translateX(-50%);
  z-index: -2;
}

#programs::before {
  content: none;
}

.programs_invitation_frame {
  position: relative;
  width: min(100%, 920px);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 48px);
}

.programs_invitation_frame::before,
.programs_invitation_frame::after {
  content: none;
}

.programs_invitation_shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.programs_shape_fill {
  fill: #f2efe8;
}

.programs_shape_outer,
.programs_shape_inner,
.programs_shape_arch,
.programs_shape_rule {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.programs_shape_outer {
  stroke: rgba(245, 242, 234, 0.82);
  stroke-width: 1;
}

.programs_shape_inner,
.programs_shape_arch,
.programs_shape_rule {
  stroke: rgba(36, 52, 77, 0.34);
  stroke-width: 1;
}

.programs_invitation_panel {
  position: relative;
  z-index: 1;
  padding: clamp(112px, 12vw, 150px) clamp(42px, 8vw, 90px) clamp(78px, 9vw, 112px);
  background: transparent;
  color: #24344d;
  text-align: center;
  filter: drop-shadow(0 30px 70px rgba(30, 29, 24, 0.16));
}

.programs_invitation_panel::before,
.programs_invitation_panel::after {
  content: none;
}

.programs_invitation_kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #24344d;
  font-size: clamp(0.86rem, 1.7vw, 1.08rem);
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.programs_invitation_subtitle {
  position: relative;
  z-index: 1;
  margin: clamp(18px, 3vw, 26px) auto 0;
  max-width: 26ch;
  color: rgba(93, 88, 80, 0.66);
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.08rem);
  line-height: 1.08;
}

.programs_invitation_mark {
  position: relative;
  z-index: 1;
  width: clamp(58px, 7vw, 82px);
  height: auto;
  margin: clamp(28px, 4vw, 42px) auto 8px;
  opacity: 0.58;
  filter: grayscale(1);
}

#programs h2,
.programs_section_clone h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #24344d;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.programs_invitation_caption {
  position: relative;
  z-index: 1;
  margin: 4px 0 clamp(32px, 5vw, 50px);
  color: #24344d;
  font-size: clamp(0.72rem, 1.3vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program_grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

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

.program_grid_bottom {
  margin-top: 14px;
  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 {
  --program-accent: rgba(231, 196, 122, 0.96);
  --program-image: none;
  --program-focal-point: center center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(36, 52, 77, 0.34);
  border-radius: 12px;
  background: rgba(242, 239, 232, 0.66);
  box-shadow: none;
  text-decoration: none;
  color: #24344d;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms 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: none;
}

.program_card::after {
  content: none;
}

.program_card > * {
  position: relative;
  z-index: 1;
}

.program_card:hover,
.program_card:focus-visible,
.program_card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(36, 52, 77, 0.82);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 28px rgba(30, 29, 24, 0.08);
}

.program_card:hover::before,
.program_card:focus-visible::before,
.program_card:focus-within::before {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.program_brand {
  margin-bottom: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.program_mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 52, 77, 0.74);
  border-radius: 12px;
  background: rgba(248, 246, 240, 0.54);
  color: #24344d;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program_meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding-top: 1px;
  color: rgba(93, 88, 80, 0.78);
  font-size: 0.62rem;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.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: #24344d;
  font-size: clamp(1.1rem, 1.65vw, 1.38rem);
  line-height: 1.08;
  text-wrap: balance;
  max-width: 14ch;
  text-align: center;
}

.program_card p:not(.program_type) {
  max-width: 29ch;
  margin-inline: auto;
  color: rgba(93, 88, 80, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.program_cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #24344d;
  padding: 0;
  border: 0;
  background: transparent;
  align-self: center;
  transition: color 160ms ease, transform 160ms ease;
}

.program_cta::after {
  content: "→";
  font-size: 0.88rem;
  line-height: 1;
  transform: translateY(-0.5px);
}

.program_card:hover .program_cta,
.program_card:focus-visible .program_cta,
.program_card:focus-within .program_cta {
  color: #142239;
  transform: translateX(3px);
}

.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: center;
  text-align: center;
  text-decoration: none;
  color: #24344d;
  font-size: 0.74rem;
  line-height: 1.35;
  padding: 10px 12px;
  border: 1px solid rgba(36, 52, 77, 0.24);
  background: rgba(248, 246, 240, 0.46);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.program_track_links a:hover,
.program_track_links a:focus-visible {
  color: #142239;
  border-color: rgba(36, 52, 77, 0.58);
  background: rgba(255, 253, 248, 0.72);
  transform: translateX(3px);
}

.programs_working_refined {
  width: min(100% - 32px, 1440px);
  padding-top: clamp(72px, 8vw, 98px);
  padding-bottom: clamp(72px, 8vw, 106px);
}

.programs_working_header {
  margin: 0 0 32px;
}

#programs .programs_working_kicker {
  margin: 0 0 10px;
  color: #7a6345;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#programs .programs_working_header h2 {
  margin: 0;
  max-width: 10ch;
  color: #201d18;
  font-size: clamp(2.1rem, 3.9vw, 3.5rem);
  line-height: 0.96;
}

#programs .programs_working_lead {
  display: none;
  margin: 16px 0 0;
  max-width: 38ch;
  color: #584d40;
  font-size: 1.18rem;
  line-height: 1.42;
}

.programs_working_grid {
  display: grid;
  gap: 22px;
}

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

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

.program_card_refined {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding: clamp(34px, 3vw, 46px) clamp(34px, 4vw, 58px) 34px;
  text-decoration: none;
  color: #1f1d1a;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 243, 234, 0.98));
  border: 1px solid rgba(173, 153, 118, 0.72);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 20px 42px rgba(34, 30, 22, 0.09);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.program_card_refined::before,
.program_card_refined::after {
  content: none;
}

.program_card_refined:hover,
.program_card_refined:focus-visible,
.program_card_refined:focus-within {
  transform: translateY(-5px);
  border-color: rgba(129, 111, 79, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 26px 46px rgba(34, 30, 22, 0.14);
}

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

.program_card_refined h3 {
  margin: 0;
  width: 100%;
  max-width: 21ch;
  color: #1f1d1a;
  font-size: clamp(1.85rem, 2.1vw, 2.45rem);
  line-height: 1.06;
  text-align: center;
}

.program_card_refined_tag {
  display: table;
  margin: 12px auto 0;
  padding: 5px 12px 4px;
  color: #6b5638;
  border: 1px solid rgba(123, 96, 55, 0.24);
  border-radius: 999px;
  background: rgba(235, 222, 196, 0.46);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program_card_refined p {
  width: 100%;
  max-width: 34ch;
  margin: 18px 0 0;
  color: #575046;
  font-size: 1.02rem;
  line-height: 1.52;
  text-align: center;
}

.program_card_refined_cta,
.program_card_refined_links a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f5879;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.program_card_refined_cta {
  margin-top: 22px;
}

.program_card_refined:hover .program_card_refined_cta,
.program_card_refined:focus-visible .program_card_refined_cta {
  color: #1f3552;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.program_card_refined_large {
  min-height: 430px;
}

.program_card_refined_large h3 {
  max-width: 22ch;
}

.program_card_refined_multi {
  padding-bottom: 28px;
}

.program_card_refined_links {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 22px;
  justify-items: center;
}

.program_card_refined_links a {
  width: 100%;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3f5879;
}

.program_card_refined:hover .program_card_refined_links a,
.program_card_refined:focus-within .program_card_refined_links a {
  color: #1f3552;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.programs_glance_reference {
  width: min(100% - 32px, 1240px);
  padding-top: clamp(76px, 8vw, 102px);
  padding-bottom: clamp(84px, 8vw, 110px);
}

.programs_glance_reference_header {
  margin-bottom: 28px;
}

#programs_v2 h2 {
  margin: 0;
  color: #201c17;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
}

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

.programs_glance_reference_grid_top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

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

.program_card_reference {
  min-width: 0;
  min-height: 358px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 26px 22px;
  text-decoration: none;
  color: #1f1b17;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(202, 211, 222, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.program_card_reference:hover,
.program_card_reference:focus-visible,
.program_card_reference:focus-within {
  border-color: rgba(158, 176, 197, 0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 10px 24px rgba(32, 48, 66, 0.05);
}

.program_card_reference_wide {
  min-height: 280px;
  padding-bottom: 20px;
}

.program_card_reference h3 {
  margin: 0;
  max-width: 14ch;
  color: #211c17;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 2.5vw, 2.82rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.program_card_reference_wide h3 {
  max-width: 16ch;
  font-size: clamp(2.1rem, 2.8vw, 3rem);
}

.program_card_reference p {
  max-width: 31ch;
  margin: 18px 0 0;
  color: #4e4a45;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.5;
}

.program_card_reference_cta,
.program_card_reference_links a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(210, 219, 228, 0.98);
  background: rgba(251, 251, 249, 0.7);
  color: #314d70;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.program_card_reference:hover .program_card_reference_cta,
.program_card_reference:focus-visible .program_card_reference_cta,
.program_card_reference_links a:hover,
.program_card_reference_links a:focus-visible {
  border-color: rgba(165, 181, 199, 0.98);
  background: rgba(255, 255, 255, 0.9);
  color: #213b5a;
}

.program_card_reference_multi {
  min-height: 358px;
}

.program_card_reference_multi p {
  max-width: 28ch;
}

.program_card_reference_links {
  width: 100%;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.program_card_reference_links a {
  width: 100%;
  justify-content: flex-start;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
  font-weight: 500;
}

#studium_generale,
.studium_generale_clone {
  --program-accent: #dcb672;
  --program-image: url("assets/photos/iti-14.jpg");
  --program-focal-point: center center;
}

#undergraduate,
.undergraduate_clone {
  --program-accent: #a8bfd6;
  --program-image: url("assets/photos/iti-22.jpg");
  --program-focal-point: center center;
}

#sacred_theology_master,
.sacred_theology_master_clone {
  --program-accent: #d69074;
  --program-image: url("assets/photos/iti-24.jpg");
  --program-focal-point: center center;
}

#marriage_family,
.marriage_family_clone {
  --program-accent: #bba36c;
  --program-image: url("assets/ikone1.jpg");
  --program-focal-point: center 36%;
}

#advanced_theology,
.advanced_theology_clone {
  --program-accent: #bc8d67;
  --program-image: url("assets/ikone10.jpg");
  --program-focal-point: center center;
}

.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.12);
  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.09);
  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: 400;
  font-family: "EB Garamond", "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;
}

.news_section_featured .news_events_split {
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.news_section_featured .news_events_col {
  display: grid;
  align-content: start;
}

.news_events_featured {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.2vw, 28px);
  margin: 0 0 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 148, 172, 0.14);
  box-shadow: 0 12px 28px rgba(26, 34, 44, 0.05);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.news_events_featured .news_events_date {
  margin-bottom: 2px;
}

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

.news_events_featured .news_events_subtitle {
  max-width: 36ch;
  font-size: 0.92rem;
}

.news_events_col_events .news_events_featured_event {
  gap: 8px;
  padding: clamp(20px, 2.2vw, 28px);
}

.news_section_featured .news_events_item_box {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 0;
  align-items: center;
  padding: 22px 32px 22px 32px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(122, 148, 172, 0.12);
  box-shadow: 0 8px 18px rgba(26, 34, 44, 0.04);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.news_section_featured .news_events_item_box:hover,
.news_section_featured .news_events_item_box:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 74, 62, 0.2);
  box-shadow: 0 12px 24px rgba(26, 34, 44, 0.07);
}

.news_section_featured .news_events_item_box .news_events_date {
  margin: 0;
  align-self: center;
  font-size: 0.7rem;
  line-height: 1;
}

.news_section_featured .news_events_item_box .news_events_title {
  font-size: clamp(0.94rem, 1.06vw, 1.02rem);
  line-height: 1.22;
}

.news_section_featured .news_events_item_box .news_events_subtitle {
  display: none;
}

.news_events_featured:hover,
.news_events_featured:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 74, 62, 0.24);
  box-shadow: 0 16px 32px rgba(26, 34, 44, 0.08);
}

.news_events_list_compact .news_events_item {
  padding: 0;
}

.news_events_list_compact .news_events_item.news_events_item_box {
  padding: clamp(12px, 1.35vw, 18px) clamp(20px, 2.2vw, 28px);
}

.news_events_list_compact.news_events_list {
  gap: 14px;
}

.news_events_col_events .news_events_featured_event .news_events_subtitle {
  max-width: none;
}

.news_events_col .cluster_actions .button_line {
  color: #2d445a;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(45, 68, 90, 0.22);
}

.news_events_col .cluster_actions .button_line:hover,
.news_events_col .cluster_actions .button_line:focus-visible {
  color: #20384d;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 68, 90, 0.36);
}

.news_section_color_study::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(191, 48, 43, 0.12), rgba(191, 48, 43, 0) 28%),
    radial-gradient(circle at 78% 18%, rgba(29, 61, 103, 0.12), rgba(29, 61, 103, 0) 30%),
    linear-gradient(180deg, #f6edd8 0%, #f3e6c9 52%, #f7efd9 100%);
  border-color: rgba(121, 91, 43, 0.18);
}

.news_section_color_study .news_events_split::after {
  background: rgba(121, 91, 43, 0.18);
}

.news_section_color_study .news_events_featured,
.news_section_color_study .news_events_item_box {
  background: rgba(255, 252, 244, 0.72);
  border-color: rgba(121, 91, 43, 0.14);
  box-shadow: 0 12px 26px rgba(85, 63, 30, 0.08);
}

.news_section_color_study .news_events_col_news h2,
.news_section_color_study .news_events_col_news .news_events_date,
.news_section_color_study .news_events_col_news .news_events_title {
  color: #a82f2b;
}

.news_section_color_study .news_events_col_news .news_events_subtitle {
  color: #715a4f;
}

.news_section_color_study .news_events_col_events h2,
.news_section_color_study .news_events_col_events .news_events_date,
.news_section_color_study .news_events_col_events .news_events_title {
  color: #1d3d67;
}

.news_section_color_study .news_events_col_events .news_events_subtitle {
  color: #526780;
}

.news_section_color_study .news_events_col_news .news_events_featured:hover,
.news_section_color_study .news_events_col_news .news_events_featured:focus-visible,
.news_section_color_study .news_events_col_news .news_events_item_box:hover,
.news_section_color_study .news_events_col_news .news_events_item_box:focus-visible {
  border-color: rgba(168, 47, 43, 0.26);
  box-shadow: 0 16px 30px rgba(168, 47, 43, 0.1);
}

.news_section_color_study .news_events_col_events .news_events_featured:hover,
.news_section_color_study .news_events_col_events .news_events_featured:focus-visible,
.news_section_color_study .news_events_col_events .news_events_item_box:hover,
.news_section_color_study .news_events_col_events .news_events_item_box:focus-visible {
  border-color: rgba(29, 61, 103, 0.26);
  box-shadow: 0 16px 30px rgba(29, 61, 103, 0.1);
}

.news_section_color_study .news_events_col_news .cluster_actions .button_line {
  color: #9b2b27;
  background: rgba(168, 47, 43, 0.08);
  border-color: rgba(168, 47, 43, 0.28);
}

.news_section_color_study .news_events_col_news .cluster_actions .button_line:hover,
.news_section_color_study .news_events_col_news .cluster_actions .button_line:focus-visible {
  color: #7c211e;
  background: rgba(168, 47, 43, 0.14);
  border-color: rgba(168, 47, 43, 0.38);
}

.news_section_color_study .news_events_col_events .cluster_actions .button_line {
  color: #1d3d67;
  background: rgba(29, 61, 103, 0.08);
  border-color: rgba(29, 61, 103, 0.28);
}

.news_section_color_study .news_events_col_events .cluster_actions .button_line:hover,
.news_section_color_study .news_events_col_events .cluster_actions .button_line:focus-visible {
  color: #142c4b;
  background: rgba(29, 61, 103, 0.14);
  border-color: rgba(29, 61, 103, 0.4);
}

.news_section_compact .news_events_split {
  gap: clamp(18px, 2.5vw, 30px);
}

.news_section_compact .news_events_col {
  display: grid;
  align-content: start;
}

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

.news_events_tile {
  display: grid;
  gap: 4px;
  padding: 14px 16px 15px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(122, 148, 172, 0.12);
  box-shadow: 0 8px 18px rgba(26, 34, 44, 0.04);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.news_events_tile .news_events_date {
  font-size: 0.7rem;
}

.news_events_tile .news_events_title {
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.3;
}

.news_events_tile .news_events_subtitle {
  font-size: 0.82rem;
  line-height: 1.38;
}

.news_events_tile:not(.news_events_tile_event) .news_events_subtitle {
  display: none;
}

.news_events_tile:hover,
.news_events_tile:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 74, 62, 0.2);
  box-shadow: 0 12px 24px rgba(26, 34, 44, 0.07);
}

.audience_paths_section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(66px, 7vw, 96px);
}

.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(246, 240, 227, 0.98) 100%);
  border-top: 0.75px solid rgba(122, 148, 172, 0.08);
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.1);
  transform: translateX(-50%);
  z-index: -1;
}

.audience_invitation_card {
  position: relative;
  margin: 0 auto clamp(30px, 4vw, 48px);
  width: min(100%, 1040px);
  min-height: clamp(440px, 52vw, 620px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 22, 17, 0.5), rgba(19, 22, 17, 0.1) 45%, rgba(19, 22, 17, 0.56)),
    linear-gradient(180deg, rgba(22, 24, 20, 0.18), rgba(22, 24, 20, 0.42)),
    url("assets/ikone43.jpg") center / cover no-repeat;
  box-shadow: 0 26px 58px rgba(32, 30, 24, 0.18);
}

.audience_invitation_card::before,
.audience_invitation_card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.audience_invitation_card::before {
  left: clamp(18px, 3.2vw, 42px);
  top: clamp(18px, 3.2vw, 42px);
  width: clamp(84px, 13vw, 160px);
  height: clamp(84px, 13vw, 160px);
  border-top: 1px solid rgba(236, 229, 214, 0.5);
  border-left: 1px solid rgba(236, 229, 214, 0.5);
}

.audience_invitation_card::after {
  right: clamp(18px, 3.2vw, 42px);
  bottom: clamp(18px, 3.2vw, 42px);
  width: clamp(84px, 13vw, 160px);
  height: clamp(84px, 13vw, 160px);
  border-right: 1px solid rgba(236, 229, 214, 0.5);
  border-bottom: 1px solid rgba(236, 229, 214, 0.5);
}

.audience_invitation_panel {
  position: relative;
  width: min(100%, 700px);
  min-height: clamp(330px, 39vw, 470px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(24px, 6vw, 72px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.97), rgba(240, 235, 224, 0.97));
  border: 1px solid rgba(43, 43, 39, 0.62);
  border-radius: 0 clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 44px rgba(16, 15, 12, 0.16);
}

.audience_invitation_panel::before,
.audience_invitation_panel::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(43, 43, 39, 0.74);
  border-radius: 0 calc(clamp(56px, 7vw, 96px) - 12px) 0 calc(clamp(56px, 7vw, 96px) - 12px);
  pointer-events: none;
}

.audience_invitation_panel::after {
  inset: 19px;
  opacity: 0.6;
}

.audience_invitation_mark {
  width: clamp(42px, 6vw, 64px);
  height: auto;
  margin-bottom: clamp(18px, 3vw, 28px);
  opacity: 0.62;
  filter: grayscale(1);
}

.audience_paths_kicker {
  margin: 0 0 clamp(12px, 2vw, 18px);
  color: #6d5a3f;
  font-size: clamp(0.64rem, 1.3vw, 0.78rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.audience_invitation_panel h2 {
  margin: 0;
  max-width: 13ch;
  color: #25231f;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.1vw, 4.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.audience_paths_lead {
  margin: clamp(20px, 3.2vw, 30px) 0 0;
  max-width: 35ch;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.24rem, 2.05vw, 1.68rem);
  line-height: 1.24;
  color: #302b25;
}

.audience_invitation_note {
  margin: clamp(22px, 3vw, 30px) 0 0;
  color: #5d5143;
  font-size: clamp(0.66rem, 1.2vw, 0.8rem);
  letter-spacing: 0.28em;
  line-height: 1.7;
  text-transform: uppercase;
}

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

.audience_path_card {
  --audience-image: none;
  min-height: 320px;
  padding: 24px 24px 22px;
  display: grid;
  align-content: end;
  gap: 12px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(210, 194, 164, 0.24);
  background:
    linear-gradient(180deg, rgba(9, 13, 17, 0.12) 0%, rgba(9, 13, 17, 0.52) 52%, rgba(7, 10, 14, 0.86) 100%);
  box-shadow: 0 18px 36px rgba(26, 38, 52, 0.08);
  text-decoration: none;
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.audience_path_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--audience-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 480ms ease;
  z-index: -3;
}

.audience_path_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 18, 0.06) 0%, rgba(10, 14, 18, 0.32) 38%, rgba(10, 14, 18, 0.84) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.62) 0%, rgba(8, 10, 14, 0.18) 45%, rgba(8, 10, 14, 0.68) 100%);
  z-index: -2;
}

.audience_path_card:hover,
.audience_path_card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(233, 214, 181, 0.46);
  box-shadow: 0 24px 42px rgba(26, 38, 52, 0.14);
}

.audience_path_card:hover::before,
.audience_path_card:focus-visible::before {
  transform: scale(1.06);
}

.audience_path_meta {
  margin: 0 0 auto;
  color: rgba(249, 242, 228, 0.78);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience_path_portal h3,
.audience_path_portal .audience_path_body,
.audience_path_cta {
  position: relative;
}

.audience_path_card h3 {
  margin-bottom: 0;
  color: #fffdf8;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  max-width: 12ch;
}

.audience_path_body {
  max-width: 28ch;
  color: rgba(244, 237, 226, 0.82);
  font-size: 0.96rem;
  line-height: 1.58;
}

.audience_path_cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff5df;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience_path_cta::after {
  content: "→";
  font-size: 0.88rem;
}

#audience_path_prospective,
.audience_path_prospective_clone {
  --audience-image: url("assets/photos/iti-14.jpg");
}

#audience_path_students,
.audience_path_students_clone {
  --audience-image: url("assets/photos/iti-24.jpg");
}

#audience_path_supporters,
.audience_path_supporters_clone {
  --audience-image: url("assets/ikone10.jpg");
}

#audience_path_alumni,
.audience_path_alumni_clone {
  --audience-image: url("assets/photos/iti-22.jpg");
}

.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: "EB 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: 84px;
  padding-bottom: 76px;
}

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

.formation_intro_simple::before,
.formation_intro_simple::after {
  content: "";
  display: block;
  width: min(100%, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(123, 148, 172, 0.16) 18%, rgba(123, 148, 172, 0.16) 82%, transparent 100%);
}

.formation_intro_kicker {
  margin: 22px 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7b6647;
}

.formation_intro_heading {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.formation_intro_text {
  max-width: 40ch;
  margin: 20px 0 0;
  font-size: clamp(1.14rem, 1.8vw, 1.34rem);
  line-height: 1.68;
  color: #4b4942;
}

.formation_intro_note {
  max-width: 54ch;
  margin: 18px 0 0;
  color: #746d63;
  font-size: 0.96rem;
  line-height: 1.62;
}

.formation_steps {
  display: grid;
  gap: 22px;
}

.formation_steps_section {
  padding-top: 0;
  padding-bottom: 12px;
}

.formation_chapter {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  border: var(--hairline-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 232, 0.88));
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22, 28, 36, 0.05);
}

.formation_chapter_reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.formation_chapter_reverse .formation_chapter_media {
  order: 2;
  border-left: var(--hairline);
  border-right: 0;
}

.formation_chapter_reverse .formation_chapter_copy {
  order: 1;
}

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

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

.formation_chapter_copy {
  padding: 34px 36px 36px;
  display: grid;
  align-content: start;
}

.formation_chapter_number {
  margin: 0 0 10px;
  color: rgba(123, 74, 66, 0.76);
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 0.88;
}

.formation_chapter_copy h3 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 0.98;
}

.formation_chapter_lead {
  max-width: 42ch;
  margin: 18px 0 0;
  color: #58524a;
  font-size: 1.02rem;
  line-height: 1.72;
}

.formation_chapter_points {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.formation_chapter_point {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding-top: 16px;
  border-top: 0.75px solid rgba(122, 148, 172, 0.14);
}

.formation_chapter_point_number {
  margin: 0;
  color: #8f7352;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.formation_chapter_point h4 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.12;
  color: #23384b;
}

.formation_chapter_point p {
  margin: 0;
  color: #5f5a53;
  font-size: 0.95rem;
  line-height: 1.62;
}

.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,
.visit_section_clone.section {
  width: min(100% - 32px, 1360px);
}

#visit_locked.section {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background:
    linear-gradient(rgba(19, 15, 11, 0.18), rgba(19, 15, 11, 0.28)),
    url("assets/ikone.jpg") center center / cover no-repeat;
}

.visit_section_clone_frame.section {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background:
    linear-gradient(rgba(12, 10, 8, 0.48), rgba(12, 10, 8, 0.54)),
    url("assets/ikone.jpg") center center / cover no-repeat;
}

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

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

.visit_invitation_card_frame {
  width: min(100%, 1380px);
  min-height: min(92svh, 980px);
  padding: clamp(72px, 8vw, 110px) clamp(54px, 6vw, 92px);
}

.visit_invitation_card_compact {
  width: 100%;
  min-height: 0;
  padding: clamp(28px, 3.2vw, 38px) clamp(24px, 3vw, 34px) clamp(42px, 4vw, 56px);
  border-radius: 0 clamp(40px, 4vw, 60px) 0 clamp(40px, 4vw, 60px);
}

.visit_invitation_card_compact::before {
  inset: 12px;
  border-radius: 0 clamp(32px, 3.6vw, 48px) 0 clamp(32px, 3.6vw, 48px);
  box-shadow: none;
}

.visit_invitation_card_compact::after {
  inset: 18px;
  border-radius: 0 clamp(26px, 3vw, 40px) 0 clamp(26px, 3vw, 40px);
}

.visit_invitation_card_compact h2 {
  white-space: normal;
  max-width: 11ch;
  font-size: clamp(1.82rem, 2.4vw, 2.65rem);
  line-height: 0.98;
}

.visit_invitation_card_compact .visit_invitation_lead {
  max-width: 34ch;
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.55;
}

.visit_invitation_card_compact .visit_invitation_caption {
  margin-top: 26px;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

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

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

.visit_invitation_card_frame::before {
  inset: clamp(34px, 4vw, 56px);
  background: transparent;
  border: 2.5px solid rgba(255, 247, 238, 0.92);
  border-radius: clamp(22px, 2vw, 30px);
  box-shadow: none;
}

.visit_invitation_card_frame::after {
  inset: clamp(52px, 5.7vw, 82px);
  border: 1.5px solid rgba(255, 247, 238, 0.8);
  border-radius: clamp(18px, 1.8vw, 26px);
}

.visit_invitation_card_frame .visit_invitation_mark {
  opacity: 0.7;
  filter: grayscale(1) brightness(1.95);
}

.visit_invitation_card_frame .visit_invitation_kicker,
.visit_invitation_card_frame .visit_invitation_caption {
  color: rgba(255, 245, 233, 0.88);
}

.visit_invitation_card_frame h2,
.visit_invitation_card_frame .visit_invitation_lead {
  color: #fffdf8;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.visit_invitation_card_frame h2 {
  text-shadow:
    0 4px 22px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(0, 0, 0, 0.16);
}

.visit_invitation_card_frame .button {
  color: #fffdf8;
  background: rgba(23, 41, 60, 0.78);
  border-color: rgba(255, 248, 238, 0.22);
  box-shadow: none;
}

.visit_invitation_card_frame .button_line {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 248, 238, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 248, 238, 0.08) inset,
    0 10px 24px rgba(8, 12, 18, 0.14);
}

.visit_invitation_card_frame .button_line:hover,
.visit_invitation_card_frame .button_line:focus-visible {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 248, 238, 1);
}

.visit_frame_svg {
  position: absolute;
  z-index: 0;
  inset: clamp(8px, 1.3vw, 18px);
  width: calc(100% - clamp(16px, 2.6vw, 36px));
  height: calc(100% - clamp(16px, 2.6vw, 36px));
  pointer-events: none;
  overflow: visible;
  filter:
    drop-shadow(0 0 18px rgba(255, 248, 238, 0.08))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.visit_frame_svg_outer,
.visit_frame_svg_inner,
.visit_frame_svg_arc,
.visit_frame_svg_dot {
  fill: none;
  stroke: rgba(255, 247, 238, 0.9);
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit_frame_svg_outer {
  stroke-width: 1.6;
}

.visit_frame_svg_inner {
  stroke-width: 1.15;
  opacity: 0.82;
}

.visit_frame_svg_arc {
  stroke-width: 1.85;
  opacity: 0.98;
}

.visit_frame_svg_dot {
  fill: rgba(255, 247, 238, 0.94);
  stroke-width: 0;
  opacity: 0.92;
}

.visit_invitation_card_frame::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 0%, rgba(255, 249, 238, 0.12), transparent 52%);
}

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

.visit_invitation_kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #8a6940;
  font-size: clamp(0.8rem, 1vw, 0.98rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.visit_invitation_card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 0.92;
  font-weight: 400;
  color: #201d19;
  white-space: nowrap;
}

.visit_invitation_lead {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin: 18px 0 0;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.5;
  color: #2f2a25;
}

.visit_invitation_caption {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: #6d5640;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.visit_invitation_card .cluster_actions {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  justify-content: center;
}

.visit_invitation_card .button_line {
  color: #2d445a;
  background: transparent;
  border-color: rgba(45, 68, 90, 0.34);
  box-shadow: none;
}

.visit_invitation_card .button_line:hover,
.visit_invitation_card .button_line:focus-visible {
  color: #20384d;
  background: rgba(45, 68, 90, 0.06);
  border-color: rgba(45, 68, 90, 0.52);
}

.visit_variants_section {
  width: min(100% - 32px, 1360px);
  margin-inline: auto;
  padding-top: 28px;
}

.visit_variants_header {
  display: grid;
  gap: 12px;
  max-width: 58ch;
  margin-bottom: 28px;
}

.visit_variants_kicker {
  margin: 0;
  color: #8a6940;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.visit_variants_header h2 {
  margin: 0;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.visit_variants_intro {
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.visit_variants_stack {
  display: grid;
  gap: 26px;
}

.visit_variants_label_row {
  display: grid;
  gap: 8px;
  max-width: 56ch;
}

.visit_variants_label_row h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
}

.visit_variants_label_row p {
  max-width: 52ch;
  font-size: 0.96rem;
}

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

.visit_variants_grid_two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.visit_variants_split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
}

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

.visit_variant_panel {
  min-width: 0;
}

.visit_variant_copy {
  min-width: 0;
  max-width: 42rem;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  text-align: left;
  padding: 22px 24px 22px 0;
}

.visit_variant_copy h3 {
  margin: 0;
  max-width: 12ch;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 0.98;
  color: #1f1b17;
}

.visit_variant_copy p {
  max-width: 42ch;
  margin: 0;
  color: #433930;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.visit_variant_copy .button {
  margin-top: 4px;
}

.visit_variant_image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 148, 172, 0.14);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

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

.visit_variant_image_framed {
  position: relative;
  min-height: 540px;
  padding: 42px;
  box-sizing: border-box;
  display: flex;
  border: 0;
  background: transparent;
  border-radius: 0 72px 0 72px;
}

.visit_variant_image_framed::before,
.visit_variant_image_framed::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visit_variant_image_framed::before {
  inset: 10px;
  border: 1.5px solid rgba(95, 88, 80, 0.58);
  border-radius: 0 62px 0 62px;
}

.visit_variant_image_framed::after {
  inset: 30px;
  border: 1px solid rgba(92, 84, 74, 0.54);
  border-radius: 0 48px 0 48px;
}

.visit_variant_image_framed img {
  min-height: calc(540px - 84px);
  box-sizing: border-box;
  padding: 0;
  border-radius: 0 48px 0 48px;
}

.visit_variants_section .visit_variant_panel .visit_invitation_card {
  margin: 0;
}

.visit_invitation_card_compact_pair {
  min-height: 460px;
  padding: 28px 54px 32px;
  justify-items: start;
  align-content: center;
  text-align: left;
  border-radius: 0 70px 0 70px;
}

.visit_invitation_card_compact_pair::before {
  inset: 10px;
  border-radius: 0 62px 0 62px;
  background: rgba(252, 248, 240, 0.96);
  box-shadow: none;
}

.visit_invitation_card_compact_pair::after {
  inset: 24px;
  border-radius: 0 50px 0 50px;
}

.visit_invitation_card_compact_pair .visit_invitation_mark {
  margin-bottom: 14px;
  justify-self: start;
}

.visit_invitation_card_compact_pair .visit_invitation_kicker {
  margin-bottom: 18px;
  text-align: left;
  justify-self: start;
}

.visit_invitation_card_compact_pair h2 {
  max-width: 12ch;
  font-size: clamp(1.78rem, 2.05vw, 2.22rem);
  text-align: left;
  justify-self: start;
}

.visit_invitation_card_compact_pair .visit_invitation_lead {
  max-width: 32ch;
  margin-top: 14px;
  text-align: left;
  justify-self: start;
}

.visit_invitation_card_compact_pair .visit_invitation_caption {
  display: none;
}

.visit_invitation_card_compact_pair .button_small {
  margin-top: 24px;
  margin-left: 0;
  padding: 8px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  justify-self: start;
}

.visit_variants_grid_two .visit_variant_panel {
  filter: none;
}

.visit_variants_grid_three {
  align-items: start;
}

.visit_variants_grid_three .visit_variant_panel {
  display: block;
}

.visit_invitation_card_triplet {
  min-height: 320px;
  width: 100%;
  padding: 36px 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 0 42px 0 42px;
  gap: 0;
}

.visit_invitation_card_triplet::before {
  inset: 9px;
  border-radius: 0 30px 0 30px;
  box-shadow: none;
}

.visit_invitation_card_triplet::after {
  inset: 18px;
  border-radius: 0 22px 0 22px;
}

.visit_invitation_card_triplet .visit_invitation_kicker {
  display: block;
  margin: 0 0 10px;
  text-align: left;
  color: #9a7645;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.visit_invitation_card_triplet h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(1.9rem, 2.35vw, 2.5rem);
  line-height: 0.96;
  text-align: left;
  letter-spacing: 0;
  color: #211c17;
}

.visit_invitation_card_triplet .visit_invitation_lead {
  width: 100%;
  max-width: none;
  margin-top: 16px;
  color: #4d4438;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.visit_invitation_card_triplet .visit_invitation_mark,
.visit_invitation_card_triplet .visit_invitation_caption {
  display: none;
}

.visit_invitation_card_triplet .button_small {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-left: 0;
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  align-self: flex-start;
  color: #fffaf3;
  background: #2d445a;
  border: 1px solid rgba(45, 68, 90, 0.86);
  box-shadow: 0 10px 20px rgba(34, 46, 58, 0.16);
}

.visit_invitation_card_triplet .button_small:hover,
.visit_invitation_card_triplet .button_small:focus-visible {
  color: #fffaf3;
  background: #21384d;
  border-color: rgba(33, 56, 77, 0.92);
  box-shadow: 0 12px 24px rgba(34, 46, 58, 0.22);
}

.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: "EB 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: #ffffff;
  padding: clamp(42px, 6vw, 64px) 24px 26px;
  position: relative;
  overflow: visible;
}

.footer_lower {
  background: #ffffff;
  padding: 24px 24px 26px;
}

.footer_inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 0.75px solid rgba(122, 148, 172, 0.1);
  overflow: visible;
}

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

.footer_title {
  margin: 0;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.98;
  color: #1b1a18;
  letter-spacing: 0;
}

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

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

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

.footer_meta {
  margin: 0;
  color: #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(6px, 0.8vw, 12px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, 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_lead {
  margin: 10px 0 0;
  max-width: 28ch;
  color: #5d5448;
  font-size: 0.94rem;
  line-height: 1.58;
}

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

.footer_nav_col_intro ul {
  margin-top: 16px;
}

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

  .formation_chapter,
  .formation_chapter_reverse {
    grid-template-columns: 1fr;
  }

  .formation_chapter_media,
  .formation_chapter_reverse .formation_chapter_media {
    order: initial;
    border-right: 0;
    border-left: 0;
    border-bottom: var(--hairline);
  }

  .formation_chapter_media img {
    min-height: 320px;
  }

  .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(2, 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: "EB 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: "EB Garamond", "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: "EB 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);
  }

  .hero_variant_slideshow {
    min-height: auto;
  }

  .hero_slideshow_stage {
    min-height: 100svh;
  }

  .hero_slideshow_caption {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 112px;
    max-width: none;
    width: auto;
    padding: 0;
    gap: 10px;
    transform: none;
    text-align: left;
    justify-items: start;
  }

  .hero_slideshow_kicker {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
  }

  .hero_slideshow_caption h2 {
    max-width: 8ch;
    margin: 0;
    font-size: clamp(1.2rem, 9vw, 2rem);
    line-height: 0.94;
  }

  .hero_slideshow_controls {
    left: 20px;
    right: 20px;
    bottom: 26px;
    transform: none;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .hero_slideshow_dots {
    flex: 1 1 auto;
    justify-content: center;
    gap: 8px;
    min-width: 0;
  }

  .hero_slideshow_button {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .hero_slideshow_overlay {
    gap: 16px;
    padding: 18px 14px 20px;
  }

  .hero_slideshow_copy h2 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero_slideshow_button {
    width: 40px;
    height: 40px;
  }

  .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_intro_note {
    max-width: 30ch;
    font-size: 0.92rem;
  }

  .formation_chapter_copy {
    padding: 26px 24px 28px;
  }

  .formation_chapter_copy h3 {
    max-width: 11ch;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .formation_chapter_point {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .formation_chapter_media img {
    min-height: 220px;
  }

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

  .visit_variants_section {
    width: min(100% - 24px, 1360px);
    padding-top: 18px;
  }

  .visit_variants_header {
    margin-bottom: 20px;
  }

  .visit_variants_grid_two,
  .visit_variants_split,
  .visit_variants_grid_three {
    grid-template-columns: 1fr;
  }

  .visit_variants_grid {
    gap: 12px;
  }

  .visit_invitation_card_frame {
    min-height: 620px;
    padding: 58px 22px;
  }

  .visit_invitation_card_frame::before {
    inset: 18px;
    border-radius: 18px;
  }

  .visit_invitation_card_frame::after {
    inset: 28px;
    border-radius: 14px;
  }

  .visit_frame_svg {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .visit_invitation_card_compact {
    min-height: 0;
    padding: 22px 18px 34px;
    border-radius: 0 42px 0 42px;
  }

  .visit_invitation_card_compact::before {
    inset: 10px;
    border-radius: 0 34px 0 34px;
  }

  .visit_invitation_card_compact::after {
    inset: 16px;
    border-radius: 0 28px 0 28px;
  }

  .visit_invitation_card_compact h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .visit_invitation_card_compact .visit_invitation_caption {
    margin-top: 22px;
    font-size: 0.68rem;
  }

  .visit_invitation_card_compact_pair {
    min-height: 0;
    padding: 24px 26px 26px;
    border-radius: 0 44px 0 44px;
  }

  .visit_invitation_card_compact_pair::before {
    inset: 8px;
    border-radius: 0 38px 0 38px;
  }

  .visit_invitation_card_compact_pair::after {
    inset: 18px;
    border-radius: 0 28px 0 28px;
  }

  .visit_invitation_card_compact_pair h2 {
    font-size: clamp(1.62rem, 9vw, 2.2rem);
  }

  .visit_invitation_card_compact_pair .visit_invitation_kicker,
  .visit_invitation_card_compact_pair .visit_invitation_lead,
  .visit_invitation_card_compact_pair h2 {
    text-align: left;
  }

  .visit_invitation_card_triplet {
    min-height: 0;
    padding: 28px 24px 24px;
    border-radius: 0 28px 0 28px;
  }

  .visit_invitation_card_triplet::before {
    inset: 8px;
    border-radius: 0 22px 0 22px;
  }

  .visit_invitation_card_triplet::after {
    inset: 18px;
    border-radius: 0 16px 0 16px;
  }

  .visit_invitation_card_triplet h2 {
    max-width: none;
    font-size: clamp(1.5rem, 8.2vw, 2rem);
  }

  .visit_invitation_card_triplet .visit_invitation_lead {
    max-width: none;
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .visit_invitation_card_triplet .visit_invitation_kicker {
    margin-bottom: 8px;
  }

  .visit_invitation_card_triplet .button_small {
    min-height: 40px;
    padding: 0 14px;
  }

  .visit_variant_image {
    min-height: 240px;
  }

  .visit_variant_copy {
    max-width: none;
    padding: 0;
    gap: 14px;
  }

  .visit_variant_copy h3 {
    max-width: 14ch;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .visit_variant_copy p {
    max-width: 36ch;
    font-size: 0.98rem;
  }

  .visit_variant_image_framed {
    min-height: 320px;
    padding: 30px;
    border-radius: 0 44px 0 44px;
  }

  .visit_variant_image_framed::before {
    inset: 8px;
    border-radius: 0 36px 0 36px;
  }

  .visit_variant_image_framed::after {
    inset: 20px;
    border-radius: 0 28px 0 28px;
  }

  .visit_variant_image_framed img {
    min-height: calc(320px - 60px);
    padding: 0;
    border-radius: 0 28px 0 28px;
  }

  .audience_invitation_card {
    min-height: 520px;
    padding: 18px;
  }

  .audience_invitation_panel {
    min-height: 430px;
    padding: 52px 24px 46px;
    border-radius: 0 56px 0 56px;
  }

  .audience_invitation_panel::before {
    inset: 10px;
    border-radius: 0 46px 0 46px;
  }

  .audience_invitation_panel::after {
    inset: 17px;
    border-radius: 0 39px 0 39px;
  }

  .audience_invitation_panel h2 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .audience_paths_lead {
    max-width: 25ch;
    font-size: clamp(1.12rem, 5.4vw, 1.4rem);
  }

  .audience_invitation_note {
    max-width: 22ch;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

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

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

  .audience_path_card h3 {
    font-size: clamp(1.34rem, 6vw, 1.7rem);
  }

  .audience_path_body {
    font-size: 0.92rem;
  }

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

  .programs_working_refined {
    width: min(100% - 20px, 1440px);
  }

  .programs_working_grid_top,
  .programs_working_grid_bottom {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .program_card_refined {
    padding: 30px 20px 22px;
  }

  .program_card_refined_seal {
    width: 108px;
    height: 108px;
    margin-bottom: 14px;
  }

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

  .program_card_refined p {
    max-width: 32ch;
    font-size: 0.92rem;
  }

  .program_card_refined_cta,
  .program_card_refined_links a {
    width: auto;
  }

  .programs_glance_reference {
    width: min(100% - 20px, 1240px);
  }

  .programs_glance_reference_grid_top,
  .programs_glance_reference_grid_bottom {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .program_card_reference,
  .program_card_reference_wide,
  .program_card_reference_multi {
    min-height: 0;
    padding: 22px 18px 18px;
  }

  .program_card_reference h3,
  .program_card_reference_wide h3 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.2vw, 2.55rem);
  }

  .program_card_reference p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .program_card_reference_cta,
  .program_card_reference_links a {
    min-height: 46px;
    padding: 0 14px;
  }

  .program_card_reference_links a {
    font-size: 0.82rem;
  }

  .programs_invitation_frame {
    padding: 18px 10px;
  }

  .programs_invitation_shape {
    left: -18px;
    right: -18px;
    width: calc(100% + 36px);
  }

  .programs_invitation_panel {
    padding: 126px 20px 58px;
  }

  .programs_invitation_subtitle {
    max-width: 20ch;
    font-size: 1.12rem;
    line-height: 1.12;
  }

#programs h2,
.programs_section_clone h2 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
    line-height: 0.94;
  }

  #programs .programs_working_header h2 {
    font-size: clamp(1.9rem, 10.5vw, 3rem);
  }

  #programs .program_card,
  .programs_section_clone .program_card {
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .program_brand {
    gap: 10px;
  }

  .program_mark {
    width: 48px;
    height: 48px;
    font-size: 0.78rem;
  }

  .program_meta {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .program_card h3 {
    font-size: clamp(1.58rem, 7vw, 2.08rem);
    max-width: 14ch;
  }

  .program_card p:not(.program_type) {
    font-size: 0.92rem;
    max-width: 34ch;
  }

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

  .footer_statement,
  .footer_nav_lead {
    max-width: none;
  }

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

  .news_events_featured {
    padding: 16px 16px 18px;
  }

  .news_events_featured .news_events_title {
    max-width: none;
    font-size: 1.22rem;
  }

  .news_events_featured .news_events_subtitle {
    max-width: none;
    font-size: 0.84rem;
  }

  .news_events_col_events .news_events_featured_event,
  .news_events_col_events .news_events_item_event {
    column-gap: 10px;
  }

  .news_events_col_events .news_events_featured_event {
    padding: 14px 16px 16px;
  }

  .news_section_featured .news_events_item_box {
    padding: 10px 16px;
    column-gap: 10px;
  }

  .news_events_tile {
    padding: 12px 14px 13px;
  }

  .news_events_tile .news_events_title {
    font-size: 0.96rem;
  }

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

}

@media (max-width: 980px) {
  .style_guide_block_head,
  .style_guide_spec_row {
    grid-template-columns: 1fr;
  }

  .style_guide_block_head h2,
  .style_guide_block_head > p:last-child {
    grid-column: auto;
  }

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

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

@media (max-width: 640px) {
  .style_guide_hero,
  .style_guide_block,
  .style_guide_direction {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
    overflow: visible;
  }

  .style_guide_block_head,
  .style_guide_spec_row,
  .style_guide_block_head > p:last-child,
  .style_guide_note,
  .style_sample_large,
  .style_sample_medium,
  .style_sample_regular,
  .style_sample_small {
    max-width: min(calc(100vw - 32px), 358px);
  }

  .style_guide_hero {
    min-height: auto;
    padding-top: 76px;
  }

  .style_guide_hero_rule {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .style_guide_hero_rule span {
    width: 100%;
  }

  .style_guide_hero h1 {
    max-width: 5ch;
    font-size: clamp(3.8rem, 16vw, 4.9rem);
    line-height: 0.92;
  }

  .style_guide_manifesto {
    max-width: 26ch;
    font-size: clamp(1.16rem, 6vw, 1.44rem);
  }

  .style_guide_block_head h2 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .style_type_main {
    max-width: 5ch;
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .style_type_secondary {
    max-width: 8ch;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .style_type_tertiary {
    max-width: 8ch;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .style_palette_grid,
  .style_card_grid {
    grid-template-columns: 1fr;
  }

  .style_swatch span {
    aspect-ratio: 1.8;
  }

  .style_guide_direction > p {
    text-align: left;
  }
}
