
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:       #1B2A4A;
      --navy-deep:  #0F1B33;
      --navy-light: #243656;
      --gold:       #C8A45C;
      --gold-light: #DBBE7A;
      --gold-soft:  #F5ECD7;
      --white:      #ffffff;
      --cream:      #FAF7F2;
      --gray-100:   #F8F9FB;
      --gray-200:   #E8EBF0;
      --gray-300:   #D1D5DB;
      --gray-500:   #6B7280;
      --gray-700:   #374151;
      --gray-900:   #111827;
      --text-dark:  #1B2A4A;
      --text-mid:   #374151;
      --text-light: #6B7280;
      --radius-sm:  8px;
      --radius-md:  14px;
      --radius-lg:  20px;
      --radius-xl:  28px;
      --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
      --shadow-md:  0 4px 20px rgba(0,0,0,.08);
      --shadow-lg:  0 12px 48px rgba(0,0,0,.12);
      --shadow-xl:  0 20px 60px rgba(27,42,74,.15);
      --ease:       cubic-bezier(.4,0,.2,1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Pretendard Variable", "Pretendard", "Apple SD Gothic Neo",
                   "Malgun Gothic", sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
      letter-spacing: -0.01em;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }

    /* ── Scroll Animations ── */
    .fade-up {
      opacity: 0; transform: translateY(32px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up.delay-1 { transition-delay: .1s; }
    .fade-up.delay-2 { transition-delay: .2s; }
    .fade-up.delay-3 { transition-delay: .3s; }
    .fade-up.delay-4 { transition-delay: .4s; }

    .slide-in-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .slide-in-left.visible { opacity: 1; transform: translateX(0); }

    .slide-in-right {
      opacity: 0; transform: translateX(40px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .slide-in-right.visible { opacity: 1; transform: translateX(0); }

    .scale-in {
      opacity: 0; transform: scale(.9);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .scale-in.visible { opacity: 1; transform: scale(1); }

    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

    /* ══════════════════════════════════════
       🎇 HERO — 우주 밤하늘 (별 + 달)
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background:
        radial-gradient(ellipse at 70% 20%, #1c2d52 0%, transparent 45%),
        radial-gradient(ellipse at 20% 70%, #162142 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1f 0%, #0b1128 45%, #0d1838 100%);
    }

    /* 은은한 보라/금색 네뷸라 글로우 */
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background:
        radial-gradient(ellipse at 85% 35%, rgba(200,164,92,.08) 0%, transparent 45%),
        radial-gradient(ellipse at 15% 65%, rgba(80,100,180,.07) 0%, transparent 50%);
      z-index: 1;
      pointer-events: none;
    }

    /* ── 별 컨테이너 ── */
    .starfield {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
    }

    /* ── 반짝이는 별 ── */
    .star {
      position: absolute;
      background: #fff;
      border-radius: 50%;
      opacity: .3;
      will-change: opacity, transform;
      animation: starTwinkle var(--d, 3s) ease-in-out var(--dl, 0s) infinite;
      box-shadow: 0 0 4px 0.5px rgba(255,255,255,.55);
    }
    .star.warm {
      background: #ffeab5;
      box-shadow: 0 0 8px 1px rgba(255,220,140,.65), 0 0 14px 3px rgba(200,164,92,.2);
    }
    .star.cool {
      background: #cfe2ff;
      box-shadow: 0 0 6px 1px rgba(180,200,255,.55);
    }
    @keyframes starTwinkle {
      0%, 100% { opacity: .3; transform: scale(1); }
      50%      { opacity: 1;  transform: scale(1.3); }
    }

    /* ── 유성 (옵션) ── */
    .shooting-star {
      position: absolute;
      top: 18%; left: 82%;
      width: 2px; height: 2px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 8px 2px rgba(255,255,255,.8);
      opacity: 0;
      z-index: 2;
      animation: shootStar 9s linear infinite;
      animation-delay: 4s;
    }
    .shooting-star::after {
      content: '';
      position: absolute;
      right: 2px; top: 50%;
      width: 110px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.85));
      transform: translateY(-50%);
    }
    @keyframes shootStar {
      0%   { opacity: 0; transform: translate(0,0) rotate(30deg); }
      3%   { opacity: 1; }
      10%  { opacity: 0; transform: translate(-340px, 210px) rotate(30deg); }
      100% { opacity: 0; transform: translate(-340px, 210px) rotate(30deg); }
    }

    /* ── 달 (천천히 이동) ── */
    .hero-moon {
      position: absolute;
      top: 12%; right: -10%;
      width: 110px; height: 110px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 32% 30%, #fff7dd 0%, #f5e4a8 35%, #d8b972 70%, #a48544 100%);
      box-shadow:
        0 0 50px rgba(255,235,180,.35),
        0 0 100px rgba(255,225,160,.2),
        inset -12px -12px 28px rgba(80,60,20,.35);
      z-index: 3;
      animation: moonDrift 60s linear infinite, moonGlow 5s ease-in-out infinite;
      will-change: transform, filter;
    }
    /* 달 분화구 */
    .hero-moon::before {
      content: '';
      position: absolute;
      top: 26px; left: 24px;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: rgba(110,85,40,.28);
      box-shadow:
        22px 12px 0 -4px rgba(110,85,40,.22),
        40px 36px 0 -2px rgba(110,85,40,.28),
        10px 48px 0 -6px rgba(110,85,40,.2),
        50px 66px 0 -7px rgba(110,85,40,.2);
    }
    /* 달 헤일로 */
    .hero-moon::after {
      content: '';
      position: absolute;
      inset: -24px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,240,185,.18) 0%, transparent 70%);
      z-index: -1;
      pointer-events: none;
    }
    @keyframes moonDrift {
      0%   { transform: translate(0, 0); }
      25%  { transform: translate(-30vw, 8px); }
      50%  { transform: translate(-60vw, -6px); }
      75%  { transform: translate(-90vw, 10px); }
      100% { transform: translate(-120vw, 0); }
    }
    @keyframes moonGlow {
      0%, 100% { filter: brightness(1); }
      50%      { filter: brightness(1.12); }
    }

    /* 접근성: 모션 감소 */
    @media (prefers-reduced-motion: reduce) {
      .star, .shooting-star, .hero-moon { animation: none !important; }
      .hero-moon { right: 7%; transform: none; }
    }

    /* 레거시 정적 도트 (사용 안 함) */
    .hero-dot {
      position: absolute;
      width: 3px; height: 3px;
      background: var(--gold);
      border-radius: 50%;
      opacity: .25;
      z-index: 2;
      display: none;
    }

    /* Gold line decorations — static */
    .hero-deco-line {
      position: absolute;
      z-index: 2;
      opacity: .12;
    }
    .hero-deco-line.line-1 {
      top: 18%; left: 8%;
      width: 100px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .hero-deco-line.line-2 {
      bottom: 22%; right: 8%;
      width: 60px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    /* Cross accent — static */
    .hero-cross {
      position: absolute;
      top: 12%; right: 15%;
      z-index: 2;
      opacity: .05;
      font-size: 120px;
      color: var(--gold);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 24px;
      max-width: 700px;
    }

    .hero-church-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,164,92,.12);
      border: 1px solid rgba(200,164,92,.2);
      border-radius: 40px;
      padding: 8px 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: .04em;
      margin-bottom: 28px;
    }
    .hero-church-badge .cross-icon {
      font-size: 14px;
    }

    .hero-title {
      font-size: 36px;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
      word-break: keep-all;
    }
    .hero-title em {
      font-style: normal;
      color: var(--gold);
      position: relative;
    }
    .hero-title em::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .hero-subtitle {
      font-size: 15px;
      color: rgba(255,255,255,.55);
      line-height: 1.8;
      margin-bottom: 32px;
      word-break: keep-all;
    }

    .hero-gold-divider {
      width: 48px; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      margin: 0 auto 28px;
      border-radius: 1px;
    }

    .hero-verse {
      font-size: 13px;
      color: rgba(255,255,255,.35);
      line-height: 1.8;
      font-style: italic;
      word-break: keep-all;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.3);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .08em;
    }
    .hero-scroll-hint svg { width: 18px; height: 18px; }

    /* ══ HEADER ══ */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,.05);
    }
    .hd {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
      padding: 0 20px;
    }
    .hd-back {
      display: flex; align-items: center; gap: 4px;
      font-size: 13px; font-weight: 600;
      color: var(--text-light);
    }
    .hd-back svg { width: 18px; height: 18px; }
    .hd-logo {
      font-size: 15px; font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .hd-logo span { color: var(--gold); }

    /* ══ WELCOME SECTION ══ */
    .welcome-hero {
      padding: 72px 24px 56px;
      text-align: center;
      background: var(--cream);
    }
    .welcome-hero-inner { max-width: 560px; margin: 0 auto; }
    .welcome-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold-soft), #fff);
      border: 1px solid rgba(200,164,92,.2);
      border-radius: 40px;
      padding: 7px 18px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .03em;
      margin-bottom: 24px;
    }
    .welcome-hero h1 {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.4;
      letter-spacing: -0.03em;
      color: var(--text-dark);
      margin-bottom: 16px;
      word-break: keep-all;
    }
    .welcome-hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .welcome-hero-desc {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.8;
      word-break: keep-all;
      margin-bottom: 24px;
    }
    .gold-line {
      width: 40px; height: 2px;
      background: var(--gold);
      margin: 0 auto 20px;
      border-radius: 1px;
    }
    .welcome-verse {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.7;
      font-style: italic;
      word-break: keep-all;
    }

    /* ══ SECTION LABEL ══ */
    .section-label {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .05em;
      margin-bottom: 10px;
    }

    /* ══ PASTOR SECTION ══ */
    .pastor-section {
      padding: 64px 24px;
      background: #fff;
    }
    .pastor-inner {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }
    .pastor-inner h2 {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 28px;
      word-break: keep-all;
    }
    .pastor-message {
      background: var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      margin-bottom: 24px;
      position: relative;
      border: 1px solid var(--gray-200);
    }
    .pastor-message::before {
      content: '\201C';
      position: absolute;
      top: 16px; left: 24px;
      font-size: 48px;
      color: var(--gold);
      opacity: .25;
      font-family: Georgia, serif;
      line-height: 1;
    }
    .pastor-message p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.85;
      word-break: keep-all;
      text-align: left;
    }
    .pastor-message p + p { margin-top: 14px; }
    .pastor-sign {
      font-size: 14px;
      color: var(--text-light);
    }
    .pastor-sign strong {
      color: var(--navy);
      font-weight: 700;
    }

    /* ══════════════════════════════════════
       📖 INFO SECTION — 프리미엄 예배 안내
       ══════════════════════════════════════ */
    .info-section {
      padding: 84px 24px 96px;
      background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
      position: relative;
      overflow: hidden;
    }
    .info-section::before {
      content: '';
      position: absolute;
      top: -150px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200,164,92,.08) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }
    .info-section::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -80px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(27,42,74,.05) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }
    .info-section .section-header {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 56px;
      position: relative;
    }
    .info-section .section-header h2 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.03em;
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .info-section .section-header p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* — 서브 카테고리 헤더 (주일/주중) — */
    .info-sub-header {
      max-width: 1040px;
      margin: 0 auto 20px;
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding: 0 4px;
    }
    .info-sub-header .bar {
      flex: 0 0 28px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px;
    }
    .info-sub-header .ttl {
      font-size: 13px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: 3px;
      text-transform: uppercase;
    }
    .info-sub-header .ko {
      font-size: 13px;
      color: var(--text-light);
      font-weight: 500;
    }

    /* — 주일예배 히어로 카드 — */
    .sunday-hero {
      max-width: 1040px;
      margin: 0 auto 36px;
      background: linear-gradient(135deg, #1b2a4a 0%, #243a5e 60%, #2b4578 100%);
      border-radius: 24px;
      padding: 40px 44px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(27,42,74,.25);
    }
    .sunday-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(200,164,92,.18) 0%, transparent 70%);
      border-radius: 50%;
    }
    .sunday-hero::after {
      content: '✝';
      position: absolute;
      font-size: 180px;
      color: rgba(200,164,92,.05);
      right: 40px; top: 30px;
      line-height: 1;
      font-family: serif;
    }
    .sh-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 6px;
      position: relative;
      z-index: 2;
    }
    .sh-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(200,164,92,.18);
      border: 1px solid rgba(200,164,92,.35);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 2px;
    }
    .sh-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: #4ade80;
      border-radius: 50%;
      box-shadow: 0 0 8px #4ade80;
      animation: sh-pulse 2s ease-in-out infinite;
    }
    @keyframes sh-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .4; }
    }
    .sh-title {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      position: relative;
      z-index: 2;
    }
    .sh-desc {
      font-size: 14.5px;
      color: rgba(255,255,255,.7);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 580px;
      position: relative;
      z-index: 2;
    }
    .sh-times {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      position: relative;
      z-index: 2;
    }
    .sh-time {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      padding: 18px 20px;
      backdrop-filter: blur(8px);
      transition: all .3s var(--ease);
      position: relative;
      overflow: hidden;
    }
    .sh-time::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      opacity: 0;
      transition: opacity .3s;
    }
    .sh-time:hover {
      background: rgba(255,255,255,.12);
      transform: translateY(-3px);
      border-color: rgba(200,164,92,.4);
    }
    .sh-time:hover::before { opacity: 1; }
    .sh-time-num {
      font-size: 11px;
      font-weight: 800;
      color: var(--gold-light);
      letter-spacing: 2px;
      margin-bottom: 6px;
    }
    .sh-time-name {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .sh-time-clock {
      font-size: 22px;
      font-weight: 800;
      color: var(--gold-light);
      letter-spacing: -0.02em;
      font-family: 'Pretendard Variable', sans-serif;
      margin-bottom: 4px;
      font-variant-numeric: tabular-nums;
    }
    .sh-time-ampm {
      font-size: 11.5px;
      color: rgba(255,255,255,.55);
      font-weight: 500;
    }

    /* — 주중 예배 그리드 — */
    .info-grid {
      max-width: 1040px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      justify-content: start;
    }
    .info-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px 26px;
      text-align: left;
      box-shadow: 0 4px 20px rgba(27,42,74,.06);
      border: 1px solid rgba(0,0,0,.04);
      transition: all .35s var(--ease);
      position: relative;
      overflow: hidden;
    }
    .info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(.2);
      transform-origin: left;
      transition: transform .4s var(--ease);
    }
    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(27,42,74,.12);
    }
    .info-card:hover::before { transform: scaleX(1); }

    .info-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .info-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-light);
      font-size: 22px;
      box-shadow: 0 4px 14px rgba(27,42,74,.18);
      flex-shrink: 0;
    }
    .info-day-badge {
      display: inline-block;
      padding: 3px 9px;
      background: rgba(200,164,92,.12);
      border-radius: 6px;
      font-size: 10.5px;
      font-weight: 700;
      color: #8a6f30;
      letter-spacing: 1px;
    }
    .info-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .info-card p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.65;
      word-break: keep-all;
      margin-bottom: 16px;
    }
    .info-detail {
      padding-top: 14px;
      border-top: 1px dashed var(--gray-200);
    }
    .info-detail-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      font-size: 13px;
    }
    .info-detail-row .label {
      color: var(--text-light);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .info-detail-row .value {
      color: var(--text-dark);
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .info-detail-row .value.highlight {
      color: var(--navy);
      font-size: 14px;
      font-variant-numeric: tabular-nums;
    }

    /* ══════════════════════════════════════
       👥 STEPS SECTION — 프리미엄 타임라인
       ══════════════════════════════════════ */
    .steps-section {
      padding: 100px 24px 110px;
      background: linear-gradient(180deg, #0f1a30 0%, #1b2a4a 50%, #243a5e 100%);
      position: relative;
      overflow: hidden;
    }
    .steps-section::before {
      content: '';
      position: absolute;
      top: -200px; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 900px;
      background: radial-gradient(circle, rgba(200,164,92,.06) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
    }
    .steps-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(2px 2px at 20% 15%, rgba(200,164,92,.3), transparent),
        radial-gradient(1.5px 1.5px at 70% 25%, rgba(255,255,255,.3), transparent),
        radial-gradient(2px 2px at 85% 60%, rgba(200,164,92,.25), transparent),
        radial-gradient(1px 1px at 30% 75%, rgba(255,255,255,.25), transparent),
        radial-gradient(2px 2px at 55% 90%, rgba(200,164,92,.2), transparent);
      opacity: .8;
      pointer-events: none;
    }
    .steps-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .steps-section .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .steps-section .section-header h2 {
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .steps-section .section-header p {
      font-size: 15px;
      color: rgba(255,255,255,.55);
      line-height: 1.65;
    }

    /* — 타임라인 라인 — */
    .step-list {
      position: relative;
      padding: 12px 0;
    }
    .step-list::before {
      content: '';
      position: absolute;
      left: 31px; top: 40px; bottom: 40px;
      width: 2px;
      background: linear-gradient(180deg,
        transparent 0%,
        rgba(200,164,92,.4) 8%,
        rgba(200,164,92,.4) 92%,
        transparent 100%);
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 20px;
      background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      padding: 28px 30px;
      transition: all .4s var(--ease);
      position: relative;
      overflow: hidden;
    }
    .step-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: linear-gradient(180deg, var(--gold), var(--gold-light));
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .5s var(--ease);
    }
    .step-item:hover {
      background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, rgba(200,164,92,.05) 100%);
      border-color: rgba(200,164,92,.3);
      transform: translateX(6px);
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }
    .step-item:hover::before { transform: scaleY(1); }
    .step-item:last-child { margin-bottom: 0; }

    .step-num {
      width: 52px; height: 52px;
      min-width: 52px;
      background: linear-gradient(135deg, #d4ae61 0%, #c9a84c 50%, #a88530 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      color: #0f1a30;
      position: relative;
      z-index: 2;
      box-shadow:
        0 4px 14px rgba(200,164,92,.45),
        inset 0 1px 2px rgba(255,255,255,.5),
        inset 0 -1px 2px rgba(0,0,0,.15);
      font-family: 'Pretendard Variable', sans-serif;
      font-variant-numeric: tabular-nums;
    }
    .step-num::before {
      content: '';
      position: absolute;
      inset: -4px;
      border: 2px solid rgba(200,164,92,.25);
      border-radius: 50%;
    }

    .step-text {
      flex: 1;
      min-width: 0;
    }
    .step-text-head {
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }
    .step-text h3 {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.01em;
      margin: 0;
    }
    .step-tip-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 10px;
      background: rgba(200,164,92,.12);
      border: 1px solid rgba(200,164,92,.25);
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.5px;
      white-space: nowrap;
    }
    .step-text p {
      font-size: 14px;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
      word-break: keep-all;
      margin: 0;
    }

    /* ══ PHOTO STRIP ══ */
    .photo-strip {
      padding: 48px 0;
      background: var(--navy-deep);
      overflow: hidden;
    }
    .photo-strip-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.3);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .photo-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 0 24px 12px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .photo-scroll::-webkit-scrollbar { display: none; }
    .photo-item {
      width: 240px; height: 160px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
    }
    .photo-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s var(--ease);
    }
    .photo-item:hover img { transform: scale(1.08); }
    .photo-item::after {
      content: attr(data-label);
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px 12px 10px;
      background: linear-gradient(transparent, rgba(0,0,0,.6));
      color: #fff;
      font-size: 12px;
      font-weight: 600;
    }

    /* ══ CTA SECTION ══ */
    .cta-section {
      padding: 72px 24px 56px;
      background: var(--cream);
      text-align: center;
    }
    .cta-inner { max-width: 480px; margin: 0 auto; }
    .cta-inner h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.02em;
      line-height: 1.4;
      margin-bottom: 12px;
      word-break: keep-all;
    }
    .cta-inner h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .cta-inner > p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 32px;
      word-break: keep-all;
    }
    .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-primary, .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      transition: all .3s var(--ease);
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      color: #fff;
      box-shadow: 0 4px 20px rgba(27,42,74,.25);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(27,42,74,.3);
    }
    .btn-secondary {
      background: #fff;
      color: var(--navy);
      border: 1.5px solid var(--gray-200);
    }
    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    /* ══ FOOTER ══ */
    .footer {
      text-align: center;
      padding: 20px;
      font-size: 12px;
      color: var(--text-light);
      background: var(--cream);
      border-top: 1px solid var(--gray-200);
    }

    /* ══════════════════════════════════════
       🌻 SOLO PHOTO CARD (히어로 아래)
       ══════════════════════════════════════ */
    .solo-photo {
      padding: 60px 24px 0;
      background: var(--cream);
      display: flex;
      justify-content: center;
    }
    .solo-photo-card {
      position: relative;
      max-width: 720px;
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      box-shadow:
        0 20px 60px rgba(27,42,74,.18),
        0 6px 20px rgba(0,0,0,.08);
      transform: translateY(20px);
      opacity: 0;
      animation: photoReveal 1s cubic-bezier(.2,.8,.2,1) .2s forwards;
      transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    }
    .solo-photo-card:hover {
      transform: translateY(-4px);
      box-shadow:
        0 30px 80px rgba(27,42,74,.22),
        0 10px 30px rgba(0,0,0,.1);
    }
    @keyframes photoReveal {
      to { opacity: 1; transform: translateY(0); }
    }
    .solo-photo-card img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 480px;
      object-fit: cover;
      transition: transform .8s var(--ease);
    }
    .solo-photo-card:hover img { transform: scale(1.03); }
    /* 하단 금색 라인 강조 */
    .solo-photo-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    /* 캡션 */
    .solo-photo-caption {
      max-width: 720px;
      width: 100%;
      text-align: center;
      margin-top: 18px;
      font-size: 13px;
      color: var(--text-light);
      letter-spacing: .02em;
      font-style: italic;
    }
    .solo-photo-caption strong {
      color: var(--navy);
      font-weight: 700;
      font-style: normal;
    }
    @media (max-width: 768px) {
      .solo-photo { padding: 44px 16px 0; }
      .solo-photo-card { border-radius: 18px; }
      .solo-photo-card img { max-height: 320px; }
      .solo-photo-caption { font-size: 12.5px; margin-top: 14px; }
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1040px) {
      .sunday-hero { margin-left: 24px; margin-right: 24px; max-width: calc(100% - 48px); }
      .info-grid { padding: 0 24px; max-width: 100%; }
      .info-sub-header { padding: 0 28px; }
    }
    @media (max-width: 768px) {
      .hero-title { font-size: 30px; }
      .hero-cross { font-size: 80px; top: 10%; right: 8%; }
      .hero-moon { width: 72px; height: 72px; top: 9%; }
      .hero-moon::before { top: 18px; left: 16px; width: 11px; height: 11px; }
      .shooting-star { display: none; }
      .info-section { padding: 56px 16px 72px; }
      .info-section .section-header h2 { font-size: 24px; }
      .info-sub-header { padding: 0 4px; margin-bottom: 16px; }
      .info-sub-header .bar { flex-basis: 20px; }

      .sunday-hero {
        padding: 28px 22px;
        margin: 0 0 28px;
        max-width: 100%;
        border-radius: 20px;
      }
      .sunday-hero::after { font-size: 120px; right: 10px; }
      .sh-title { font-size: 22px; }
      .sh-desc { font-size: 13px; }
      .sh-times { grid-template-columns: 1fr; gap: 10px; }
      .sh-time { padding: 16px 18px; }
      .sh-time-clock { font-size: 20px; }

      .info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
        justify-content: start;
      }
      .info-card { padding: 24px 20px; }

      .steps-section { padding: 60px 18px 72px; }
      .steps-section .section-header h2 { font-size: 24px; }
      .step-list::before { left: 25px; }
      .step-item { padding: 22px 20px; gap: 16px; }
      .step-num { width: 42px; height: 42px; min-width: 42px; font-size: 16px; }
      .step-text h3 { font-size: 16px; }
      .step-tip-badge { font-size: 10px; padding: 2px 8px; }

      .welcome-hero h1 { font-size: 24px; }
      .pastor-inner h2 { font-size: 22px; }
      .cta-inner h2 { font-size: 22px; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 26px; }
      .hero-subtitle { font-size: 14px; }
      .hero-cross { font-size: 60px; }
      .hero-moon { width: 58px; height: 58px; }
      .hero-deco-line.line-1 { width: 60px; }
      .sh-title { font-size: 19px; }
      .sh-badge { font-size: 10px; letter-spacing: 1px; padding: 5px 10px; }
      .step-item { padding: 20px 16px; }
      .step-text-head { gap: 6px; }
      .photo-item { width: 200px; height: 140px; }
    }
  