:root {
  --ink: #24211d;
  --muted: #70675b;
  --paper: #fbfaf7;
  --warm: #efe7da;
  --wood: #9f7650;
  --gold: #c69a42;
  --olive: #637565;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(36, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.65;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130b;
}

.site-header.is-scrolled .header-cta:hover {
  color: #17130b;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Noto Serif KR", serif;
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  font-size: 15px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #14120f;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.78), rgba(20, 18, 15, 0.3) 48%, rgba(20, 18, 15, 0.08)),
    linear-gradient(0deg, rgba(20, 18, 15, 0.78), rgba(20, 18, 15, 0.04) 54%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 88px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(58px, 10vw, 132px);
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
  word-break: keep-all;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 34px;
  font-size: clamp(18px, 2.4vw, 25px);
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}

.hero-actions,
.bulletin-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
}

.button-primary {
  background: var(--gold);
  color: #17130b;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.intro-section,
.pastor-section,
.feature-strip,
.story-section,
.schedule-section,
.visit-section,
.film-section,
.gallery-section,
.offering-section,
.bulletin-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.offering-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 90px 0;
  border-top: 1px solid rgba(36, 33, 29, 0.14);
}

.offering-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}

.offering-card {
  display: grid;
  gap: 8px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.offering-bank {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offering-account {
  margin: 0;
}

.account-number {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.offering-holder {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.offering-copy {
  justify-self: start;
  background: var(--gold);
  color: #17130b;
}

.offering-copy[data-copied="true"] {
  background: #4f8a5a;
  color: var(--white);
}

.offering-toast {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  margin: 0;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.offering-toast[hidden] {
  opacity: 0;
}

.offering-toast.is-visible {
  opacity: 1;
}

.footer-account {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(36, 33, 29, 0.4);
}

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

.schedule-section {
  padding: 24px 0 110px;
}

.schedule-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.schedule-intro {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  word-break: keep-all;
}

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

.schedule-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid rgba(36, 33, 29, 0.08);
  box-shadow: 0 14px 36px rgba(36, 33, 29, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(36, 33, 29, 0.12);
}

.schedule-card.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.schedule-card.wide {
  grid-column: span 4;
  background: var(--warm);
  border-color: transparent;
}

.schedule-card .schedule-name {
  margin: 0;
  color: var(--wood);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-card.primary .schedule-name {
  color: var(--gold);
}

.schedule-card .schedule-time {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.schedule-card .schedule-time strong {
  color: var(--gold);
}

.schedule-card.primary .schedule-time strong {
  color: var(--gold);
}

.schedule-card .schedule-leader {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.schedule-card.primary .schedule-leader {
  color: rgba(255, 255, 255, 0.7);
}

.schedule-card .schedule-theme {
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 33, 29, 0.12);
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
  font-weight: 700;
}

.schedule-card.primary .schedule-theme {
  border-color: rgba(255, 255, 255, 0.18);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 90px 0 110px;
  border-top: 1px solid rgba(36, 33, 29, 0.14);
}

.visit-info h2 {
  margin-bottom: 26px;
}

.visit-address {
  margin: 0 0 24px;
  font-style: normal;
}

.visit-address .address-main {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(22px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--ink);
}

.visit-address .address-sub {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.visit-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wood);
  font-family: "Noto Serif KR", serif;
  font-size: 20px;
  font-weight: 700;
}

.visit-tel:hover {
  color: var(--gold);
}

.visit-transit {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 20px 22px;
  background: var(--warm);
  list-style: none;
  border-left: 3px solid var(--gold);
}

.visit-transit li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  word-break: keep-all;
}

.transit-label {
  flex-shrink: 0;
  padding: 3px 10px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visit-actions .button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.visit-map {
  overflow: hidden;
  background: var(--warm);
  box-shadow: var(--shadow);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 50vh, 460px);
  border: 0;
}

.intro-section {
  padding: 110px 0 88px;
}

.solas-block,
.values-block {
  margin-top: clamp(40px, 6vw, 72px);
}

.block-label {
  margin: 0 0 18px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solas-grid li {
  display: grid;
  gap: 6px;
  padding: 22px 14px;
  background: var(--warm);
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solas-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(36, 33, 29, 0.08);
}

.sola-latin {
  display: block;
  font-family: "Noto Serif KR", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--wood);
  letter-spacing: 0.02em;
}

.sola-ko {
  display: block;
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  word-break: keep-all;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(36, 33, 29, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(36, 33, 29, 0.08);
}

.value-num {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.value-card h3 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.value-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}

.value-card em {
  color: var(--wood);
  font-style: italic;
}

.church-affiliation {
  display: grid;
  gap: 10px;
  margin: clamp(48px, 6vw, 72px) 0 0;
  padding: 22px 24px;
  background: rgba(36, 33, 29, 0.04);
  border-left: 3px solid var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.affiliation-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  color: var(--muted);
}

.affiliation-label {
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 24px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  word-break: keep-all;
}

.pastor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 18px 0 112px;
}

.pastor-portrait {
  position: relative;
  margin: 0;
  max-width: 320px;
  background: var(--warm);
  box-shadow: var(--shadow);
}

.pastor-portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.pastor-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
}

.pastor-lead {
  position: relative;
  margin: 24px 0 22px;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: "Noto Serif KR", serif;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  font-style: normal;
  word-break: keep-all;
}

.pastor-lead .hanja {
  font-size: 0.78em;
  color: var(--wood);
  letter-spacing: 0.06em;
}

.pastor-meta {
  display: grid;
  gap: 0;
  margin: 26px 0 22px;
  padding: 0;
}

.pastor-meta > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 33, 29, 0.1);
}

.pastor-meta > div:last-child {
  border-bottom: 0;
}

.pastor-meta dt {
  margin: 0;
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.6;
}

.pastor-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  word-break: keep-all;
}

.pastor-copy {
  padding: clamp(8px, 2vw, 20px) 0;
}

.pastor-lead {
  margin: 24px 0 18px;
  color: var(--ink);
  font-family: "Noto Serif KR", serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  word-break: keep-all;
}

.pastor-copy p:not(.eyebrow):not(.pastor-lead) {
  color: var(--muted);
  font-size: 17px;
  word-break: keep-all;
}

.pastor-signature {
  display: inline-flex;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 33, 29, 0.2);
  color: var(--wood);
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 34px 0 104px;
}

.feature-text p:not(.eyebrow),
.story-panel p:not(.eyebrow),
.bulletin-section p {
  color: var(--muted);
  font-size: 17px;
  word-break: keep-all;
}

.wide-photo {
  margin: 0;
  box-shadow: var(--shadow);
}

.wide-photo img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.story-section {
  display: grid;
  gap: 70px;
  padding: 12px 0 118px;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.story-panel.reverse {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.95fr);
}

.story-panel.reverse img {
  order: 2;
}

.story-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.film-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
  padding: 104px 0 118px;
  border-top: 1px solid rgba(36, 33, 29, 0.14);
}

.film-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  word-break: keep-all;
}

.film-frame {
  position: relative;
  overflow: hidden;
  background: #14120f;
  box-shadow: var(--shadow);
}

.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.94;
}

.film-controls {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.film-control {
  min-width: 74px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.58);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.film-control:hover {
  background: rgba(20, 18, 15, 0.85);
  border-color: var(--gold);
}

.film-control[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130b;
}

.gallery-section {
  padding: 106px 0 118px;
  border-top: 1px solid rgba(36, 33, 29, 0.14);
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--warm);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(15, 13, 10, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(100%, 1100px);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.55);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130b;
}

.lightbox-close {
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev {
  left: clamp(14px, 3vw, 28px);
}

.lightbox-next {
  right: clamp(14px, 3vw, 28px);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.9);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.bulletin-section {
  justify-content: space-between;
  margin-bottom: 80px;
  padding: 46px clamp(24px, 5vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.bulletin-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 48px;
  align-items: end;
  padding: 36px clamp(20px, 5vw, 72px) 32px;
  color: var(--muted);
  border-top: 1px solid rgba(36, 33, 29, 0.12);
  font-size: 15px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand .footer-name {
  color: var(--ink);
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.footer-contact .contact-label {
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact a.contact-tel {
  color: var(--ink);
  font-family: "Noto Serif KR", serif;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-contact a.contact-tel:hover {
  color: var(--wood);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    padding: 14px 20px;
  }

  .site-nav {
    display: none;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 56px;
  }

  .intro-grid,
  .pastor-section,
  .feature-strip,
  .film-section,
  .story-panel,
  .story-panel.reverse {
    grid-template-columns: 1fr;
  }

  .pastor-portrait {
    max-width: 280px;
  }

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

  .solas-grid li:nth-child(4) {
    grid-column: 1 / span 2;
  }

  .solas-grid li:nth-child(5) {
    grid-column: 3 / span 1;
  }

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

  .values-grid .value-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .story-panel.reverse img {
    order: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

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

  .schedule-card.wide {
    grid-column: span 2;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .offering-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lightbox-prev,
  .lightbox-next {
    bottom: clamp(14px, 4vw, 28px);
    top: auto;
  }

  .lightbox-prev {
    left: 50%;
    transform: translateX(calc(-100% - 12px));
  }

  .lightbox-next {
    right: 50%;
    transform: translateX(calc(100% + 12px));
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 17px;
    max-width: 330px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
  }

  .intro-section {
    padding: 72px 0 58px;
  }

  .feature-strip,
  .story-section,
  .film-section,
  .gallery-section {
    padding-bottom: 72px;
  }

  .wide-photo img,
  .story-panel img,
  .film-frame video {
    aspect-ratio: 1 / 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

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

  .schedule-card.wide {
    grid-column: auto;
  }

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

  .solas-grid li:nth-child(4),
  .solas-grid li:nth-child(5) {
    grid-column: auto;
  }

  .solas-grid li:nth-child(5) {
    grid-column: 1 / -1;
  }

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

  .affiliation-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pastor-meta > div {
    grid-template-columns: 80px 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .bulletin-section {
    display: block;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}
