@charset "UTF-8";
:root {
  --navy: #1F2D3D;
  --navy-deep: #16212E;
  --navy-soft: #2A3A4D;
  --ivory: #F8F6F1;
  --ivory-warm: #F1ECE1;
  --ivory-deep: #E9E2D3;
  --paper: #FCFBF8;
  --gold: #C8A96B;
  --gold-deep: #B2914F;
  --gold-soft: #E7D9BC;
  --stone: #6B7280;
  --stone-light: #9097A0;
  --burgundy: #6D1F2B;
  --line: rgba(31,45,61,.12);
  --line-soft: rgba(31,45,61,.07);
  --line-gold: rgba(200,169,107,.4);
  --serif: Cormorant Garamond, Cormorant, Georgia, Times New Roman, serif;
  --sans: Source Sans 3, Source Sans Pro, -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 5vw, 64px);
  --shadow-soft: 0 18px 48px -28px rgba(22,33,46,.45);
  --shadow-card: 0 2px 4px rgba(22,33,46,.03), 0 24px 50px -36px rgba(22,33,46,.35);
  --shadow-lift: 0 4px 8px rgba(22,33,46,.05), 0 40px 70px -40px rgba(22,33,46,.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--ivory);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy-deep);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(64px, 9vw, 132px);
}
.section.tight {
  padding-block: clamp(48px, 6vw, 84px);
}

.kicker {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.center {
  justify-content: center;
}
.kicker.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.bare::before {
  display: none;
}

.bg-navy .kicker {
  color: var(--gold);
}
.bg-navy .kicker::before, .bg-navy .kicker.center::after {
  background: var(--gold);
}

.display {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 500;
}

.h-xl {
  font-size: clamp(36px, 5vw, 62px);
}

.h-lg {
  font-size: clamp(30px, 3.6vw, 46px);
}

.h-md {
  font-size: clamp(25px, 2.6vw, 33px);
}

.h-sm {
  font-size: clamp(21px, 2vw, 25px);
}

.lead {
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.65;
  color: var(--navy-soft);
}

.muted {
  color: var(--stone);
}

.gold-text {
  color: var(--gold-deep);
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
}

.diamond-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
}
.diamond-rule::before, .diamond-rule::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 120px);
}
.diamond-rule::before {
  background: linear-gradient(90deg, transparent, var(--line-gold));
}
.diamond-rule::after {
  background: linear-gradient(90deg, var(--line-gold), transparent);
}

.diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

.arch {
  border-top-left-radius: 50% 22%;
  border-top-right-radius: 50% 22%;
  overflow: hidden;
  position: relative;
}

.arch-tall {
  border-top-left-radius: 50% 30%;
  border-top-right-radius: 50% 30%;
}

.imgph {
  position: relative;
  background: repeating-linear-gradient(135deg, var(--ivory-warm) 0px, var(--ivory-warm) 11px, var(--ivory-deep) 11px, var(--ivory-deep) 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  overflow: hidden;
  isolation: isolate;
}
.imgph::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  pointer-events: none;
}
.imgph.on-navy {
  background: repeating-linear-gradient(135deg, #243345 0px, #243345 11px, #1b2735 11px, #1b2735 22px);
  color: var(--stone-light);
}
.imgph.on-navy::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.imgph-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(248, 246, 241, 0.86);
  color: var(--navy-soft);
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 6px 16px -10px rgba(0, 0, 0, 0.4);
}
.on-navy .imgph-label {
  background: rgba(22, 33, 46, 0.7);
  color: var(--gold-soft);
}
.imgph-label .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn .arrow {
  transition: transform 0.3s ease;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -18px rgba(178, 145, 79, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(248, 246, 241, 0.32);
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

.link-arrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-gold);
  transition: gap 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.link-arrow:hover {
  gap: 14px;
  border-color: var(--gold);
  color: var(--gold-deep);
}
.link-arrow .arrow {
  transition: transform 0.3s ease;
}
.link-arrow:hover .arrow {
  transform: translateX(4px);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card.hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line);
}

.reveal {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transform: translateY(16px);
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
  }
  .reveal.in {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
.page-enter {
  animation: pageIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes pageIn {
  from {
    transform: translateY(8px);
  }
  to {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-enter {
    animation: none;
  }
}
.page[hidden] {
  display: none !important;
}

.bg-ivory {
  background: var(--ivory);
}

.bg-paper {
  background: var(--paper);
}

.bg-warm {
  background: var(--ivory-warm);
}

.bg-navy {
  background: var(--navy);
  color: var(--ivory);
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 {
  color: var(--ivory);
}
.bg-navy .muted {
  color: var(--stone-light);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

.divider-line {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.logo {
  text-decoration: none;
}

.logo-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
  transition: width 0.35s ease, height 0.35s ease;
}
.nav-scrolled .logo-mark {
  width: 56px;
  height: 56px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.logo-line1 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.logo-line2 {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.nav-scrolled {
  background: rgba(248, 246, 241, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px -24px rgba(22, 33, 46, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
  transition: height 0.35s ease;
}
.nav-scrolled .nav-inner {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 26px);
}

.nav-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-soft);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
  text-decoration: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--navy);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: border-color 0.3s ease;
  padding: 0;
}
.hamburger span {
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.hamburger.open {
  border-color: var(--gold);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ivory);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: grid;
  place-items: center;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  width: 100%;
  max-width: 460px;
  padding: 0 32px;
  text-align: center;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.25s ease;
  text-decoration: none;
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: none;
}
.mobile-link.active {
  color: var(--gold-deep);
}

.mobile-link-num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}

.scripture {
  position: relative;
  overflow: hidden;
}

.scripture-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  height: 60px;
}

.scripture-quote {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.bg-navy .scripture-quote {
  color: var(--ivory);
}

.scripture-cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-header {
  position: relative;
  padding-top: clamp(150px, 18vh, 220px);
  padding-bottom: clamp(56px, 7vw, 96px);
  background: linear-gradient(180deg, var(--ivory-warm), var(--ivory));
  overflow: hidden;
}

.page-header-title {
  margin-top: 22px;
}

.page-header-arches {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 26px);
  opacity: 0.5;
  pointer-events: none;
}
.page-header-arches span {
  width: clamp(40px, 7vw, 92px);
  height: clamp(70px, 11vw, 150px);
  border: 1px solid var(--line-gold);
  border-bottom: none;
  border-top-left-radius: 50% 70%;
  border-top-right-radius: 50% 70%;
}

.footer {
  background: var(--navy);
  color: var(--ivory);
  padding-top: clamp(64px, 8vw, 104px);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.footer-blurb {
  color: var(--stone-light);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 26px;
}

.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: #fff;
}

.footer-h {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-address {
  font-style: normal;
  color: var(--ivory);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: var(--stone-light);
  font-size: 15px;
  padding: 5px 0;
  transition: color 0.25s ease;
  text-decoration: none;
}
.footer-link:hover {
  color: var(--gold-soft);
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  font-size: 15px;
  color: var(--stone-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-list li span:last-child {
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 26px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--stone-light);
}

.footer-base-mid {
  text-align: center;
}

.footer-base-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-soft);
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-base-mid {
    order: 3;
  }
}
.hero {
  padding-top: clamp(120px, 16vh, 168px);
  padding-bottom: 0;
  background: radial-gradient(120% 90% at 85% -10%, var(--ivory-warm), transparent 60%), var(--ivory);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 110px);
}

.hero-title {
  margin-top: 26px;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-title-amp {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 0.7em;
  padding-left: 0.08em;
}

.hero-sub {
  font-size: clamp(20px, 2.2vw, 27px);
  color: var(--gold-deep);
  margin-top: 22px;
  letter-spacing: 0.02em;
}

.hero-lead {
  margin-top: 22px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-figure {
  position: relative;
}

.hero-img {
  width: 100%;
  aspect-ratio: 3/3.7;
  box-shadow: var(--shadow-lift);
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -26px;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  width: 104px;
  height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero-badge-k {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-badge-y {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 2px;
}

.quickbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: -44px;
  position: relative;
  z-index: 5;
}

.quickbar-item {
  padding: 26px clamp(18px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--line-soft);
  transition: background 0.3s ease;
}
.quickbar-item:last-child {
  border-right: none;
}
.quickbar-item:hover {
  background: var(--ivory-warm);
}

.quickbar-k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.quickbar-v {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.quickbar-s {
  font-size: 13.5px;
  color: var(--stone);
}

.welcome {
  padding-top: clamp(110px, 13vw, 180px);
}

.welcome-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.welcome-figure {
  position: relative;
}

.welcome-img {
  width: 100%;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lift);
}

.welcome-img-2 {
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 5px solid var(--ivory);
  box-shadow: var(--shadow-soft);
}

.section-head {
  margin-bottom: clamp(48px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

.sac-card {
  padding: clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
}

.sac-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-deep);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  margin-bottom: 22px;
}

.sac-title {
  margin-bottom: 12px;
}

.sac-desc {
  color: var(--stone);
  font-size: 15.5px;
  line-height: 1.6;
  flex: 1;
}

.sac-link {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.sac-link::after {
  content: "→";
  transition: transform 0.25s ease;
}
.sac-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}
.sac-link:hover::after {
  transform: translateX(3px);
}

.sac-card-cta {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 60px);
  gap: 24px;
  flex-wrap: wrap;
}

.events-head-link {
  padding-bottom: 8px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
}

.event-card {
  padding: 26px clamp(22px, 2.2vw, 32px);
  display: flex;
  gap: 26px;
  align-items: center;
}

.event-date {
  flex: none;
  width: 76px;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 22px;
}

.event-month {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.event-day {
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.event-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.event-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  align-self: flex-start;
}

.event-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.event-time {
  font-size: 14.5px;
  color: var(--stone);
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

.pl-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pl-img {
  width: 100%;
  aspect-ratio: 4/4.3;
  border-radius: 0;
}

.pl-body {
  padding: 26px clamp(20px, 1.8vw, 26px) 30px;
}

.pl-desc {
  color: var(--stone);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 10px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-figure {
    max-width: 460px;
  }
  .hero-img {
    aspect-ratio: 4/3.6;
  }
  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .welcome-figure {
    max-width: 520px;
  }
  .sac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .quickbar {
    grid-template-columns: repeat(2, 1fr);
  }
  .quickbar-item:nth-child(2) {
    border-right: none;
  }
  .quickbar-item:nth-child(1),
  .quickbar-item:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .sac-grid {
    grid-template-columns: 1fr;
  }
  .pl-grid {
    grid-template-columns: 1fr;
  }
  .quickbar {
    grid-template-columns: 1fr;
  }
  .quickbar-item {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .quickbar-item:last-child {
    border-bottom: none;
  }
  .hero-badge {
    width: 84px;
    height: 84px;
    left: auto;
    right: 16px;
    bottom: 16px;
  }
  .event-card {
    gap: 18px;
  }
  .welcome-img-2 {
    width: 50%;
    right: -10px;
  }
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.cta-band {
  background: var(--ivory);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.about-intro-img {
  width: 100%;
  aspect-ratio: 4/4.7;
  box-shadow: var(--shadow-lift);
}

.about-stats {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-n {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
}

.about-stat-l {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

.value-card {
  padding: clamp(28px, 2.4vw, 38px);
}

.value-mark {
  display: block;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 26px;
}

.value-desc {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 12px;
}

.timeline {
  position: relative;
  margin-top: 12px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.tl-item {
  display: grid;
  grid-template-columns: 76px 32px 1fr;
  align-items: start;
  gap: 0;
  padding: 22px 0;
  position: relative;
}

.tl-year {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-deep);
  text-align: right;
  padding-right: 4px;
  line-height: 1.4;
}

.tl-dot {
  width: 11px;
  height: 11px;
  background: var(--ivory);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
  margin: 9px auto 0;
  z-index: 2;
  position: relative;
}

.tl-body h3 {
  margin-bottom: 8px;
}

.tl-desc {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.clergy-solo {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.clergy-solo .clergy-card {
  width: clamp(220px, 28vw, 300px);
}

.clergy-card {
  text-align: center;
}

.clergy-img {
  width: 100%;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}

.clergy-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--navy);
}

.clergy-role {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
  display: block;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  max-width: 1040px;
  margin-inline: auto;
}

.ministry-card {
  text-align: center;
}

.ministry-img {
  width: 100%;
  aspect-ratio: 1/1.1;
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
}

.ministry-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.schedule-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.schedule-head {
  margin-bottom: 30px;
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 4px;
  border-top: 1px solid var(--line);
}
.schedule-row:last-child {
  border-bottom: 1px solid var(--line);
}

.schedule-time {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  color: var(--navy);
  width: 158px;
  flex: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.schedule-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.schedule-day {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.schedule-note {
  font-size: 16.5px;
  color: var(--navy-soft);
}

.schedule-flag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 6px 14px;
}

.schedule-card {
  padding: clamp(28px, 2.6vw, 40px);
  position: sticky;
  top: 100px;
}

.weekday-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.weekday-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.weekday-list li:last-child {
  border-bottom: none;
}

.weekday-day {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.weekday-time {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.schedule-note-box {
  margin-top: 20px;
  padding: 20px;
  background: var(--ivory-warm);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
}

.schedule-note-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}

.schedule-note-box p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
}

.devotions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.devotion-card {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.devotion-diamond {
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 22px;
}

.devotion-title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 12px;
}

.devotion-when {
  display: block;
  color: var(--gold-soft);
  font-size: 15.5px;
  font-weight: 500;
}

.devotion-extra {
  display: block;
  color: var(--stone-light);
  font-size: 14px;
  margin-top: 5px;
}

.visiting {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.visiting-img {
  width: 100%;
  aspect-ratio: 4/4.4;
  box-shadow: var(--shadow-lift);
}

.visiting-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.visiting-list li {
  position: relative;
  padding: 0 0 20px 30px;
  color: var(--stone);
  font-size: 16.5px;
  line-height: 1.6;
}
.visiting-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.visiting-list li strong {
  color: var(--navy);
  font-weight: 600;
}

.sac-group {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.sac-group:last-child {
  margin-bottom: 0;
}

.sac-group-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.sac-group-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-deep);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: none;
}

.sac-group-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.sac-detail-list {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
}

.sac-detail {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr;
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(28px, 2.6vw, 40px);
  align-items: center;
}

.sac-detail-desc {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 12px;
}

.sac-detail-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 2.5vw, 40px);
}

.sac-detail-meta {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.5;
}

.sac-detail-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.sac-detail-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.rcia-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}

.rcia-img {
  width: 100%;
  aspect-ratio: 4/4.5;
  box-shadow: var(--shadow-lift);
}

.min-cat {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.min-cat:last-child {
  margin-bottom: 0;
}

.min-cat-head {
  margin-bottom: 28px;
}

.min-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 1.8vw, 26px);
}

.min-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.min-img {
  width: 100%;
  aspect-ratio: 5/3.4;
}

.min-body {
  padding: 26px clamp(22px, 2vw, 30px) 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.min-desc {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
  flex: 1;
}

.min-link {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  align-self: flex-start;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.min-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.feat-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.feat-img {
  width: 100%;
  aspect-ratio: 4/3.2;
  box-shadow: var(--shadow-lift);
}

.feat-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.feat-meta {
  display: flex;
  gap: 40px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.feat-meta span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 16px;
  color: var(--navy-soft);
}

.feat-meta-k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.events-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.filter-chip.active {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-row {
  display: grid;
  grid-template-columns: 90px 1fr auto 40px;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  padding: 22px clamp(22px, 2.4vw, 32px);
}

.event-row-date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 16px;
}

.event-row-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-row-title {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.event-row-loc {
  font-size: 14.5px;
  color: var(--stone);
}

.event-row-time {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}

.event-row-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 18px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.event-row-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateX(3px);
}

.event-row[hidden] {
  display: none !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-info-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact-info-k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 3px;
}

.contact-info-v {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 17px;
  color: var(--navy);
}

.contact-map {
  margin-top: 30px;
}

.contact-map-img {
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrap {
  padding: clamp(30px, 3.4vw, 48px);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder, .field select::placeholder {
  color: var(--stone-light);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.14);
}
.field input.err, .field textarea.err, .field select.err {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(109, 31, 43, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field-err {
  font-size: 13px;
  color: var(--burgundy);
  min-height: 1em;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 18px;
  top: 44%;
  transform: translateY(-50%);
  color: var(--stone);
  pointer-events: none;
  font-size: 18px;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.contact-submit {
  width: 100%;
  margin-top: 6px;
}

.contact-fineprint {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.6;
  margin-top: 22px;
  text-align: center;
}
.contact-fineprint strong {
  color: var(--navy);
}

.contact-sent {
  text-align: center;
  padding: clamp(20px, 4vw, 50px) 10px;
}

.contact-sent-mark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
}
.contact-sent-mark .diamond {
  width: 14px;
  height: 14px;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: clamp(8px, 1.2vw, 14px);
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.gal-item.gal-wide {
  grid-column: span 2;
}
.gal-item.gal-tall {
  grid-row: span 2;
}
.gal-item .gal-thumb {
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gal-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 33, 46, 0.72) 0%, rgba(22, 33, 46, 0.12) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 2vw, 22px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gal-item:hover .gal-thumb {
  transform: scale(1.04);
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gal-item:focus-visible .gal-overlay {
  opacity: 1;
}

.gal-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.gal-caption {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .gal-grid {
    grid-auto-rows: 200px;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-intro-fig {
    max-width: 480px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ministry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .schedule-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .schedule-card {
    position: static;
  }
  .devotions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .visiting {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .visiting-fig {
    max-width: 520px;
  }
  .sac-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sac-detail-side {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 22px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .rcia-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .rcia-fig {
    max-width: 520px;
  }
  .min-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-event {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clergy-solo .clergy-card {
    width: clamp(180px, 60vw, 260px);
  }
  .devotions-grid {
    grid-template-columns: 1fr;
  }
  .min-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 64px;
  }
  .tl-item {
    grid-template-columns: 54px 28px 1fr;
  }
  .tl-year {
    font-size: 21px;
  }
  .schedule-row {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .schedule-time {
    width: auto;
  }
  .event-row {
    grid-template-columns: 70px 1fr;
    grid-template-areas: "date body" "time time";
    row-gap: 14px;
  }
  .event-row .event-row-date {
    grid-area: date;
  }
  .event-row .event-row-body {
    grid-area: body;
  }
  .event-row .event-row-time {
    grid-area: time;
  }
  .event-row .event-row-link {
    display: none;
  }
  .contact-info-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .feat-meta {
    gap: 24px;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gal-item.gal-wide {
    grid-column: span 2;
  }
  .gal-item.gal-tall {
    grid-row: span 2;
  }
}
