:root {
  --forest-950: #102f2a;
  --forest-800: #1a4d45;
  --forest-700: #25635a;
  --coral: #e87b62;
  --coral-deep: #c95c46;
  --gold: #d7ad63;
  --paper: #fbfcfa;
  --mist: #edf3f0;
  --line: #d5e1dc;
  --ink: #17322f;
  --muted: #526864;
  --shadow: 0 20px 45px rgba(16, 47, 42, 0.13);
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; }

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

button { font: inherit; }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus { top: 20px; }

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(16, 47, 42, 0.98);
  box-shadow: 0 4px 20px rgba(6, 26, 22, 0.18);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand, .footer-brand { flex: 0 0 auto; }

.brand img { width: 172px; filter: brightness(0) invert(1); }

.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }

.nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-trigger:hover, .nav-trigger:focus-visible, .nav-item.is-current .nav-trigger { color: var(--gold); }
.nav-trigger:focus-visible, .nav-panel a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.nav-item.is-open .nav-chevron { transform: translateY(3px) rotate(225deg); }

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 12;
  display: grid;
  width: max-content;
  min-width: 292px;
  max-width: 350px;
  padding: 17px 18px 18px;
  border: 1px solid rgba(215, 173, 99, 0.42);
  background: #fff;
  box-shadow: 0 18px 34px rgba(6, 26, 22, 0.2);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  visibility: hidden;
}

.nav-item:last-child .nav-panel { right: 0; left: auto; }
.nav-item.is-open .nav-panel { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.nav-panel-label { margin: 0 0 10px; color: var(--forest-700); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.nav-panel ul { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 3px; margin: 0; padding: 0; list-style: none; }
.nav-panel a { display: block; padding: 10px; color: var(--ink); text-decoration: none; transition: background-color 160ms ease, color 160ms ease; }
.nav-panel a:hover, .nav-panel a:focus-visible, .nav-panel a[aria-current="page"], .nav-panel a.is-section-active { background: var(--mist); color: var(--forest-800); }
.nav-panel a > span, .nav-panel a > small { display: block; }
.nav-panel a > span { font-size: 14px; font-weight: 700; line-height: 1.35; }
.nav-panel a > small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-950);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: -12px;
  background: url("../images/worship.jpg") 50% 42% / cover no-repeat;
  content: "";
  animation: hero-settle 900ms ease-out both;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 47, 42, 0.58);
}

.hero-content { position: relative; z-index: 2; padding-bottom: 112px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow.dark { color: var(--forest-700); }

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

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.27;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 58px;
}

h2 { margin-bottom: 18px; font-size: 36px; }

h3 { margin-bottom: 10px; font-size: 20px; }

.hero-copy { max-width: 560px; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); font-size: 18px; }

.hero-actions, .watch-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-coral { background: var(--coral); color: #fff; }
.button-coral:hover, .button-coral:focus-visible { background: var(--coral-deep); }
.button-light { background: #fff; color: var(--forest-950); }
.button-light:hover, .button-light:focus-visible { background: var(--mist); }
.button-forest { background: var(--forest-700); color: #fff; }
.button-forest:hover, .button-forest:focus-visible { background: var(--forest-950); }

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--coral);
  color: var(--forest-800);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover, .text-link:focus-visible { border-color: var(--forest-950); color: var(--forest-950); }
.text-link.light { border-color: var(--gold); color: #fff; }
.text-link.light:hover, .text-link.light:focus-visible { border-color: #fff; color: var(--gold); }

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.hero-scroll::after { display: inline-block; width: 36px; height: 1px; margin-left: 10px; background: var(--coral); content: ""; vertical-align: middle; }

.nav-item.is-current .nav-trigger { color: var(--gold); }

.page-hero {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-950);
  color: #fff;
}

.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(16, 47, 42, 0.75); }
.page-hero-content { position: relative; z-index: 1; max-width: 1180px; padding-top: 150px; padding-bottom: 76px; }
.page-hero-content h1 { max-width: 780px; margin-bottom: 17px; font-size: 46px; }
.page-hero-content > p:last-child { max-width: 710px; margin-bottom: 0; color: rgba(255, 255, 255, 0.86); font-size: 17px; }

.page-content { padding: 100px 0 114px; background: var(--paper); }
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 88px; align-items: start; }
.page-primary { min-width: 0; }
.page-block + .page-block { margin-top: 54px; padding-top: 54px; border-top: 1px solid var(--line); }
.page-block > h2 { margin-bottom: 22px; font-size: 30px; }
.prose-block { max-width: 720px; }
.prose-block p { margin-bottom: 14px; color: var(--muted); }

.page-schedule-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.page-schedule-item { min-height: 145px; padding: 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background-color 180ms ease, transform 180ms ease; }
.page-schedule-item:hover { background: var(--mist); transform: translateY(-3px); }
.page-schedule-item h3 { margin-bottom: 7px; font-size: 16px; }
.page-schedule-item p { margin-bottom: 2px; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; }
.page-schedule-item span { color: var(--muted); font-size: 13px; }

.page-aside { position: sticky; top: 106px; padding: 30px; border-top: 5px solid var(--coral); background: var(--mist); }
.page-aside > p { margin-bottom: 12px; color: var(--forest-700); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.page-aside h2 { margin-bottom: 13px; font-size: 24px; }
.page-aside > span { display: block; margin-bottom: 26px; color: var(--muted); font-size: 14px; }

.page-card-section { margin-top: 82px; }
.page-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.page-link-card { min-height: 280px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.page-link-card:hover { position: relative; z-index: 1; background: var(--mist); box-shadow: var(--shadow); transform: translateY(-4px); }
.page-link-card a { display: flex; height: 100%; flex-direction: column; padding: 28px; text-decoration: none; }
.page-link-card p { margin-bottom: 26px; color: var(--coral); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.page-link-card h2 { margin-bottom: 13px; font-size: 23px; }
.page-link-card span { color: var(--muted); font-size: 14px; }
.page-link-card b { margin-top: auto; padding-top: 21px; color: var(--forest-800); font-size: 14px; }
.page-link-card b i { margin-left: 5px; color: var(--coral); font-size: 18px; font-style: normal; }

.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 110px 1fr; gap: 28px; padding: 0 0 30px; }
.timeline li + li { padding-top: 30px; border-top: 1px solid var(--line); }
.timeline li > p { margin: 0; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 15px; font-weight: 700; }
.timeline h3 { margin-bottom: 6px; font-size: 19px; }
.timeline span { color: var(--muted); font-size: 14px; }

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

.archive-hero {
  padding: 154px 0 82px;
  background: var(--forest-950);
  color: #fff;
}

.archive-hero-content { max-width: 790px; }
.archive-hero h1 { max-width: 650px; margin-bottom: 18px; font-size: 46px; }
.archive-hero-content > p:not(.eyebrow) { max-width: 650px; margin-bottom: 28px; color: rgba(255, 255, 255, 0.78); }
.archive-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; max-width: 620px; border: 1px solid rgba(255, 255, 255, 0.46); background: #fff; }
.archive-search input { min-width: 0; padding: 14px 16px; border: 0; color: var(--ink); font: inherit; font-size: 15px; outline: none; }
.archive-search input:focus { box-shadow: inset 0 0 0 2px var(--gold); }
.archive-search button { padding: 0 20px; border: 0; background: var(--coral); color: #fff; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: background-color 160ms ease; }
.archive-search button:hover, .archive-search button:focus-visible { background: var(--coral-deep); }

.archive-main { min-height: 600px; padding: 0 0 110px; background: var(--paper); }
.archive-type-bar { display: flex; gap: 0; overflow-x: auto; border-bottom: 1px solid var(--line); }
.archive-type-bar a { display: inline-flex; min-height: 62px; flex: 0 0 auto; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 3px solid transparent; color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease; }
.archive-type-bar a:hover, .archive-type-bar a:focus-visible, .archive-type-bar a[aria-current="page"] { border-color: var(--coral); background: #fff; color: var(--forest-800); }
.archive-type-bar span { color: var(--coral-deep); font-family: "DM Sans", sans-serif; font-size: 12px; }

.archive-directory, .archive-results { padding-top: 72px; }
.archive-directory .section-heading { margin-bottom: 34px; }
.archive-directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.archive-directory-card { display: flex; min-height: 192px; flex-direction: column; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.archive-directory-card:hover, .archive-directory-card:focus-visible { position: relative; z-index: 1; background: var(--mist); box-shadow: var(--shadow); transform: translateY(-4px); }
.archive-directory-card > span { color: var(--forest-800); font-size: 15px; font-weight: 700; }
.archive-directory-card strong { margin: 6px 0 auto; color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 36px; line-height: 1; }
.archive-directory-card b, .archive-item b { padding-top: 16px; color: var(--forest-800); font-size: 13px; }
.archive-directory-card b i, .archive-item b i { margin-left: 5px; color: var(--coral); font-size: 17px; font-style: normal; }

.archive-results-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.archive-results-heading .eyebrow { margin-bottom: 10px; }
.archive-results-heading h2 { margin-bottom: 0; font-size: 30px; }
.archive-results-heading > span { flex: 0 0 auto; color: var(--muted); font-size: 14px; }
.archive-item-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.archive-item { min-height: 250px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.archive-item:hover { position: relative; z-index: 1; background: var(--mist); box-shadow: var(--shadow); transform: translateY(-4px); }
.archive-item a { display: block; height: 100%; text-decoration: none; }
.archive-item-image { aspect-ratio: 16 / 8.4; overflow: hidden; background: var(--mist); }
.archive-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 280ms ease; }
.archive-item:hover .archive-item-image img { transform: scale(1.045); }
.archive-item-content { display: flex; min-height: 248px; height: 100%; flex-direction: column; padding: 25px; }
.archive-item.has-image .archive-item-content { min-height: 220px; }
.archive-item p { margin-bottom: 18px; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.archive-item p span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; letter-spacing: 0; }
.archive-item h3 { display: -webkit-box; margin-bottom: 10px; overflow: hidden; font-size: 19px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.archive-item-fact { display: block; margin: -3px 0 8px; color: var(--forest-700); font-size: 12px; line-height: 1.5; }
.archive-item-content > span { display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.archive-item b { margin-top: auto; }
.archive-empty { padding: 72px 24px; border: 1px solid var(--line); background: var(--mist); text-align: center; }
.archive-empty h2 { margin-bottom: 8px; font-size: 24px; }
.archive-empty p { margin-bottom: 0; color: var(--muted); }
.archive-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 38px; }
.archive-pagination a { min-width: 70px; padding: 8px 10px; border: 1px solid var(--line); color: var(--forest-800); font-size: 14px; font-weight: 700; text-align: center; text-decoration: none; transition: background-color 160ms ease, color 160ms ease; }
.archive-pagination a:hover, .archive-pagination a:focus-visible { background: var(--forest-800); color: #fff; }
.archive-pagination span { color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 14px; }

.article-header { padding: 154px 0 76px; background: var(--mist); }
.article-header-content { max-width: 870px; }
.article-back { display: inline-flex; margin-bottom: 34px; border-bottom: 1px solid var(--coral); color: var(--forest-800); font-size: 14px; font-weight: 700; text-decoration: none; }
.article-header .eyebrow { margin-bottom: 15px; color: var(--coral-deep); }
.article-header h1 { max-width: 850px; margin-bottom: 19px; color: var(--ink); font-size: 46px; }
.article-header p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 88px; padding: 78px 0 96px; align-items: start; }
.article-body { min-width: 0; color: var(--ink); font-size: 16px; }
.article-body > :first-child { margin-top: 0; }
.article-body h2, .article-body h3, .article-body h4 { margin: 38px 0 14px; color: var(--ink); }
.article-body h2 { font-size: 30px; }
.article-body h3 { font-size: 23px; }
.article-body p, .article-body ul, .article-body ol, .article-body blockquote { max-width: 750px; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 23px; }
.article-body li + li { margin-top: 7px; }
.article-body a { color: var(--forest-800); text-decoration-color: var(--coral); text-underline-offset: 4px; }
.article-body blockquote { margin-left: 0; padding: 18px 22px; border-left: 4px solid var(--coral); background: var(--mist); color: var(--forest-800); font-weight: 600; }
.article-media { margin: 0 0 30px; background: var(--mist); }
.article-media img { width: 100%; max-height: 540px; object-fit: cover; }
.article-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin: 0 0 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-facts > div { min-height: 88px; padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.article-facts dt { margin-bottom: 5px; color: var(--forest-700); font-size: 12px; font-weight: 700; }
.article-facts dd { margin: 0; color: var(--ink); font-size: 14px; }
.article-video, .article-embed { position: relative; width: 100%; margin: 0 0 30px; aspect-ratio: 16 / 9; background: var(--forest-950); }
.article-video iframe, .article-embed iframe { position: absolute; width: 100%; height: 100%; border: 0; }
.article-audio { margin: 0 0 30px; padding: 20px; border-left: 4px solid var(--gold); background: var(--mist); }
.article-audio p { margin: 0 0 9px; color: var(--forest-800); font-size: 14px; font-weight: 700; }
.article-audio audio { display: block; width: 100%; }
.article-document { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin: 0 0 30px; padding: 16px 18px; border: 1px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; transition: background-color 160ms ease, border-color 160ms ease; }
.article-document:hover, .article-document:focus-visible { border-color: var(--forest-700); background: var(--mist); }
.article-document span { display: inline-grid; width: 38px; height: 38px; place-items: center; background: var(--coral); color: #fff; font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; }
.article-document strong { font-size: 14px; }
.article-document i { color: var(--forest-800); font-size: 21px; font-style: normal; }
.article-aside { position: sticky; top: 106px; padding: 28px; border-top: 5px solid var(--gold); background: var(--forest-950); color: #fff; }
.article-aside > p { margin-bottom: 10px; color: var(--gold); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }
.article-aside h2 { margin-bottom: 12px; font-size: 23px; }
.article-aside > span { display: block; margin-bottom: 24px; color: rgba(255, 255, 255, 0.72); font-size: 14px; }
.related-section { padding: 76px 0 98px; background: var(--mist); }
.related-section h2 { margin-bottom: 30px; font-size: 30px; }
.related-grid .archive-item { min-height: 205px; }

.calendar-hero { padding: 154px 0 82px; background: var(--forest-800); color: #fff; }
.calendar-hero-content { max-width: 760px; }
.calendar-hero h1 { max-width: 680px; margin-bottom: 17px; font-size: 46px; }
.calendar-hero p:not(.eyebrow) { max-width: 620px; margin-bottom: 0; color: rgba(255, 255, 255, 0.78); }
.calendar-main { min-height: 600px; padding: 74px 0 112px; background: var(--paper); }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.calendar-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.calendar-filters button { min-height: 40px; padding: 8px 14px; border: 1px solid var(--line); background: #fff; color: var(--forest-800); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease; }
.calendar-filters button:hover, .calendar-filters button:focus-visible, .calendar-filters button.is-active { border-color: var(--forest-800); background: var(--forest-800); color: #fff; }
.calendar-search { width: min(100%, 290px); }
.calendar-search input { width: 100%; min-height: 42px; padding: 9px 13px; border: 1px solid var(--line); background: #fff; color: var(--ink); font: inherit; font-size: 14px; outline: none; }
.calendar-search input:focus { border-color: var(--forest-800); box-shadow: 0 0 0 3px rgba(37, 99, 90, 0.16); }
.calendar-summary { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; margin: 60px 0 27px; }
.calendar-summary .eyebrow { grid-column: 1 / -1; margin-bottom: -3px; }
.calendar-summary h2 { margin: 0; font-size: 31px; }
.calendar-summary > span { color: var(--muted); font-size: 14px; }
.event-list { border-top: 1px solid var(--line); }
.event-card { display: grid; grid-template-columns: 132px minmax(0, 1fr) auto; gap: 28px; align-items: center; min-height: 142px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.event-card-image { grid-row: span 2; display: block; width: 132px; height: 96px; overflow: hidden; background: var(--mist); }
.event-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.event-card:hover .event-card-image img { transform: scale(1.04); }
.event-card-date { min-width: 126px; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; }
.event-card-date strong, .event-card-date span { display: block; }
.event-card-date strong { font-size: 15px; }
.event-card-date span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.event-card-content { min-width: 0; }
.event-card-content p { margin-bottom: 5px; color: var(--forest-700); font-size: 12px; font-weight: 700; }
.event-card-content h3 { margin-bottom: 5px; font-size: 20px; line-height: 1.4; }
.event-card-content h3 a { text-decoration: none; }
.event-card-content > span { display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.event-card-link { color: var(--forest-800); font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.event-card-link i { margin-left: 5px; color: var(--coral); font-size: 17px; font-style: normal; }
.event-empty { padding: 52px 0; color: var(--muted); text-align: center; }

.sunday-section { padding: 112px 0 96px; background: var(--paper); }

.sunday-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.section-intro { max-width: 610px; }
.section-intro > p:not(.eyebrow), .section-heading > p:not(.eyebrow), .watch-content > p:not(.eyebrow), .visit-copy > p:not(.eyebrow) { color: var(--muted); }

.service-highlight { padding: 31px 34px; border-top: 5px solid var(--coral); background: var(--mist); }
.service-highlight p { margin-bottom: 4px; color: var(--forest-700); font-size: 15px; font-weight: 700; }
.service-highlight strong { display: block; margin-bottom: 5px; color: var(--forest-950); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 36px; line-height: 1.25; }
.service-highlight span { color: var(--muted); font-size: 14px; }

.schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.schedule-item { min-height: 160px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background-color 180ms ease, transform 180ms ease; }
.schedule-item:hover { background: var(--mist); transform: translateY(-3px); }
.schedule-item h3 { font-size: 16px; }
.schedule-item p { margin-bottom: 2px; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 19px; font-weight: 700; }
.schedule-item span { color: var(--muted); font-size: 14px; }

.verse-band { padding: 94px 0; background: var(--forest-950); color: #fff; }
.verse-layout { max-width: 840px; text-align: center; }
.verse-layout blockquote { margin: 0 auto 22px; font-size: 26px; font-weight: 500; line-height: 1.65; }
.verse-layout cite { color: var(--gold); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 14px; font-style: normal; font-weight: 700; }

.ministry-section { padding: 110px 0 120px; background: var(--mist); }
.section-heading { max-width: 620px; margin-bottom: 48px; }
.ministry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ministry-card { background: #fff; box-shadow: 0 1px 0 rgba(16, 47, 42, 0.08); transition: box-shadow 180ms ease, transform 180ms ease; }
.ministry-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.ministry-card > a { display: block; height: 100%; text-decoration: none; }
.ministry-image { height: 240px; overflow: hidden; background: var(--forest-800); }
.ministry-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.ministry-card:hover .ministry-image img { transform: scale(1.045); }
.ministry-content { padding: 25px 26px 28px; }
.card-number { margin-bottom: 15px; color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.ministry-content > p:not(.card-number) { min-height: 82px; margin-bottom: 20px; color: var(--muted); font-size: 14px; }
.card-link { color: var(--forest-800); font-size: 14px; font-weight: 700; }
.card-link b { margin-left: 6px; color: var(--coral); font-size: 18px; }

.watch-section { padding: 110px 0; background: var(--forest-800); color: #fff; }
.watch-layout { display: grid; grid-template-columns: 1fr 0.94fr; gap: 90px; align-items: center; }
.watch-image { position: relative; }
.watch-image::after { position: absolute; right: -20px; bottom: -20px; z-index: 0; width: 55%; height: 55%; border: 1px solid rgba(215, 173, 99, 0.65); content: ""; }
.watch-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.watch-content { max-width: 500px; }
.watch-content > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.75); }

.visit-section { padding: 112px 0; background: var(--paper); }
.visit-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: 95px; align-items: center; }
.visit-copy { max-width: 620px; }
.contact-panel { padding: 36px; border: 1px solid var(--line); border-top: 5px solid var(--gold); background: #fff; box-shadow: var(--shadow); }
.contact-panel dl { margin: 0 0 28px; }
.contact-panel dl > div + div { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-panel dt { margin-bottom: 5px; color: var(--muted); font-size: 13px; font-weight: 700; }
.contact-panel dd { margin: 0; font-size: 15px; }
.contact-panel dd a { color: var(--forest-800); text-decoration-color: var(--coral); text-underline-offset: 4px; }

.anchor-section, .nextgen-card { scroll-margin-top: 82px; }

.about-section { padding: 124px 0; background: #fff; }
.about-layout { display: grid; grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr); gap: 92px; align-items: center; }
.about-image { position: relative; aspect-ratio: 4 / 5; background: var(--forest-950); }
.about-image::after { position: absolute; right: -18px; bottom: -18px; width: 45%; height: 45%; border: 1px solid var(--gold); content: ""; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { max-width: 660px; }
.about-copy h2, .vision-heading h2, .leaders-heading h2, .story-intro h2, .resources-intro h2, .giving-intro h2 { margin-bottom: 18px; font-size: 40px; }
.about-lead { margin-bottom: 32px; color: var(--forest-800); font-size: 18px; font-weight: 600; line-height: 1.75; }
.about-prose + .about-prose { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-prose h3 { margin-bottom: 8px; font-size: 19px; }
.about-prose p { margin-bottom: 8px; color: var(--muted); font-size: 15px; }
.section-anchor-links { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 32px; }
.section-anchor-links a { border-bottom: 1px solid var(--coral); color: var(--forest-800); font-size: 14px; font-weight: 700; text-decoration: none; }
.section-anchor-links i { margin-left: 4px; color: var(--coral); font-size: 16px; font-style: normal; }

.vision-section { padding: 112px 0; background: var(--forest-950); color: #fff; }
.vision-heading { max-width: 760px; margin-bottom: 58px; }
.vision-heading > p:not(.eyebrow) { max-width: 640px; margin-bottom: 0; color: rgba(255, 255, 255, 0.72); }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.22); border-left: 1px solid rgba(255, 255, 255, 0.22); }
.vision-pillar { min-height: 268px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.22); border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.vision-pillar > span { display: block; margin-bottom: 42px; color: var(--gold); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.vision-pillar h3 { margin-bottom: 12px; font-size: 25px; }
.vision-pillar p { margin-bottom: 0; color: rgba(255, 255, 255, 0.74); font-size: 15px; }

.leaders-section { padding: 112px 0; background: var(--mist); }
.leaders-heading { max-width: 690px; margin-bottom: 48px; }
.leaders-heading > p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.leader-profiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; overflow: visible; border: 0; background: transparent; }
.leader-profile { min-width: 0; }
.leader-profile-team { display: flex; min-height: 360px; flex-direction: column; padding: 32px; border: 1px solid var(--line); background: #fff; box-shadow: 0 8px 22px rgba(16, 47, 42, 0.06); }
.leader-profile-marker { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.leader-profile-marker > span { color: var(--coral-deep); font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }
.leader-profile-marker > p { margin: 0; color: var(--forest-700); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; line-height: 1.4; }
.leader-role { margin: 0 0 8px; color: var(--coral-deep); font-size: 14px; font-weight: 700; }
.leader-profile-team .leader-profile-intro { margin-top: 28px; }
.leader-profile h3 { margin: 0; font-size: 29px; line-height: 1.35; }
.leader-profile h3 span { font-size: 17px; font-weight: 500; }
.leader-english-name { margin: 5px 0 0; color: var(--muted); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.leader-profile-detail { min-width: 0; }
.leader-profile-team .leader-profile-detail { display: flex; flex: 1; flex-direction: column; margin-top: 24px; }
.leader-facts { margin: 0; border-top: 1px solid var(--line); }
.leader-facts > div { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.leader-facts dt { color: var(--forest-800); font-size: 13px; font-weight: 700; }
.leader-facts dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Every leadership card presents the same concise overview, with the full
   biography available through native, keyboard-accessible details controls. */
.leader-bio-lead { color: var(--muted); }
.leader-profile-summary { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.leader-profile-story {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.leader-profile-story summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--forest-800);
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.leader-profile-story summary::-webkit-details-marker { display: none; }
.leader-profile-story summary::marker { content: ""; }
.leader-profile-story summary i {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.leader-profile-story summary:hover,
.leader-profile-story summary:focus-visible { color: var(--coral-deep); outline: none; }
.leader-profile-story summary:focus-visible i { box-shadow: 0 0 0 3px rgba(201, 92, 70, 0.2); }
.leader-profile-story[open] summary i { background: var(--coral); border-color: var(--coral); color: #fff; transform: rotate(45deg); }
.leader-profile-story > div { margin-top: 15px; }
.leader-profile-story > div p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.leader-profile-story > div p + p { margin-top: 11px; }
.leader-profile-story-content { min-width: 0; overflow-wrap: anywhere; }
.leader-profile-language { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.leader-profile-language-label { margin-bottom: 8px !important; color: var(--forest-700) !important; font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 11px !important; font-weight: 700; letter-spacing: 0.08em; }
.leader-profile-team .leader-profile-story { margin-top: auto; }

.story-section { padding: 116px 0; background: #fff; }
.story-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 110px; align-items: start; }
.story-intro { position: sticky; top: 116px; }
.story-intro > p:not(.eyebrow) { color: var(--muted); }
.story-timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.story-timeline li { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 32px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.story-timeline li > p { margin: 0; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 15px; font-weight: 700; }
.story-timeline h3 { margin-bottom: 6px; font-size: 20px; }
.story-timeline span { color: var(--muted); font-size: 14px; line-height: 1.75; }

.nextgen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nextgen-card { min-height: 100%; padding: 29px; border-top: 5px solid var(--coral); background: #fff; box-shadow: 0 1px 0 rgba(16, 47, 42, 0.08); transition: box-shadow 180ms ease, transform 180ms ease; }
.nextgen-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.nextgen-card > p { margin-bottom: 16px; color: var(--forest-700); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.nextgen-card h3 { margin-bottom: 13px; font-size: 26px; }
.nextgen-intro { display: block; min-height: 102px; color: var(--muted); font-size: 14px; }
.nextgen-card dl { margin: 24px 0; border-top: 1px solid var(--line); }
.nextgen-card dl > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.nextgen-card dt { margin-bottom: 3px; color: var(--forest-800); font-size: 13px; font-weight: 700; }
.nextgen-card dd { margin: 0; color: var(--muted); font-size: 14px; }
.nextgen-notes { margin-top: 18px; }
.nextgen-notes h4 { margin-bottom: 7px; font-size: 15px; }
.nextgen-notes p { margin-bottom: 7px; color: var(--muted); font-size: 13px; }

.archive-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.archive-teaser { min-height: 226px; background: #fff; }
.archive-teaser a { display: flex; height: 100%; flex-direction: column; color: var(--ink); text-decoration: none; }
.archive-teaser img { width: 100%; height: 138px; object-fit: cover; }
.archive-teaser p, .archive-teaser h3, .archive-teaser > a > span, .archive-teaser b { margin-right: 22px; margin-left: 22px; }
.archive-teaser p { margin-top: 20px; margin-bottom: 9px; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 13px; font-weight: 700; }
.archive-teaser h3 { margin-bottom: 13px; font-size: 19px; }
.archive-teaser > a > span { display: block; margin-bottom: 21px; color: var(--muted); font-size: 14px; }
.archive-teaser > a > span i, .archive-teaser b i { margin-left: 5px; color: var(--coral); font-size: 17px; font-style: normal; }
.archive-teaser b { margin-top: auto; margin-bottom: 22px; color: var(--forest-800); font-size: 13px; }
.sermon-teasers { padding-bottom: 6px; }
.watch-section .archive-teaser { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18); }
.watch-section .archive-teaser:hover { box-shadow: 0 16px 30px rgba(5, 25, 22, 0.28); transform: translateY(-4px); }

.news-section { padding: 112px 0; background: #fff; }
.news-heading { display: flex; align-items: end; justify-content: space-between; gap: 34px; }
.news-heading > div { max-width: 670px; }
.news-heading h2 { margin-bottom: 14px; font-size: 40px; }
.news-heading > div > p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.news-teasers { margin-top: 45px; }
.news-teasers .archive-teaser { min-height: 245px; border: 1px solid var(--line); transition: box-shadow 180ms ease, transform 180ms ease; }
.news-teasers .archive-teaser:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.calendar-preview { padding: 112px 0; background: var(--forest-800); color: #fff; }
.calendar-preview-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.calendar-preview-heading > div { max-width: 680px; }
.calendar-preview-heading h2 { margin-bottom: 14px; font-size: 40px; }
.calendar-preview-heading p:not(.eyebrow) { margin-bottom: 0; color: rgba(255, 255, 255, 0.74); }
.event-preview-list { border-top: 1px solid rgba(255, 255, 255, 0.24); }
.event-preview { display: grid; grid-template-columns: 116px 140px minmax(0, 1fr) auto; gap: 26px; align-items: center; min-height: 136px; padding: 19px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
.event-preview > img { width: 116px; height: 84px; object-fit: cover; }
.event-preview-date strong, .event-preview-date span { display: block; }
.event-preview-date strong { color: var(--gold); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 15px; }
.event-preview-date span { margin-top: 4px; color: rgba(255, 255, 255, 0.8); font-size: 13px; }
.event-preview p { margin-bottom: 4px; color: var(--gold); font-size: 13px; font-weight: 700; }
.event-preview h3 { margin: 0; font-size: 21px; }
.event-preview > a { color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.event-preview > a i { margin-left: 5px; color: var(--gold); font-size: 17px; font-style: normal; }

.resources-section { padding: 112px 0; background: var(--mist); }
.resources-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 86px; align-items: center; }
.resources-intro > p:not(.eyebrow) { color: var(--muted); }
.resource-grid { border-top: 1px solid var(--line); }
.resource-link { position: relative; display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; gap: 22px; align-items: center; min-height: 100px; padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: color 160ms ease, transform 160ms ease; }
.resource-link:hover, .resource-link:focus-visible { color: var(--forest-700); transform: translateX(5px); }
.resource-link p { margin: 0; color: var(--coral-deep); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; }
.resource-link h3 { margin-bottom: 5px; font-size: 19px; }
.resource-link span { color: var(--muted); font-size: 13px; }
.resource-link b { color: var(--coral); font-size: 21px; }

.giving-section { padding: 112px 0; background: var(--forest-950); color: #fff; }
.giving-layout { display: grid; grid-template-columns: 0.84fr 1.16fr; gap: 90px; align-items: start; }
.giving-intro > p:not(.eyebrow) { margin-bottom: 28px; color: rgba(255, 255, 255, 0.74); }
.giving-notes { border-top: 1px solid rgba(255, 255, 255, 0.24); }
.giving-notes > div { padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
.giving-notes h3 { margin-bottom: 10px; color: var(--gold); font-size: 20px; }
.giving-notes p { margin-bottom: 8px; color: rgba(255, 255, 255, 0.76); font-size: 14px; }

.site-footer { padding: 52px 0 24px; background: #0b2521; color: #fff; }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-top { padding-bottom: 42px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.footer-brand img { width: 165px; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a, .footer-bottom { color: rgba(255, 255, 255, 0.86); font-family: "DM Sans", "Noto Sans KR", sans-serif; font-size: 14px; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible, .footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--gold); }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms ease, transform 560ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1.02); }
}

@media (max-width: 900px) {
  .hero { min-height: 650px; }
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  .sunday-layout, .watch-layout, .visit-layout { gap: 48px; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .ministry-image { height: 205px; }
  .page-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 42px; }
  .page-card-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-directory-grid { grid-template-columns: repeat(3, 1fr); }
  .archive-item-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 250px; gap: 42px; }
  .event-card { gap: 20px; }
  .about-layout { gap: 54px; }
  .story-layout { gap: 68px; }
  .resources-layout, .giving-layout { gap: 58px; }
  .nextgen-card { padding: 24px; }
  .event-preview { grid-template-columns: 104px 120px minmax(0, 1fr) auto; gap: 19px; }
  .event-preview > img { width: 104px; height: 76px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 151px; }
  .menu-toggle { display: inline-grid !important; position: relative; z-index: 2; min-width: 69px; grid-template-columns: auto 16px; gap: 4px 8px; align-items: center; padding: 8px 0; border: 0; background: transparent; color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; }
  .menu-toggle i { display: block; width: 16px; height: 1px; grid-column: 2; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle i:first-of-type { align-self: end; }
  .menu-toggle i:last-of-type { align-self: start; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
  body.menu-is-open { overflow: hidden; }
  .site-nav { position: fixed; top: 70px; right: 0; bottom: 0; left: 0; height: calc(100dvh - 70px); max-height: none; overflow-y: auto; overscroll-behavior: contain; background: var(--forest-950); box-shadow: 0 18px 28px rgba(6, 26, 22, 0.24); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; visibility: hidden; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
  .nav-list { display: block; min-height: 100%; padding: 14px 16px calc(34px + env(safe-area-inset-bottom)); }
  .nav-item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .nav-trigger { display: flex; width: 100%; min-height: 52px; justify-content: space-between; padding: 12px 4px; color: #fff; font-size: 16px; text-align: left; }
  .nav-trigger:hover, .nav-trigger:focus-visible, .nav-item.is-current .nav-trigger { color: var(--gold); }
  .nav-panel { position: static; display: grid; width: auto; min-width: 0; max-width: none; grid-template-rows: 0fr; padding: 0; border: 0; background: transparent; box-shadow: none; color: #fff; opacity: 1; pointer-events: auto; transform: none; transition: grid-template-rows 220ms ease, padding 220ms ease; visibility: visible; }
  .nav-panel-label { display: none; }
  .nav-panel ul { display: grid; min-height: 0; grid-template-columns: 1fr; gap: 2px; overflow: hidden; }
  .nav-item.is-open .nav-panel { grid-template-rows: 1fr; padding: 0 0 14px; }
  .nav-panel a { padding: 9px 12px; color: rgba(255, 255, 255, 0.92); border-left: 2px solid rgba(215, 173, 99, 0.45); }
  .nav-panel a:hover, .nav-panel a:focus-visible, .nav-panel a[aria-current="page"], .nav-panel a.is-section-active { background: rgba(255, 255, 255, 0.08); color: #fff; }
  .nav-panel a > span { font-size: 14px; }
  .nav-panel a > small { color: rgba(255, 255, 255, 0.62); font-size: 11px; }
  .hero { min-height: 610px; }
  .hero-content { padding-bottom: 85px; }
  h1 { font-size: 39px; }
  h2 { font-size: 29px; }
  .hero-copy { font-size: 16px; }
  .hero-scroll { display: none; }
  .sunday-section, .ministry-section, .watch-section, .visit-section, .about-section, .vision-section, .leaders-section, .story-section, .news-section, .calendar-preview, .resources-section, .giving-section { padding: 78px 0; }
  .sunday-layout, .watch-layout, .visit-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-highlight { padding: 25px; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-item { min-height: 145px; padding: 20px 17px; }
  .verse-band { padding: 70px 0; }
  .verse-layout blockquote { font-size: 21px; }
  .ministry-grid { grid-template-columns: 1fr; gap: 16px; }
  .ministry-card > a { display: grid; grid-template-columns: 42% 1fr; }
  .ministry-image { height: 100%; min-height: 210px; }
  .ministry-content > p:not(.card-number) { min-height: 0; }
  .watch-image { max-width: 570px; }
  .contact-panel { padding: 27px; }
  .page-hero { min-height: 410px; }
  .page-hero-content { padding-top: 120px; padding-bottom: 54px; }
  .page-hero-content h1 { font-size: 35px; }
  .page-hero-content > p:last-child { font-size: 15px; }
  .page-content { padding: 72px 0 84px; }
  .page-layout { grid-template-columns: 1fr; gap: 40px; }
  .page-block + .page-block { margin-top: 40px; padding-top: 40px; }
  .page-block > h2 { font-size: 27px; }
  .page-aside { position: static; padding: 26px; }
  .page-card-section { margin-top: 52px; }
  .page-card-grid { grid-template-columns: 1fr; }
  .page-link-card { min-height: 235px; }
  .page-schedule-grid { grid-template-columns: 1fr; }
  .archive-hero { padding: 120px 0 60px; }
  .archive-hero h1 { font-size: 35px; }
  .archive-main { padding-bottom: 78px; }
  .archive-type-bar { width: 100%; }
  .archive-type-bar a { min-height: 56px; padding: 0 13px; font-size: 13px; }
  .archive-directory, .archive-results { padding-top: 52px; }
  .archive-directory-grid, .archive-item-grid { grid-template-columns: 1fr; }
  .archive-results-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .archive-results-heading h2 { font-size: 27px; }
  .archive-item { min-height: 218px; }
  .article-header { padding: 116px 0 55px; }
  .article-header h1 { font-size: 35px; }
  .article-layout { grid-template-columns: 1fr; gap: 38px; padding: 58px 0 72px; }
  .article-aside { position: static; }
  .related-section { padding: 60px 0 72px; }
  .related-section h2 { font-size: 27px; }
  .calendar-hero { padding: 120px 0 60px; }
  .calendar-hero h1 { font-size: 35px; }
  .calendar-main { padding: 52px 0 78px; }
  .calendar-toolbar { align-items: stretch; flex-direction: column; }
  .calendar-search { width: 100%; }
  .calendar-summary { margin-top: 46px; }
  .event-card { grid-template-columns: minmax(0, 1fr) auto; gap: 9px 18px; min-height: 0; }
  .event-card-image { grid-column: 1 / -1; grid-row: auto; width: 100%; height: 180px; margin-bottom: 7px; }
  .event-card-date { grid-column: 1; min-width: 0; }
  .event-card-content { grid-column: 1; }
  .event-card-link { grid-column: 2; grid-row: 2 / span 2; align-self: center; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top { padding-bottom: 30px; }
  .anchor-section, .nextgen-card { scroll-margin-top: 70px; }
  .about-layout, .story-layout, .resources-layout, .giving-layout { grid-template-columns: 1fr; gap: 38px; }
  .about-image { width: min(100%, 510px); padding: 0 11px 11px 0; aspect-ratio: 4 / 4.6; }
  .about-image img { position: relative; z-index: 1; }
  .about-image::after { right: 0; bottom: 0; z-index: 0; pointer-events: none; }
  .about-copy h2, .vision-heading h2, .leaders-heading h2, .story-intro h2, .resources-intro h2, .giving-intro h2, .news-heading h2, .calendar-preview-heading h2 { font-size: 31px; }
  .about-lead { font-size: 16px; }
  .section-anchor-links { gap: 11px 17px; }
  .vision-heading { margin-bottom: 38px; }
  .vision-grid, .leader-grid, .nextgen-grid, .archive-teaser-grid { grid-template-columns: 1fr; }
  .leader-profiles { grid-template-columns: 1fr; gap: 14px; }
  .leader-profile-team { min-height: 0; padding: 25px; }
  .leader-profile-marker { min-height: 0; flex-direction: row; align-items: center; gap: 18px; }
  .leader-profile-marker > p { text-align: right; }
  .leader-profile-team .leader-profile-intro { margin-top: 22px; }
  .leader-profile-team .leader-profile-detail { margin-top: 20px; }
  .leader-profile h3 { font-size: 26px; }
  .vision-pillar { min-height: 0; padding: 23px; }
  .vision-pillar > span { margin-bottom: 22px; }
  .leader-card { min-height: 0; }
  .story-intro { position: static; }
  .story-timeline li { grid-template-columns: 74px minmax(0, 1fr); gap: 17px; }
  .nextgen-grid { gap: 15px; }
  .nextgen-intro { min-height: 0; }
  .archive-teaser-grid { gap: 14px; margin-top: 36px; }
  .archive-teaser { min-height: 0; }
  .watch-section .archive-teaser { max-width: none; }
  .news-heading, .calendar-preview-heading { align-items: flex-start; flex-direction: column; gap: 21px; }
  .news-teasers { margin-top: 32px; }
  .event-preview { grid-template-columns: 88px minmax(0, 1fr) auto; gap: 12px 16px; padding: 16px 0; }
  .event-preview > img { grid-row: span 2; width: 88px; height: 68px; }
  .event-preview-date { grid-column: 2; }
  .event-preview > div:not(.event-preview-date) { grid-column: 2; }
  .event-preview > a { grid-column: 3; grid-row: 1 / span 2; }
  .resource-link { grid-template-columns: 1fr auto; gap: 7px 15px; }
  .resource-link p { grid-column: 1; }
  .resource-link h3, .resource-link span { grid-column: 1; }
  .resource-link b { grid-column: 2; grid-row: 1 / span 3; }
}

@media (max-width: 430px) {
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .ministry-card > a { display: block; }
  .ministry-image { height: 220px; }
  .timeline li { grid-template-columns: 1fr; gap: 5px; }
  .timeline li > p { margin-bottom: 4px; }
  .footer-links { gap: 12px 18px; }
}

/* A continuous reading experience for the homepage.  Large displays get a
   broader content measure, but each section remains ordinary document flow. */
@media (min-width: 1100px) {
  .one-page main { overflow: visible; }
  .one-page .shell { width: min(1360px, calc(100% - clamp(64px, 8vw, 240px))); }

  .one-page .hero { min-height: clamp(620px, 74svh, 780px); }
  .one-page .hero-content { padding-bottom: clamp(86px, 11vh, 126px); }
  .one-page .hero h1 { max-width: 760px; font-size: 60px; line-height: 1.18; }
  .one-page .hero-copy { max-width: 590px; }

  .one-page .about-section,
  .one-page .vision-section,
  .one-page .leaders-section,
  .one-page .story-section,
  .one-page .sunday-section,
  .one-page .ministry-section,
  .one-page .watch-section {
    display: block;
    min-height: 0;
    padding: clamp(92px, 10vh, 132px) 0;
    overflow: visible;
  }

  .one-page .about-section::before,
  .one-page .about-section::after,
  .one-page .vision-section::before,
  .one-page .vision-section::after,
  .one-page .leaders-section::before,
  .one-page .leaders-section::after,
  .one-page .story-section::before,
  .one-page .story-section::after,
  .one-page .sunday-section::before,
  .one-page .sunday-section::after,
  .one-page .ministry-section::before,
  .one-page .ministry-section::after,
  .one-page .watch-section::before,
  .one-page .watch-section::after { display: none; }

  .one-page .about-section { background: #fff; }
  .one-page .vision-section { background: var(--forest-950); }
  .one-page .leaders-section { background: #f4f8f6; }
  .one-page .story-section { background: #fff; }
  .one-page .sunday-section { background: #f8fbfa; }
  .one-page .ministry-section { background: var(--mist); }
  .one-page .watch-section { background: var(--forest-800); }

  .one-page .about-layout { grid-template-columns: minmax(370px, 0.9fr) minmax(0, 1fr); gap: clamp(56px, 6vw, 104px); align-items: start; }
  .one-page .about-image { max-height: 560px; aspect-ratio: 5 / 4; }
  .one-page .about-image::after,
  .one-page .watch-image::after { display: none; }

  .one-page .vision-heading { max-width: 820px; margin-bottom: 48px; }
  .one-page .vision-grid { max-width: none; }
  .one-page .vision-pillar { min-height: 232px; padding: 32px; }
  .one-page .vision-pillar > span { margin-bottom: 30px; }

  .one-page .leaders-heading { max-width: 760px; margin-bottom: 40px; }
  .one-page .leader-profile-team { min-height: 390px; padding: 34px; }

  .one-page .story-layout { grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr); gap: clamp(64px, 7vw, 126px); }
  .one-page .story-timeline { max-width: none; }
  .one-page .sunday-layout,
  .one-page .watch-layout { gap: clamp(56px, 7vw, 118px); }
  .one-page .schedule-grid { box-shadow: 0 8px 24px rgba(16, 47, 42, 0.06); }
  .one-page .verse-band { min-height: 0; padding: 104px 0; }
  .one-page .nextgen-grid { gap: 24px; }
  .one-page .nextgen-card { box-shadow: 0 8px 22px rgba(16, 47, 42, 0.06); }
  .one-page .archive-teaser-grid { max-width: none; }

  .one-page .about-copy h2,
  .one-page .vision-heading h2,
  .one-page .leaders-heading h2,
  .one-page .story-intro h2,
  .one-page .section-intro h2,
  .one-page .section-heading h2,
  .one-page .watch-content h2 { font-size: 46px; }
}

@media (min-width: 721px) {
  .sermon-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.22);
  }

  .sermon-showcase .sermon-featured {
    min-height: 292px;
    grid-row: 1 / -1;
  }

  .sermon-showcase .sermon-featured > a {
    display: grid;
    grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .sermon-showcase .sermon-featured img {
    width: 100%;
    height: 100%;
    min-height: 292px;
    grid-row: 1 / -1;
    object-fit: cover;
  }

  .sermon-showcase .sermon-featured p { align-self: end; margin-top: 24px; }
  .sermon-showcase .sermon-featured h3 { align-self: start; }
  .sermon-showcase .sermon-featured p,
  .sermon-showcase .sermon-featured h3,
  .sermon-showcase .sermon-featured > a > span { grid-column: 2; }

  .sermon-showcase .sermon-compact {
    min-height: 0;
    background: var(--forest-800);
    box-shadow: none;
    transition: background-color 160ms ease;
  }

  .watch-section .sermon-compact:hover { background: #21564d; box-shadow: none; transform: none; }
  .sermon-showcase .sermon-compact > a {
    display: grid;
    min-height: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 3px 20px;
    padding: 22px 27px;
    color: #fff;
  }

  .sermon-showcase .sermon-compact img { display: none; }
  .sermon-showcase .sermon-compact p,
  .sermon-showcase .sermon-compact h3,
  .sermon-showcase .sermon-compact > a > span { margin: 0; }
  .sermon-showcase .sermon-compact p { grid-column: 1; color: var(--gold); font-size: 11px; }
  .sermon-showcase .sermon-compact h3 { grid-column: 1; grid-row: 2; color: #fff; font-size: 18px; }
  .sermon-showcase .sermon-compact > a > span {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    text-align: right;
  }
  .sermon-showcase .sermon-compact > a > span i { color: var(--gold); }
}

@media (min-width: 1100px) {
  .one-page .leaders-section,
  .one-page .story-section,
  .one-page .sunday-section { background: #fff; }
  .one-page .story-section,
  .one-page .sunday-section { border-top: 1px solid rgba(16, 47, 42, 0.08); }
  .one-page .story-intro { position: static; }

  .one-page .sunday-section { padding: 88px 0; }
  .one-page .sunday-layout { align-items: center; margin-bottom: 38px; }
  .one-page .service-highlight { padding: 24px 28px; border-top-width: 4px; box-shadow: none; }
  .one-page .service-highlight strong { font-size: 32px; }
  .one-page .schedule-item { min-height: 128px; padding: 20px 22px; }

  .one-page .sermon-showcase { margin-top: 38px; }
}

@media (min-width: 1100px) {
  .header-inner { min-height: 90px; gap: 42px; }
  .brand img { width: 188px; }
  .nav-list { gap: 7px; }
  .nav-trigger { min-height: 50px; padding: 10px 15px; font-size: 15px; }
  .nav-panel { top: calc(100% + 12px); }
}

@media (max-width: 720px) {
  .sunday-section,
  .ministry-section,
  .watch-section { padding: 62px 0; }

  .sunday-layout { gap: 24px; margin-bottom: 26px; }
  .service-highlight { padding: 20px 22px; }
  .service-highlight strong { font-size: 30px; }
  .schedule-item { min-height: 112px; padding: 17px 15px; }
  .schedule-item h3 { margin-bottom: 5px; }
  .schedule-item p { font-size: 18px; }

  .ministry-section .section-heading { margin-bottom: 30px; }
  .nextgen-grid { gap: 12px; }
  .nextgen-card { min-height: 0; padding: 21px; border-top-width: 4px; }
  .nextgen-card > p { margin-bottom: 10px; }
  .nextgen-card h3 { margin-bottom: 10px; font-size: 24px; }
  .nextgen-card dl { margin: 18px 0; }
  .nextgen-card dl > div { padding: 9px 0; }
  .nextgen-notes { margin-top: 14px; }

  .watch-layout { gap: 26px; }
  .watch-image img { aspect-ratio: 16 / 8; }
  .sermon-showcase { gap: 1px; margin-top: 28px; border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.22); }
  .sermon-showcase .sermon-featured { min-height: 0; }
  .sermon-showcase .sermon-featured img { height: 164px; }
  .sermon-showcase .sermon-featured p { margin-top: 17px; }
  .sermon-showcase .sermon-featured > a > span { margin-bottom: 17px; }

  .watch-section .sermon-compact { min-height: 0; background: #1c5048; box-shadow: none; }
  .watch-section .sermon-compact:hover { background: #1c5048; box-shadow: none; transform: none; }
  .sermon-showcase .sermon-compact img { display: none; }
  .sermon-showcase .sermon-compact > a {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 3px 18px;
    padding: 18px 20px;
    color: #fff;
  }
  .sermon-showcase .sermon-compact p,
  .sermon-showcase .sermon-compact h3,
  .sermon-showcase .sermon-compact > a > span { margin: 0; }
  .sermon-showcase .sermon-compact p { grid-column: 1; color: var(--gold); font-size: 12px; }
  .sermon-showcase .sermon-compact h3 { grid-column: 1; grid-row: 2; color: #fff; font-size: 17px; }
  .sermon-showcase .sermon-compact > a > span {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-align: right;
  }
  .sermon-showcase .sermon-compact > a > span i { color: var(--gold); }
}

/* Desktop proximity snap offers gentle section-to-section wayfinding without
   changing document height or interfering with reading long sections. */
@media (min-width: 1100px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html:has(body.one-page) {
    scroll-snap-type: y proximity;
    scroll-padding-top: 90px;
  }

  body.one-page .hero,
  body.one-page [data-snap-section] {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    scroll-margin-top: 0;
  }
}

@keyframes modern-link-cursor-pulse {
  from { box-shadow: 0 0 0 5px rgba(215, 173, 99, 0.16), 0 0 0 0 rgba(232, 123, 98, 0.62); }
  to { box-shadow: 0 0 0 5px rgba(215, 173, 99, 0.16), 0 0 0 19px rgba(232, 123, 98, 0); }
}

/* The native pointer remains available; this adds a quiet response around links. */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .modern-link-cursor {
    --modern-cursor-scale: 0.72;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(232, 123, 98, 0.9);
    border-radius: 50%;
    background: rgba(215, 173, 99, 0.12);
    box-shadow: 0 0 0 5px rgba(215, 173, 99, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--modern-cursor-x, -64px), var(--modern-cursor-y, -64px), 0) translate(-50%, -50%) scale(var(--modern-cursor-scale));
    transition: opacity 130ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 160ms ease, border-color 160ms ease;
  }

  .modern-link-cursor::after {
    position: absolute;
    inset: 7px;
    border-radius: inherit;
    background: var(--coral);
    content: "";
    transform: scale(0.42);
    transition: transform 160ms ease, background-color 160ms ease;
  }

  .modern-link-cursor.is-visible { opacity: 1; }
  .modern-link-cursor.is-link { --modern-cursor-scale: 1.72; border-color: var(--gold); background: rgba(16, 47, 42, 0.76); }
  .modern-link-cursor.is-link::after { background: var(--gold); transform: scale(1); }
  .modern-link-cursor.is-pressed { --modern-cursor-scale: 0.84; }
  .modern-link-cursor.is-clicked { animation: modern-link-cursor-pulse 420ms ease-out; }

  [data-link-motion]:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
}

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