/* ══════════════════════════════════════════════════
   수요행복 전도팀 — WARM COMMUNITY EDITION
   ■ 표어: "당신이 있어서 행복합니다"
   ■ Palette: Forest Green × Apricot × Cream × Earth
   ■ 별개 부서: 전도특공대(붉은 톤)와 시각으로 차별화
   ══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Brand */
  --green:        #2d6e3e;
  --green-deep:   #1f4f2c;
  --green-soft:   #5fa170;
  --green-mist:   #e8f1ea;
  --apricot:      #e8a87c;
  --apricot-soft: #f4c894;
  --apricot-deep: #c47a4f;
  --sunrise:      #f6d8b4;

  --cream:        #fdf8ee;
  --ivory:        #f9f3e6;
  --paper:        #fffef9;
  --white:        #ffffff;

  --earth:        #4a3826;
  --earth-soft:   #6b5340;
  --ink:          #1f1810;
  --text:         #2e2418;
  --text-mid:     #5e4d38;
  --text-soft:    #8a7860;
  --line:         #ead9c0;

  --serif:        "Noto Serif KR", "Playfair Display", Georgia, serif;
  --sans:         "Apple SD Gothic Neo", "Pretendard", "Malgun Gothic", sans-serif;

  --shadow-soft:  0 4px 16px rgba(45, 110, 62, 0.08);
  --shadow-mid:   0 14px 40px rgba(45, 110, 62, 0.18);
  --shadow-warm:  0 18px 50px rgba(196, 122, 79, 0.18);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* 모바일 글자 밀림 방지: 전역 단어 처리 */
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
/* 한글 줄바꿈 전역 규칙 */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, td, th, blockquote, cite, em, strong {
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
}

/* ── Floating Home ── */
.floating-home {
  position: fixed; top: 18px; left: 18px; z-index: 1001;
  background: rgba(31, 79, 44, .94);
  color: var(--cream);
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(31, 24, 16, .25);
  transition: background .25s ease, transform .25s ease;
}
.floating-home:hover { background: var(--green-deep); transform: translateX(-3px); }

/* ══════════════════════════════════════════════════
   HERO — 풀블리드 사진 + 표어
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55) saturate(1.05);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(31, 79, 44, .35) 0%,
    rgba(31, 24, 16, .55) 60%,
    rgba(31, 24, 16, .75) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
}
.hero-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  font-weight: 700;
  color: var(--apricot-soft);
  padding: 8px 22px;
  border: 1px solid rgba(244, 200, 148, .45);
  border-radius: 99px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.18;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hero-title .accent { color: var(--apricot-soft); font-style: italic; }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: rgba(253, 248, 238, .85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-verse {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(253, 248, 238, .65);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(244, 200, 148, .25);
  border-bottom: 1px solid rgba(244, 200, 148, .25);
  padding: 12px 22px;
  font-style: italic;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(244, 200, 148, .7);
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 32px;
  margin: 8px auto 0; background: var(--apricot-soft);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ══════════════════════════════════════════════════
   STORY — "수요일이 행복한 이유"
══════════════════════════════════════════════════ */
.story-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 24px 80px;
  position: relative;
}
.story-head {
  text-align: center;
  margin-bottom: 60px;
}
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.kicker::before, .kicker::after {
  content: "—"; margin: 0 12px; color: var(--line);
}
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.22;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
h2.section-title .it { color: var(--apricot-deep); font-style: italic; }
.section-lead {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-mid);
  font-style: italic;
  max-width: 64ch;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.story-text p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 18px;
}
.story-text p strong {
  color: var(--green-deep);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(232, 168, 124, .35) 60%);
  padding: 0 2px;
}
.story-quote {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--green-mist);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--green-deep);
  line-height: 1.7;
}
.story-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  aspect-ratio: 4 / 5;
  background: var(--green-mist);
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.story-img:hover img { transform: scale(1.04); }
.story-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,24,16,.4) 100%);
}
.story-tag {
  position: absolute; bottom: 18px; left: 18px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--cream);
  background: rgba(31, 79, 44, .85);
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   FLOW — 3 STEPS (Pray → Prepare → Share)
══════════════════════════════════════════════════ */
.flow-section {
  background: var(--ivory);
  padding: 100px 24px;
  position: relative;
}
.flow-section::before, .flow-section::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.flow-section::before { top: 0; }
.flow-section::after { bottom: 0; }
.flow-wrap { max-width: 1240px; margin: 0 auto; }
.flow-head { text-align: center; margin-bottom: 64px; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.flow-grid::before {
  /* 가로 점선 연결 (PC만) */
  content: "";
  position: absolute;
  top: 88px; left: 16%; right: 16%;
  height: 1px;
  background-image: linear-gradient(to right, var(--apricot) 50%, transparent 50%);
  background-size: 14px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
.flow-card {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 28px 32px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: var(--apricot-soft);
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}
.flow-card:nth-child(2) .flow-num { background: var(--apricot-deep); }
.flow-card:nth-child(3) .flow-num { background: var(--earth); }
.flow-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.flow-emoji {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}
.flow-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.flow-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 26ch;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   GALLERY — 사진 그리드
══════════════════════════════════════════════════ */
.gallery-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
}
.gallery-head { text-align: center; margin-bottom: 56px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--green-mist);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,24,16,.5) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.g-item:hover::after { opacity: 1; }
.g-cap {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
/* Bento Layout */
.g-item-1 { grid-column: span 6; grid-row: span 2; }
.g-item-2 { grid-column: span 3; grid-row: span 1; }
.g-item-3 { grid-column: span 3; grid-row: span 1; }
.g-item-4 { grid-column: span 3; grid-row: span 1; }
.g-item-5 { grid-column: span 3; grid-row: span 1; }

/* ══════════════════════════════════════════════════
   SCHEDULE — 시간 + 장소
══════════════════════════════════════════════════ */
.schedule-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  padding: 100px 24px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.schedule-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244,200,148,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.schedule-wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.schedule-head { text-align: center; margin-bottom: 56px; }
.schedule-head .kicker { color: var(--apricot-soft); }
.schedule-head .kicker::before, .schedule-head .kicker::after {
  color: rgba(244,200,148,.35);
}
.schedule-head h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.schedule-head h2 .accent { color: var(--apricot-soft); font-style: italic; }
.schedule-head p {
  color: rgba(253,248,238,.75);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}

.schedule-card {
  background: var(--paper);
  color: var(--text);
  border-radius: 14px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  position: relative;
}
.schedule-card::before {
  content: "";
  position: absolute;
  top: 0; left: 40px;
  width: 80px; height: 6px;
  background: linear-gradient(to right, var(--apricot), var(--apricot-deep));
  border-radius: 0 0 4px 4px;
}
.sc-block { padding: 8px 0; }
.sc-block + .sc-block { border-left: 1px dashed var(--line); padding-left: 36px; }
.sc-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--apricot-deep);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sc-time {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.sc-time .accent { color: var(--apricot-deep); }
.sc-detail {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
}
.sc-detail strong { color: var(--green-deep); font-weight: 700; }

/* ══════════════════════════════════════════════════
   CTA — Join Us
══════════════════════════════════════════════════ */
.cta-section {
  padding: 110px 24px;
  text-align: center;
  background: var(--cream);
  position: relative;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-script {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--apricot-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}
.cta-section p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 99px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 20px rgba(31, 79, 44, .25);
}
.cta-btn:hover {
  background: var(--apricot-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 122, 79, .35);
}
.cta-btn::after { content: "→"; transition: transform .25s ease; }
.cta-btn:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--earth);
  color: rgba(253,248,238,.7);
  padding: 50px 24px 40px;
  text-align: center;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.85;
}
.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--apricot-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-church {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-verse {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(253,248,238,.55);
  margin-top: 18px;
  border-top: 1px solid rgba(253,248,238,.12);
  padding-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-img { aspect-ratio: 4 / 3; max-height: 460px; }
  .schedule-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  .sc-block + .sc-block { border-left: 0; border-top: 1px dashed var(--line); padding-left: 0; padding-top: 28px; }
  .gallery-grid { grid-auto-rows: 140px; gap: 10px; }
  .g-item-1 { grid-column: span 12; grid-row: span 2; }
  .g-item-2 { grid-column: span 6; }
  .g-item-3 { grid-column: span 6; }
  .g-item-4 { grid-column: span 6; }
  .g-item-5 { grid-column: span 6; }
}
@media (max-width: 768px) {
  /* [PATCH 2026.05.03] 태블릿: floating-home 을 fixed 로 유지하되 작게,
     섹션 padding-top 을 충분히 줘서 버튼 아래로 헤더가 시작되도록. */
  .floating-home {
    position: fixed;
    top: 12px; left: 12px;
    font-size: 12px;
    padding: 7px 14px 7px 10px;
    background: rgba(31, 79, 44, .96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 3px 12px rgba(0,0,0,.32);
    z-index: 9999;
  }
  .floating-home svg { width: 16px; height: 16px; }

  .hero { min-height: 80vh; }
  .hero-inner { padding: 60px 22px 30px; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.32em; padding: 7px 16px; }
  .hero-title { font-size: clamp(34px, 9vw, 56px); }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-verse { font-size: 13px; padding: 10px 18px; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(31, 79, 44, .50) 0%,
      rgba(31, 24, 16, .68) 60%,
      rgba(31, 24, 16, .82) 100%);
  }

  .story-section, .gallery-section { padding: 80px 18px 70px; }
  .flow-section, .schedule-section { padding: 80px 18px 70px; }
  .cta-section { padding: 80px 20px 70px; }
  .flow-grid { grid-template-columns: 1fr; gap: 20px; }
  .flow-grid::before { display: none; }
  .flow-card { padding: 32px 22px 28px; }
  .gallery-grid { grid-auto-rows: 120px; }
  .g-item-1 { grid-row: span 2; }
  .schedule-card { padding: 32px 22px; }
  .sc-time { font-size: 24px; }
  .footer-verse { font-size: 13px; }
}
@media (max-width: 480px) {
  /* [PATCH 2026.05.03b] 모바일 정렬 정밀 보정:
     1) 본문 텍스트(story-text, flow-desc, sc-detail) 모두 좌측 정렬 — 한글 가독성
     2) 짧은 끝줄(고립 어절) 방지 — text-wrap: balance + br 모바일 비활성화
     3) 데스크톱 전용 <br> 은 모바일에서 띄어쓰기로 대체 (display: inline → 시각적 공백)
     4) 본문 전용 .story-text 카드 패딩 추가로 글이 화면 가장자리에 닿지 않게 */
  .floating-home {
    position: fixed;
    top: 10px; left: 10px;
    font-size: 12px;
    padding: 6px 13px 6px 9px;
    background: rgba(31, 79, 44, .96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 3px 12px rgba(0,0,0,.34);
    z-index: 9999;
    gap: 5px;
  }
  .floating-home svg { width: 14px; height: 14px; }

  /* HERO — 글자 잘림 방지 + 가독성 ↑ + 어절 고립 방지 */
  .hero { min-height: 78vh; }
  .hero-inner { padding: 70px 22px 36px; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.28em; padding: 6px 14px; margin-bottom: 22px; }
  .hero-title {
    font-size: clamp(26px, 9vw, 38px);
    line-height: 1.25;
    margin-bottom: 18px;
    padding: 0 4px;
    text-wrap: balance;
  }
  .hero-sub {
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 24px;
    padding: 0 8px;
    text-wrap: balance;
  }
  /* 모바일에서 "시간"·"건넵니다" 같은 짧은 어절 고립 방지 */
  .hero-sub br { display: none; }
  .hero-verse {
    font-size: 12px;
    padding: 9px 16px;
    line-height: 1.6;
    text-wrap: balance;
  }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(31, 79, 44, .58) 0%,
      rgba(31, 24, 16, .72) 55%,
      rgba(31, 24, 16, .88) 100%);
  }

  /* 모든 섹션 — floating-home 아래로 헤더가 시작되도록 padding-top 80px 통일 */
  .story-section { padding: 80px 18px 56px; }
  .gallery-section { padding: 80px 16px 70px; }
  .flow-section { padding: 80px 18px 64px; }
  .schedule-section { padding: 84px 18px 70px; }
  .cta-section { padding: 80px 22px 70px; }

  /* 섹션 헤더 — 좌우 여백 조정 */
  .story-head, .gallery-head, .flow-head, .schedule-head {
    padding: 0 4px;
    margin-bottom: 32px;
  }

  /* kicker — 모바일 가독성 */
  .kicker { font-size: 10.5px; letter-spacing: 0.26em; margin-bottom: 14px; }
  .kicker::before, .kicker::after { margin: 0 8px; }

  /* section-title 좁은 화면 */
  h2.section-title {
    font-size: clamp(23px, 6.2vw, 30px);
    margin-bottom: 14px;
    text-wrap: balance;
    padding: 0 4px;
  }
  /* section-lead — 한 줄짜리 문장으로 자연스럽게 흐르도록 br 제거 */
  .section-lead {
    font-size: 15px;
    line-height: 1.75;
    padding: 0 6px;
    text-wrap: balance;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
  .section-lead br { display: none; }

  /* STORY 본문 — 좌측 정렬 + 카드형 패딩 (한글 본문 가독성) */
  .story-grid { gap: 28px; margin-top: 32px; }
  .story-text {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 20px 18px;
    box-shadow: 0 4px 14px rgba(45, 110, 62, .06);
  }
  .story-text p {
    font-size: 14.8px;
    line-height: 1.85;
    text-align: left;
    margin-bottom: 14px;
  }
  .story-text p:last-of-type { margin-bottom: 0; }
  .story-quote {
    font-size: 14.8px;
    padding: 16px 18px;
    line-height: 1.7;
    margin-top: 22px;
  }
  .story-quote br { display: none; }
  .story-img { aspect-ratio: 4 / 3; max-height: 380px; }
  .story-tag { font-size: 10px; letter-spacing: 0.22em; padding: 6px 12px; bottom: 14px; left: 14px; }

  /* GALLERY 4분할 + 메인 1장 — 정돈된 6컬럼 그리드 */
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 105px; gap: 8px; }
  .g-item-1 { grid-column: span 6; grid-row: span 2; }
  .g-item-2, .g-item-3, .g-item-4, .g-item-5 { grid-column: span 3; }

  /* FLOW 카드 — 좁은 폭 보정 + 본문 좌측 정렬 (가운데 정렬은 짧은 어절을 어색하게 함) */
  .flow-card { padding: 28px 22px 24px; }
  .flow-num { width: 56px; height: 56px; font-size: 22px; margin-bottom: 18px; }
  .flow-emoji { font-size: 32px; margin-bottom: 10px; }
  .flow-title { font-size: 19px; margin-bottom: 10px; }
  .flow-desc {
    font-size: 14px;
    line-height: 1.75;
    max-width: 100%;
    text-wrap: balance;
  }
  .flow-desc br { display: none; }

  /* SCHEDULE 카드 */
  .schedule-card { padding: 28px 22px; gap: 22px; }
  .schedule-head h2 { font-size: clamp(24px, 6.5vw, 32px); }
  .schedule-head p { font-size: 14.5px; text-wrap: balance; padding: 0 6px; }
  .sc-time { font-size: 22px; line-height: 1.35; }
  .sc-detail { font-size: 13.5px; line-height: 1.75; }
  .sc-detail br { display: none; }

  /* CTA */
  .cta-section h2 { font-size: clamp(24px, 7vw, 34px); text-wrap: balance; }
  .cta-section h2 br { display: none; }
  .cta-script { font-size: 18px; margin-bottom: 12px; }
  .cta-section p { font-size: 15px; line-height: 1.8; margin-bottom: 28px; text-wrap: balance; }
  .cta-section p br { display: none; }
  .cta-btn { font-size: 14px; padding: 14px 28px; }

  /* FOOTER */
  .site-footer { padding: 38px 20px 30px; font-size: 12.5px; line-height: 1.8; }
  .footer-mark { font-size: 11px; letter-spacing: 0.28em; }
  .footer-church { font-size: 16px; }
  .footer-verse {
    font-size: 12.5px;
    padding-top: 14px;
    margin-top: 14px;
    text-wrap: balance;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ════════════════════════════════════════
   초소형(360px 이하) 전용 미세 조정
   ════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero-inner { padding: 64px 18px 28px; }
  .hero-title { font-size: clamp(24px, 8.4vw, 32px); }
  .hero-sub { font-size: 14px; }
  .story-section, .flow-section, .schedule-section { padding-left: 14px; padding-right: 14px; }
  .story-text { padding: 20px 16px 16px; }
  h2.section-title { font-size: 22px; }
  .section-lead { font-size: 14px; }
}
