:root {
  --navy: #1b2a4a;
  --navy-mid: #2c3e6b;
  --navy-pale: #eef1f8;
  --gold: #8b6914;
  --gold-light: #c9a84c;
  --gold-pale: #f7f0df;
  --stone: #f5f3ef;
  --stone-mid: #e8e4dc;
  --ink: #1a1814;
  --ink-mid: #3d3a35;
  --ink-soft: #6b6660;
  --white: #fff;
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card:
    0 1px 4px rgba(0, 0, 0, 0.07), 0 10px 30px rgba(27, 42, 74, 0.06);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
  overflow-x: hidden;
}
body {
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-nav);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
.nav-title {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}
.nav-title-top {
  font: 550 16px/1 var(--serif);
  color: white;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-title-sub {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  transition:
    color 0.18s,
    background 0.18s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold-light);
  transition:
    left 0.22s,
    right 0.22s;
}
.nav-links a:hover,
.nav-links a.nav-active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a:hover::after,
.nav-links a.nav-active::after {
  left: 13px;
  right: 13px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.lang-pill {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
}
.lang-label {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.lang-radio:checked + .lang-label {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.nav-donate {
  background: var(--gold);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}
.nav-donate:hover {
  background: #76590f;
}
.nav-hamburger {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-hamburger span {
  width: 18px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: 0.22s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
.mobile-menu {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(27, 42, 74, 0.97);
  z-index: 150;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s,
    opacity 0.25s;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  padding: 24px 20px 48px;
  max-width: 500px;
  margin: auto;
}
.mobile-menu-inner > a {
  display: block;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.mobile-menu-inner > a[aria-current="page"] {
  color: var(--gold-light);
}
.mobile-lang-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 8px 18px;
}
.mobile-lang-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.mobile-lang-group {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
}
.mobile-lang-btn {
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
}
.mobile-lang-group .lang-radio:checked + .mobile-lang-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: white;
  padding: 88px 24px 94px;
  text-align: center;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 50%;
  width: 520px;
  height: 520px;
  top: -300px;
  left: calc(50% - 260px);
}
.hero::after {
  width: 680px;
  height: 680px;
  top: -380px;
  left: calc(50% - 340px);
  opacity: 0.55;
}
.hero-glow {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(201, 168, 76, 0.28), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent);
}
.hero-inner {
  max-width: 850px;
  margin: auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 22px;
}
.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.7;
}
.hero h1 {
  font: 500 clamp(48px, 7vw, 78px)/0.98 var(--serif);
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: auto;
}
.hero-lead {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 2vw, 18px);
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.18s,
    background 0.18s,
    border-color 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-gold {
  background: var(--gold-light);
  color: var(--navy);
}
.button-gold:hover {
  background: #dabd69;
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
}
.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}
.button-navy {
  background: var(--navy);
  color: white;
}

.section-nav {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-mid);
}
.section-nav-inner {
  max-width: 1120px;
  height: 56px;
  margin: auto;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
}
.section-tabs {
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.section-tabs::-webkit-scrollbar {
  display: none;
}
.section-tabs a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  outline-offset: -3px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.section-tabs a:hover,
.section-tabs a.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold-light);
  background: var(--gold-pale);
}
.section-tabs a span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-right: 7px;
}
.deck-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 7px 4px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  visibility: hidden;
  box-shadow: 0 3px 10px rgba(27, 42, 74, 0.2);
  transition:
    color 0.18s,
    background 0.18s,
    border-color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.deck-ready .deck-arrow {
  visibility: visible;
}
.deck-arrow:hover {
  color: var(--white);
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(27, 42, 74, 0.24);
}
.deck-arrow:focus-visible {
  outline: 3px solid rgba(201, 168, 76, 0.5);
  outline-offset: 2px;
}

.section {
  padding: 94px 24px;
}
.section-warm {
  background: var(--stone);
}
.section-inner {
  max-width: 1120px;
  margin: auto;
}
.deck-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.formation-panel[hidden] {
  display: none;
}
.formation-panel.is-leaving {
  pointer-events: none;
}
.formation-panel.is-leaving-forward {
  animation: card-out-forward 0.19s ease both;
}
.formation-panel.is-leaving-backward {
  animation: card-out-backward 0.19s ease both;
}
.formation-panel.is-entering-forward {
  animation: card-in-forward 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.formation-panel.is-entering-backward {
  animation: card-in-backward 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes card-out-forward {
  to {
    opacity: 0;
    transform: translateX(-18px) scale(0.995);
  }
}
@keyframes card-out-backward {
  to {
    opacity: 0;
    transform: translateX(18px) scale(0.995);
  }
}
@keyframes card-in-forward {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes card-in-backward {
  from {
    opacity: 0;
    transform: translateX(-28px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.deck-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 70px;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.deck-ready .deck-footer {
  display: grid;
}
.deck-footer-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  max-width: 100%;
  min-height: 68px;
  padding: 10px 16px;
  border: 1px solid var(--stone-mid);
  border-radius: 12px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.08);
  transition:
    transform 0.18s,
    border-color 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.deck-footer-next {
  justify-self: end;
  text-align: right;
}
.deck-footer-button small {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.deck-footer-button strong {
  display: block;
  font: 600 17px/1.2 var(--serif);
  margin-top: 2px;
}
.deck-footer-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--navy);
  color: white;
  box-shadow: 0 3px 12px rgba(27, 42, 74, 0.14);
  transition:
    color 0.18s,
    border-color 0.18s,
    background 0.18s,
    transform 0.18s;
}
.deck-footer-button:hover {
  transform: translateY(-2px);
  border-color: var(--navy-pale);
  background: var(--navy-pale);
  box-shadow: 0 8px 22px rgba(27, 42, 74, 0.13);
}
.deck-footer-button:hover .deck-footer-arrow {
  color: var(--white);
  border-color: var(--navy-mid);
  background: var(--navy-mid);
  transform: scale(1.06);
}
.deck-footer-button:focus-visible {
  outline: 3px solid rgba(201, 168, 76, 0.45);
  outline-offset: 3px;
}
.deck-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}
.deck-progress span:first-child {
  color: var(--navy);
}
.deck-progress i {
  width: 34px;
  height: 1px;
  background: var(--stone-mid);
}
.section-heading {
  margin-bottom: 44px;
}
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.centered-heading {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.compact-heading {
  margin-bottom: 50px;
}
.section-kicker,
.card-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 700;
}
.section-heading h2,
.ocia-copy h2 {
  font: 500 clamp(38px, 5vw, 56px)/1.05 var(--serif);
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-top: 8px;
}
.section-heading > p,
.centered-heading > p:last-child {
  color: var(--ink-soft);
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 15px;
}
.updated {
  color: var(--ink-soft);
  font-size: 12px;
  padding-bottom: 7px;
}

.registration-panel {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.registration-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  right: -150px;
  bottom: -160px;
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e3d18f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ccf9a;
  box-shadow: 0 0 0 4px rgba(140, 207, 154, 0.12);
}
.registration-copy h3 {
  font: 500 clamp(30px, 4vw, 43px)/1.05 var(--serif);
  margin: 13px 0 12px;
}
.registration-copy > p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
}
.registration-copy .button-row {
  justify-content: flex-start;
  margin-top: 24px;
}
.schedule-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
}
.schedule-card .card-label {
  color: var(--gold-light);
  margin-bottom: 15px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.schedule-row span {
  color: #f3df9e;
}
.schedule-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 15px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 48px;
  margin-top: 58px;
  align-items: start;
}
.mission-quote {
  border-left: 3px solid var(--gold-light);
  padding: 4px 0 4px 26px;
  margin-bottom: 34px;
}
.mission-quote p {
  font: 500 24px/1.35 var(--serif);
  color: var(--navy);
}
.belief-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plain-card {
  background: white;
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-md);
  padding: 26px;
}
.plain-card .card-label {
  margin-bottom: 15px;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-mid);
  font-size: 13px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.body-copy {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 26px;
}
.text-link,
.program-body a,
.events-note a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(139, 105, 20, 0.3);
}
.volunteer-callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 25px;
  margin-top: 26px;
}
.callout-icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--gold);
}
.volunteer-callout h3 {
  font: 600 20px/1.2 var(--serif);
  color: var(--navy);
  margin-bottom: 6px;
}
.volunteer-callout p {
  color: var(--ink-soft);
  font-size: 13px;
}
.volunteer-callout a {
  color: var(--navy);
  font-weight: 600;
}
.contact-panel {
  position: sticky;
  top: 140px;
  background: white;
  border: 1px solid var(--stone-mid);
  border-top: 3px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.contact-panel h3 {
  font: 500 29px/1.15 var(--serif);
  color: var(--navy);
  margin: 8px 0 19px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.contact-line i {
  color: var(--gold);
  width: 16px;
}
.office-hours {
  border-top: 1px solid var(--stone-mid);
  display: grid;
  margin-top: 18px;
  padding-top: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}
.office-hours strong {
  color: var(--ink-mid);
  margin-bottom: 5px;
}
.cancellation-box {
  background: var(--stone);
  border-radius: 8px;
  margin-top: 20px;
  padding: 15px;
  font-size: 11px;
  color: var(--ink-soft);
}
.cancellation-box strong {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
}
.cancellation-box a {
  color: var(--gold);
  font-weight: 600;
}
.resource-strip {
  margin-top: 70px;
  border-top: 1px solid #d9d3c9;
  padding-top: 34px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}
.resource-strip h3 {
  font: 500 27px/1.2 var(--serif);
  color: var(--navy);
  margin-top: 6px;
}
.resource-links {
  display: grid;
  gap: 8px;
}
.resource-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #d9d3c9;
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 600;
}
.resource-links a span {
  color: var(--gold);
  font-size: 10px;
  white-space: nowrap;
}

.adult-intro {
  max-width: 930px;
  margin: -12px auto 34px;
  padding: 26px 30px;
  background: var(--navy-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.adult-intro p {
  color: var(--ink-mid);
  font-size: 14px;
  max-width: 620px;
}
.adult-intro .button {
  flex-shrink: 0;
}
.events-note {
  max-width: 930px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.events-note i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50%;
}
.events-note strong {
  color: var(--navy);
  font-size: 13px;
}
.events-note p {
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 2px;
}
.program-grid {
  max-width: 930px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px;
}
.program-card {
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.025);
}
.program-card summary {
  list-style: none;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 18px 20px;
  cursor: pointer;
}
.program-card summary::-webkit-details-marker {
  display: none;
}
.program-number {
  font: italic 17px/1 var(--serif);
  color: var(--gold);
}
.program-card summary strong {
  display: block;
  font: 600 18px/1.15 var(--serif);
  color: var(--navy);
}
.program-card summary small {
  display: block;
  color: var(--ink-soft);
  font-size: 10.5px;
  margin-top: 5px;
}
.program-card summary i {
  color: var(--gold);
  font-size: 10px;
  transition: transform 0.2s;
}
.program-card[open] summary i {
  transform: rotate(45deg);
}
.program-card[open] summary {
  background: var(--stone);
  border-bottom: 1px solid var(--stone-mid);
}
.program-body {
  padding: 21px 24px 24px 64px;
  color: var(--ink-soft);
  font-size: 12.5px;
}
.program-body p + p,
.program-body ul + p {
  margin-top: 13px;
}
.program-body ul {
  padding-left: 17px;
  margin-top: 11px;
  display: grid;
  gap: 8px;
}
.inline-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.inline-downloads a {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  border-radius: 20px;
  color: var(--navy);
  padding: 5px 10px;
  font-size: 10px;
}
.learning-library {
  max-width: 930px;
  margin: 76px auto 0;
  padding: 40px;
  background: var(--stone);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 38px;
}
.library-intro h3 {
  font: 500 31px/1.1 var(--serif);
  color: var(--navy);
  margin: 8px 0 12px;
}
.library-intro > p:last-child {
  color: var(--ink-soft);
  font-size: 12px;
}
.featured-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.featured-resources > a {
  background: white;
  border: 1px solid var(--stone-mid);
  border-radius: 10px;
  padding: 15px;
  display: grid;
  grid-template-columns: 34px 1fr 14px;
  gap: 11px;
  align-items: center;
  transition:
    transform 0.18s,
    border-color 0.18s;
}
.featured-resources > a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}
.resource-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--navy-pale);
  color: var(--navy);
  border-radius: 50%;
  font: 600 16px/1 var(--serif);
}
.featured-resources strong {
  display: block;
  color: var(--navy);
  font: 600 14px/1.1 var(--serif);
}
.featured-resources small {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  margin-top: 4px;
}
.featured-resources b {
  color: var(--gold);
  font-size: 11px;
}
.website-list {
  grid-column: 1 / -1;
  border-top: 1px solid #d9d3c9;
  padding-top: 24px;
}
.website-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 11px;
}
.website-list a {
  background: white;
  border: 1px solid var(--stone-mid);
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--ink-mid);
  font-size: 10.5px;
  font-weight: 600;
}

.ocia-section {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.ocia-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  left: -370px;
  top: -270px;
}
.ocia-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 80px;
  align-items: center;
  position: relative;
}
.section-kicker-light {
  color: var(--gold-light);
}
.ocia-copy h2 {
  color: white;
  max-width: 620px;
  margin: 10px 0 22px;
}
.ocia-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  max-width: 670px;
  font-size: 15px;
}
.ocia-links {
  margin-top: 32px;
  display: grid;
  max-width: 660px;
}
.ocia-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  font-weight: 600;
}
.ocia-links span {
  color: var(--gold-light);
}
.rica-card {
  background: white;
  color: var(--ink);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.rica-card h3 {
  color: var(--navy);
  font: 500 28px/1.1 var(--serif);
  margin: 8px 0 10px;
}
.rica-card p:not(.card-label) {
  color: var(--ink-soft);
  font-size: 12px;
}
.rica-card a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  margin-top: 22px;
}
.rica-card i {
  color: var(--gold);
}

.sacrament-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.sacrament-grid a {
  min-height: 175px;
  background: white;
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.sacrament-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-light);
}
.sacrament-grid span {
  color: var(--gold);
  font: italic 14px/1 var(--serif);
}
.sacrament-grid strong {
  color: var(--navy);
  font: 500 23px/1.1 var(--serif);
  margin: 20px 0 auto;
}
.sacrament-grid i {
  color: var(--ink-soft);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  margin-top: 18px;
}

.contact-heading > p {
  max-width: 300px;
  margin: 0;
  padding-bottom: 7px;
}
.lead-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin-bottom: 18px;
}
.lead-contact .card-label {
  color: var(--gold-light);
}
.lead-contact h3 {
  font: 500 27px/1.1 var(--serif);
  margin-top: 5px;
}
.lead-contact > a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
}
.lead-contact span {
  color: var(--gold-light);
  margin-left: 10px;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
.directory-card {
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-md);
  padding: 25px;
}
.directory-card h3 {
  font: 600 20px/1.2 var(--serif);
  color: var(--navy);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--stone-mid);
}
.directory-card dl > div {
  padding: 13px 0;
  border-bottom: 1px solid var(--stone-mid);
}
.directory-card dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.directory-card dt {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 8.5px;
  font-weight: 700;
}
.directory-card dd {
  color: var(--ink-mid);
  font-size: 12px;
  margin-top: 3px;
}
.directory-card dd a {
  color: var(--gold);
  font-weight: 600;
}
.directory-wide {
  grid-column: 1 / -1;
}
.retreat-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.retreat-list > div {
  border-bottom: 0 !important;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 52px 24px 28px;
}
.footer-inner {
  max-width: 1120px;
  margin: auto;
}
.footer-logo {
  font: 500 21px/1 var(--serif);
  color: white;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 34px;
}
.footer-col h4 {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 7px;
}
.footer-col a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
}
.footer-col a:hover,
.footer-contact a {
  color: var(--gold-light);
}
.footer-contact small {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}
.footer-socials {
  display: flex;
  gap: 9px;
}
.footer-socials .fa {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.footer-socials .fa:hover {
  color: white;
  background: rgba(255, 255, 255, 0.13);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-hamburger {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 899px) {
  .lang-pill {
    display: none;
  }
  .section-tabs {
    justify-content: flex-start;
  }
  .content-layout,
  .ocia-layout {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    position: static;
  }
  .ocia-layout {
    gap: 45px;
  }
  .rica-card {
    max-width: 450px;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .learning-library {
    grid-template-columns: 1fr;
  }
  .sacrament-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .directory-grid {
    grid-template-columns: 1fr 1fr;
  }
  .directory-wide {
    grid-column: 1 / -1;
  }
  .retreat-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 116px;
  }
  .nav-inner {
    height: 64px;
    padding: 0 16px;
    gap: 9px;
  }
  .nav-title-top {
    font-size: 14px;
    white-space: normal;
    max-width: 165px;
    line-height: 1.1;
  }
  .nav-title-sub {
    font-size: 8px;
  }
  .nav-donate {
    padding: 7px 12px;
    font-size: 11.5px;
  }
  .hero {
    padding: 64px 20px 70px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-nav-inner {
    height: 52px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }
  .section-tabs a {
    padding: 0 15px;
    font-size: 11px;
  }
  .section-tabs a span {
    font-size: 8px;
  }
  .deck-arrow {
    margin: 6px 3px;
    font-size: 16px;
  }
  .section {
    padding: 68px 16px;
  }
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .section-heading h2,
  .ocia-copy h2 {
    font-size: 40px;
  }
  .registration-panel {
    padding: 28px 20px;
    grid-template-columns: 1fr;
    gap: 27px;
    border-radius: var(--radius-md);
  }
  .registration-copy h3 {
    font-size: 34px;
  }
  .content-layout {
    margin-top: 42px;
    gap: 30px;
  }
  .mission-quote {
    padding-left: 18px;
  }
  .mission-quote p {
    font-size: 21px;
  }
  .belief-offer-grid {
    grid-template-columns: 1fr;
  }
  .plain-card {
    padding: 22px 20px;
  }
  .volunteer-callout {
    padding: 21px 18px;
  }
  .resource-strip {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .adult-intro {
    flex-direction: column;
    align-items: stretch;
    padding: 23px 20px;
  }
  .program-card summary {
    min-height: 80px;
    padding: 16px;
  }
  .program-body {
    padding: 20px;
  }
  .learning-library {
    padding: 25px 18px;
    margin-top: 55px;
    gap: 24px;
  }
  .featured-resources {
    grid-template-columns: 1fr;
  }
  .ocia-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .rica-card {
    padding: 24px;
  }
  .sacrament-grid {
    grid-template-columns: 1fr;
  }
  .sacrament-grid a {
    min-height: 145px;
  }
  .contact-heading > p {
    padding: 0;
  }
  .lead-contact {
    flex-direction: column;
    align-items: flex-start;
    padding: 23px 20px;
  }
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .directory-wide {
    grid-column: auto;
  }
  .retreat-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .deck-footer {
    padding: 22px 16px 52px;
    gap: 12px;
  }
  .deck-footer-button {
    min-width: 0;
    min-height: 58px;
    padding: 8px 10px;
    gap: 6px;
  }
  .deck-footer-button > span:not(.deck-footer-arrow) {
    min-width: 0;
  }
  .deck-footer-button strong {
    max-width: 82px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }
  .deck-footer-arrow {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  .deck-progress {
    gap: 5px;
  }
  .deck-progress i {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
