* {
  box-sizing: border-box;
}

:root {
  --ink: #172027;
  --ink-soft: #41505a;
  --paper: #f3f3ef;
  --paper-bright: #fbfbf8;
  --steel: #4e6876;
  --steel-deep: #2f4b5a;
  --steel-pale: #dce5e8;
  --gold: #b39258;
  --line: rgba(23, 32, 39, .18);
  --white: #fff;
}

html {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Avenir Next", Arial, sans-serif;
}

html.menu_open,
body.menu_open,
html.contact_modal_open,
body.contact_modal_open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site_header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 100px;
  padding: 20px 52px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  pointer-events: none;
  transition: color 300ms ease;
}

.site_header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  transition: opacity 300ms ease, background-color 300ms ease;
}

.site_header.on_dark {
  color: var(--white);
}

.site_header.on_dark::before {
  background: rgba(7, 15, 20, .58);
}

.site_header.has_scrolled::before {
  opacity: 1;
}

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

.brand,
.menu_button {
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand_icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand_text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.025em;
}

.menu_button {
  position: relative;
  width: 52px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu_button span,
.menu_button::before,
.menu_button::after {
  content: "";
  position: absolute;
  right: 0;
  width: 52px;
  height: 2px;
  background: currentColor;
  transition: width 250ms ease;
}

.menu_button::before { top: 5px; }
.menu_button span { top: 18px; }
.menu_button::after { bottom: 5px; }
.menu_button:hover span { width: 36px; }

.menu_overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: var(--ink);
  background:
    linear-gradient(rgba(239, 244, 245, .92), rgba(239, 244, 245, .92)),
    url("../images/slide-4-presence.jpg") center / cover;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.menu_overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu_overlay .brand {
  position: absolute;
  top: 20px;
  left: 52px;
}

.menu_close {
  position: absolute;
  top: 20px;
  right: 49px;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu_close::before,
.menu_close::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 2px;
  width: 54px;
  height: 2px;
  background: var(--ink);
}

.menu_close::before { transform: rotate(45deg); }
.menu_close::after { transform: rotate(-45deg); }

.menu_links {
  height: 100%;
  padding: 112px 8vw 38px;
  display: grid;
  place-items: center;
}

.menu_links_inner {
  width: min(1020px, 100%);
}

.menu_links a {
  display: block;
  padding: .075em 0;
  border-bottom: 1px solid rgba(23, 32, 39, .24);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.75rem, 8vh, 6rem);
  font-weight: 500;
  line-height: .92;
  opacity: 0;
  transform: translateX(-95px);
}

.menu_links a:hover,
.menu_links a[aria-current="page"] {
  color: var(--steel-deep);
}

.menu_overlay.open .menu_links a {
  animation: menu_fly_in 650ms cubic-bezier(.7, 0, .2, 1) forwards;
}

.menu_overlay.open .menu_links a:nth-child(2) { animation-delay: 70ms; }
.menu_overlay.open .menu_links a:nth-child(3) { animation-delay: 140ms; }
.menu_overlay.open .menu_links a:nth-child(4) { animation-delay: 210ms; }
.menu_overlay.open .menu_links a:nth-child(5) { animation-delay: 280ms; }
.menu_overlay.open .menu_links a:nth-child(6) { animation-delay: 350ms; }

@keyframes menu_fly_in {
  to { opacity: 1; transform: translateX(0); }
}

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

.section_inner {
  width: min(1500px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 124px 8vw 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 7vw;
}

.section_content {
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--steel-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.5rem, 8.5vw, 9.2rem);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6.3vw, 7.2rem);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.lede {
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.25;
}

.dark_section {
  color: var(--white);
  background: #15242c;
}

.dark_section p,
.dark_section .eyebrow {
  color: rgba(255, 255, 255, .78);
}

.hero_section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 18, 25, .93), rgba(8, 18, 25, .55) 56%, rgba(8, 18, 25, .24)),
    url("../images/slide-1-hero.jpg") center / cover;
}

.hero_section p,
.hero_section .eyebrow {
  color: rgba(255, 255, 255, .86);
}

.hero_section .quote_panel p,
.dark_section .quote_panel p {
  color: var(--ink-soft);
}

.hero_rule {
  width: min(460px, 76%);
  height: 1px;
  margin: 8px 0 25px;
  background: rgba(255, 255, 255, .55);
}

.hero_subhead {
  max-width: 720px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.quote_panel {
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.quote_mark {
  margin-bottom: -20px;
  color: var(--steel-pale);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: .65;
}

.quote_panel strong {
  display: block;
  margin-bottom: 14px;
  color: var(--steel-deep);
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.quote_panel p {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.18;
}

.formation_circle {
  width: min(470px, 88vw);
  aspect-ratio: 1;
  margin: auto;
  padding: 12%;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle, rgba(255, 255, 255, .13), transparent 66%);
}

.formation_circle strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  font-weight: 500;
  line-height: .88;
}

.formation_circle span {
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.image_panel {
  position: relative;
  min-height: 600px;
  background: url("../images/slide-4-presence.jpg") center / cover;
}

.image_note {
  position: absolute;
  inset: auto 0 0;
  padding: 32px;
  color: var(--white);
  background: rgba(10, 22, 29, .84);
}

.image_note p {
  margin: 0;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.25;
}

.principle_grid,
.path_grid,
.service_grid,
.link_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.principle,
.path_card,
.service_card,
.link_card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .66);
}

.principle strong,
.path_card strong,
.service_card strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.principle p,
.path_card p,
.service_card p,
.link_card p {
  margin-bottom: 0;
  font-size: .94rem;
  line-height: 1.6;
}

.wide_inner {
  grid-template-columns: 1fr;
  align-content: center;
}

.wide_inner .section_content {
  max-width: 980px;
}

.mission_section {
  background:
    linear-gradient(90deg, rgba(243, 243, 239, .98), rgba(243, 243, 239, .76)),
    url("../images/slide-5-cpe-bg.jpg") center / cover;
}

.path_grid {
  margin-top: 34px;
}

.path_card {
  min-height: 220px;
  background: rgba(255, 255, 255, .88);
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline_item {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline_item time,
.timeline_item .timeline_label {
  padding-top: 5px;
  color: var(--steel-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.timeline_item h3 {
  margin-bottom: 7px;
}

.timeline_item p {
  margin-bottom: 0;
}

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

.service_section .section_inner {
  gap: clamp(36px, 4.5vw, 68px);
}

.service_carousel {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.service_carousel_viewport {
  position: relative;
  height: clamp(540px, 64vw, 700px);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 39, .2);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .16), transparent 52%),
    #233844;
  box-shadow: 0 24px 60px rgba(23, 32, 39, .16);
  touch-action: pan-y;
}

.service_carousel_viewport::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .22);
  pointer-events: none;
}

.service_carousel_slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 520ms ease, transform 750ms cubic-bezier(.2, .7, .2, 1), visibility 520ms;
}

.service_carousel_slide.is_active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.service_carousel_slide img {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.service_carousel_arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(10, 22, 29, .68);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.service_carousel_arrow:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.service_carousel_arrow span {
  margin-top: -2px;
  font-size: 1.35rem;
  line-height: 1;
}

.service_carousel_previous { left: 28px; }
.service_carousel_next { right: 28px; }

.service_carousel_footer {
  min-height: 68px;
  padding: 18px 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service_carousel_caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.service_carousel_caption span {
  color: var(--steel-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service_carousel_caption strong {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.service_carousel_dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service_carousel_dot {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.service_carousel_dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--steel-deep);
  border-radius: 50%;
  background: transparent;
  transition: width 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service_carousel_dot:hover::before,
.service_carousel_dot[aria-current="true"]::before {
  width: 18px;
  border-radius: 10px;
  background: var(--steel-deep);
}

.service_card {
  background: var(--white);
}

.cta_section {
  text-align: center;
  background: var(--steel-pale);
}

.cta_section .section_content {
  max-width: 920px;
  margin: auto;
}

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: inherit;
}

.cta_section .actions {
  justify-content: center;
}

.button {
  min-height: 52px;
  padding: 15px 23px;
  border: 1px solid var(--steel-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-deep);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--steel-deep);
  transform: translateY(-2px);
}

.button_light {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.button_light:hover {
  color: var(--ink);
  background: var(--white);
}

.about_hero {
  min-height: 86svh;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(9, 20, 27, .94), rgba(9, 20, 27, .64)),
    url("../images/last-slide-main.jpg") center / cover;
}

.about_hero .section_inner {
  min-height: 86svh;
  grid-template-columns: 1fr;
}

.about_hero .section_content {
  max-width: 1040px;
}

.about_hero p,
.about_hero .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.profile_intro {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  line-height: 1.2;
}

.work_chapter {
  background: var(--paper-bright);
}

.work_chapter .section_inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .68fr);
}

.work_chapter .section_inner > * {
  min-width: 0;
  max-width: 100%;
}

.work_chapter h2,
.work_chapter p,
.memory_photo figcaption {
  overflow-wrap: anywhere;
}

.memory_photo {
  width: min(400px, 100%);
  margin: 0 auto;
}

.memory_photo_frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(23, 32, 39, .15);
  transform: rotate(1.2deg);
}

.memory_photo_frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  pointer-events: none;
}

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

.memory_photo figcaption {
  max-width: 350px;
  margin: 25px auto 0;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

.memory_photo figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--steel-deep);
  font-family: "Inter", "Avenir Next", Arial, sans-serif;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.apostolic_accent {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}

/* The Apostolic landing page begins as a visual continuation of the main story. */
.apostolic_page h2 {
  font-size: clamp(2.8rem, min(4.25vw, 7vh), 5rem);
  line-height: .94;
  letter-spacing: -.035em;
}

.apostolic_page .lede {
  font-size: clamp(1.3rem, min(1.85vw, 3vh), 2rem);
  line-height: 1.34;
}

.apostolic_page .section_content {
  max-width: 690px;
}

.apostolic_page .wide_inner .section_content {
  max-width: 980px;
}

.apostolic_page .quote_panel p {
  font-size: clamp(1.45rem, min(1.85vw, 3.2vh), 2rem);
  line-height: 1.25;
}

.apostolic_story .section_inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
  padding-top: clamp(108px, 12vh, 148px);
  padding-bottom: clamp(82px, 9vh, 116px);
  gap: clamp(52px, 5vw, 108px);
}

.apostolic_story .section_content {
  max-width: 820px;
}

.apostolic_story h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.9rem, min(6.5vw, 10.4vh), 6.5rem);
  line-height: .86;
  letter-spacing: -.055em;
}

.apostolic_story .hero_rule {
  width: 88px;
  height: 2px;
  margin: clamp(18px, 2.5vh, 26px) 0 clamp(14px, 2vh, 20px);
  background: #b9d0da;
}

.apostolic_story .hero_subhead {
  max-width: 720px;
  margin: 6px 0 4px;
  font-size: clamp(1.95rem, min(3.25vw, 5.2vh), 3.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.apostolic_story .lede {
  max-width: 760px;
  margin-top: clamp(16px, 2.2vh, 22px);
  margin-bottom: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.18rem, min(1.45vw, 2.55vh), 1.52rem);
  line-height: 1.42;
}

.apostolic_story .actions {
  margin-top: clamp(18px, 2.6vh, 28px);
}

.apostolic_story_aside {
  align-self: center;
  justify-self: end;
  width: min(360px, 100%);
  padding: 18px 0 0 26px;
  border-left: 1px solid rgba(255,255,255,.42);
}

.apostolic_story_aside p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.16rem, min(1.35vw, 2.45vh), 1.55rem);
  line-height: 1.38;
}

.apostolic_story_aside .actions {
  margin-top: clamp(18px, 2.6vh, 28px);
}

.apostolic_interview {
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(237,242,243,.9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.apostolic_interview .section_inner {
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
}

.apostolic_interview .eyebrow {
  max-width: 650px;
  line-height: 1.55;
}

.apostolic_interview h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, min(3.3vw, 5.9vh), 4.15rem);
  line-height: 1.02;
}

.apostolic_interview .lede {
  margin-top: clamp(18px, 2.8vh, 28px);
}

.apostolic_question_panel {
  position: relative;
  min-height: clamp(360px, 52vh, 470px);
  display: grid;
  place-items: center;
}

.apostolic_question_mark {
  position: absolute;
  z-index: 0;
  right: 4%;
  top: 48%;
  transform: translateY(-50%);
  color: rgba(78,104,118,.1);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: min(55vw, 650px);
  line-height: .7;
}

.apostolic_answer_card {
  position: relative;
  z-index: 1;
  width: min(470px, 92%);
  padding: clamp(28px, 3.6vh, 38px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: 0 32px 70px rgba(23,32,39,.1);
}

.apostolic_answer_card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--steel-deep);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.apostolic_answer_card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, min(2vw, 3.8vh), 2.35rem);
  line-height: 1.25;
}

.apostolic_answer_line {
  margin-top: clamp(22px, 3vh, 32px) !important;
  padding-top: clamp(18px, 2.6vh, 26px);
  border-top: 1px solid var(--line);
  color: var(--steel-deep) !important;
  font-weight: 600;
}

.apostolic_release {
  background:
    radial-gradient(circle at 72% 48%, rgba(78,104,118,.18), transparent 0 24%, transparent 24%),
    linear-gradient(135deg, #f7f8f6, #e7edef);
}

.apostolic_release h2 {
  font-size: clamp(3rem, min(4.8vw, 7.6vh), 5.5rem);
}

.apostolic_release_visual {
  min-height: clamp(390px, 56vh, 520px);
  display: grid;
  place-items: center;
}

.apostolic_release_circle {
  width: min(460px, 78%);
  aspect-ratio: 1;
  padding: clamp(48px, 6vh, 66px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: var(--steel-deep);
  box-shadow: 0 35px 80px rgba(47,75,90,.25);
}

.apostolic_release_circle strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, min(5.6vw, 8.4vh), 6.2rem);
  font-weight: 500;
  line-height: .8;
}

.apostolic_release_circle span {
  display: block;
  margin-top: clamp(16px, 2.6vh, 24px);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.apostolic_word_path {
  margin-top: clamp(22px, 3.2vh, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.apostolic_word_path span {
  position: relative;
  padding-right: 30px;
  color: var(--steel-deep);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.apostolic_word_path span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 0;
  color: rgba(47,75,90,.45);
}

.apostolic_pathway .section_content {
  max-width: 920px;
}

.apostolic_media_section {
  color: var(--white);
  background: #101a20;
  --plyr-color-main: #b9d0da;
  --plyr-video-control-color: #ffffff;
  --plyr-video-control-background-hover: rgba(78, 104, 118, .88);
  --plyr-menu-background: rgba(255, 255, 255, .96);
}

.apostolic_media_section .section_inner {
  grid-template-columns: 1fr;
  gap: 28px;
  align-content: center;
}

.apostolic_media_content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.apostolic_media_content h2 {
  margin-bottom: 0;
  color: var(--white);
}

.apostolic_video_shell {
  width: 100%;
  margin: 34px auto 0;
}

.apostolic_video_feature + .apostolic_video_feature {
  margin-top: clamp(52px, 7vw, 84px);
  padding-top: clamp(42px, 5vw, 66px);
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.apostolic_video_title {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.apostolic_video_feature .apostolic_video_shell {
  margin-top: 0;
}

.apostolic_video_shell .plyr {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .4);
}

.apostolic_video_shell .plyr,
.apostolic_video_shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05090c;
}

.apostolic_media_contact {
  justify-content: center;
  margin-top: 28px;
}

.apostolic_contact_button {
  min-width: 320px;
  min-height: 68px;
  padding: 20px 46px;
  font-size: 1rem;
  letter-spacing: .16em;
}

.contact_modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.contact_modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact_modal_backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 18, 25, .68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact_modal_panel {
  position: relative;
  width: min(610px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 44px;
  border: 1px solid rgba(23, 32, 39, .15);
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .34);
  transform: translateY(18px) scale(.985);
  transition: transform 260ms cubic-bezier(.7, 0, .2, 1);
}

.contact_modal.open .contact_modal_panel {
  transform: translateY(0) scale(1);
}

.contact_modal_close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.contact_modal_close::before,
.contact_modal_close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 7px;
  width: 28px;
  height: 1.5px;
  background: currentColor;
}

.contact_modal_close::before { transform: rotate(45deg); }
.contact_modal_close::after { transform: rotate(-45deg); }

.contact_modal_eyebrow {
  margin: 0 0 10px;
  color: var(--steel);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact_modal_panel h2 {
  margin: 0 52px 30px 0;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.contact_field {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.contact_field label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact_field input {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 32, 39, .26);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1.08rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact_field input:focus {
  border-color: var(--steel-deep);
  box-shadow: 0 0 0 3px rgba(78, 104, 118, .15);
}

.contact_submit {
  width: 100%;
  min-height: 60px;
  margin-top: 30px;
  border-color: var(--steel-deep);
  background: var(--steel-deep);
  color: var(--white);
}

.contact_submit:hover {
  background: var(--ink);
}

@media (max-width: 900px) {
  .apostolic_page h2 {
    font-size: clamp(2.65rem, 10.5vw, 4.3rem);
    line-height: .96;
  }

  .apostolic_page .lede {
    font-size: 1.2rem;
    line-height: 1.38;
  }

  .apostolic_story .section_inner,
  .apostolic_interview .section_inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .apostolic_story .section_inner {
    padding-top: 108px;
    padding-bottom: 54px;
  }

  .apostolic_story h1 {
    font-size: clamp(3.8rem, 16vw, 6.3rem);
  }

  .apostolic_story .hero_subhead {
    font-size: clamp(1.9rem, 8vw, 3.15rem);
  }

  .apostolic_story .lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .apostolic_story_aside {
    justify-self: start;
    width: 100%;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,.36);
    border-left: 0;
  }

  .apostolic_story_aside p {
    font-size: 1.05rem;
  }

  .apostolic_interview h2 {
    font-size: clamp(2.5rem, 9.5vw, 3.6rem);
  }

  .apostolic_question_panel,
  .apostolic_release_visual {
    min-height: 300px;
  }

  .apostolic_answer_card {
    width: 100%;
    padding: 25px;
  }

  .apostolic_answer_card p {
    font-size: 1.55rem;
  }

  .apostolic_release_circle {
    width: min(300px, 78vw);
    padding: 40px;
  }

  .apostolic_release_circle strong {
    font-size: 4rem;
  }
}

@media (max-width: 540px) {
  .apostolic_page h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.45rem);
  }

  .apostolic_story h1 {
    font-size: clamp(3.05rem, 14.1vw, 4.15rem);
    line-height: .9;
  }

  .apostolic_story .hero_rule {
    margin: 18px 0 14px;
  }

  .apostolic_story .hero_subhead {
    font-size: clamp(1.55rem, 7.2vw, 2.25rem);
    line-height: 1.08;
  }

  .apostolic_story .lede {
    margin-top: 18px;
    font-size: .95rem;
    line-height: 1.5;
  }

  .apostolic_story .actions {
    margin-top: 18px;
  }

  .apostolic_interview h2 {
    font-size: clamp(2.35rem, 10.8vw, 3rem);
  }

  .apostolic_release h2 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .apostolic_release_circle {
    width: min(270px, 80vw);
  }

  .apostolic_release_circle strong {
    font-size: 3.65rem;
  }

  .apostolic_word_path {
    gap: 9px 14px;
    margin-top: 24px;
  }

  .apostolic_word_path span {
    padding-right: 22px;
    font-size: .72rem;
  }

  .apostolic_video_shell {
    margin-top: 24px;
  }

  .apostolic_video_feature + .apostolic_video_feature {
    margin-top: 42px;
    padding-top: 34px;
  }

  .apostolic_video_title {
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .apostolic_media_contact {
    width: 100%;
    margin-top: 18px;
  }

  .apostolic_contact_button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 17px 20px;
    font-size: .78rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is_visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site_header {
    height: 88px;
    padding: 16px 25px 20px;
  }

  .brand_icon { width: 50px; height: 50px; }
  .brand_text { font-size: 24px; }
  .menu_button,
  .menu_button span,
  .menu_button::before,
  .menu_button::after { width: 44px; }
  .menu_overlay .brand { top: 16px; left: 25px; }
  .menu_close { top: 13px; right: 22px; }
  .menu_links { padding: 100px 30px 28px; }
  .menu_links a { font-size: clamp(2.8rem, 7.5vh, 4.8rem); }

  .section_inner {
    padding: 112px 28px 68px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero_section .section_inner,
  .about_hero .section_inner {
    align-content: center;
  }

  .work_chapter .section_inner {
    grid-template-columns: 1fr;
  }

  .memory_photo {
    width: min(380px, calc(100% - 16px));
  }

  .principle_grid,
  .path_grid,
  .service_grid {
    grid-template-columns: 1fr;
  }

  .service_carousel_viewport {
    height: clamp(500px, 78vw, 650px);
  }

  .image_panel { min-height: 520px; }
  .formation_circle { width: min(430px, 86vw); }
}

@media (max-width: 540px) {
  .menu_links a { font-size: clamp(2.15rem, 6.5vh, 3.3rem); }
  .section_inner { padding-inline: 20px; }
  h1 { font-size: clamp(4rem, 21vw, 6rem); }
  h2 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .timeline_item { grid-template-columns: 1fr; gap: 7px; }
  .timeline_item time,
  .timeline_item .timeline_label { padding-top: 0; }
  .actions { display: grid; }
  .button { width: 100%; }
  .quote_panel { padding: 27px 22px; }
  .image_panel { min-height: 440px; }

  .work_chapter .section_inner {
    padding-inline: 20px;
  }

  .work_chapter h2 {
    font-size: clamp(2.85rem, 15vw, 4.4rem);
  }

  .memory_photo {
    width: calc(100% - 18px);
  }

  .service_carousel_viewport {
    height: min(116vw, 590px);
  }

  .service_carousel_viewport::before {
    inset: 9px;
  }

  .service_carousel_arrow {
    top: auto;
    bottom: 16px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .service_carousel_arrow:hover {
    transform: scale(1.04);
  }

  .service_carousel_previous { left: 16px; }
  .service_carousel_next { right: 16px; }

  .service_carousel_footer {
    padding-top: 15px;
    align-items: flex-start;
    gap: 10px;
  }

  .service_carousel_caption {
    display: grid;
    gap: 4px;
  }

  .service_carousel_caption span {
    font-size: .65rem;
  }

  .service_carousel_dots {
    gap: 3px;
  }

  .memory_photo_frame {
    padding: 8px;
    transform: rotate(.45deg);
  }

  .memory_photo_frame::after {
    inset: 8px;
  }

  .memory_photo figcaption {
    margin-top: 20px;
    padding-inline: 2px;
  }

  .contact_modal {
    padding: 14px;
  }

  .contact_modal_panel {
    max-height: calc(100svh - 28px);
    padding: 36px 24px 28px;
  }

  .contact_modal_panel h2 {
    margin-bottom: 24px;
  }

  .contact_field {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
