
    /* ══════════════════════════════════════════════════
       EDUCATION — PREMIUM GENERATIONAL EDITION
       ■ Palette: Navy × Gold × Cream + Per-Dept Accents
       ■ Type: Serif (headline) × Sans (body)
    ══════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      /* Brand */
      --navy:        #1a2a4a;
      --navy-deep:   #0f1e38;
      --navy-light:  #243a5e;
      --gold:        #c9a84c;
      --gold-light:  #e2c475;
      --gold-deep:   #9a7529;

      --cream:       #fef9f0;
      --ivory:       #faf6eb;
      --paper:       #fffefa;
      --white:       #ffffff;

      --ink:         #1a1a2e;
      --text:        #2a2118;
      --text-mid:    #5c4a36;
      --text-soft:   #8a7a60;
      --line:        #e8ddc5;

      /* Per-Department Accents */
      --c-kinder:       #ff8a65;  /* 유치부 - 따뜻한 코랄 */
      --c-kinder-soft:  #fff0ec;
      --c-kinder-deep:  #d84315;

      --c-elem:         #26a69a;  /* 유초등부 - 청록 민트 */
      --c-elem-soft:    #e0f2f1;
      --c-elem-deep:    #00796b;

      --c-youth:        #3f6bff;  /* 청소년부 - 선명 블루 */
      --c-youth-soft:   #e8eeff;
      --c-youth-deep:   #1e40af;

      --c-young:        #7c3aed;  /* 청년부 - 바이올렛 */
      --c-young-soft:   #ede9ff;
      --c-young-deep:   #5b21b6;

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

      --shadow-soft: 0 4px 16px rgba(26, 42, 74, 0.08);
      --shadow-mid:  0 14px 40px rgba(26, 42, 74, 0.14);
      --shadow-deep: 0 28px 72px rgba(15, 30, 56, 0.28);
    }
    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;
    }
    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, small, article {
      word-break: keep-all;
      overflow-wrap: break-word;
    }
    /* 긴 영문 단어/URL은 잘라서 넘침 방지 */
    .hero-verse, .dept-desc, .dept-verse, .vision-item p, .sched-loc, .cta-inner p, .section-hd p, .sched-note {
      overflow-wrap: anywhere;
    }
    /* 플렉스 자식 overflow 방지 */
    .dept-card, .vision-item, .sched-item, .m-pillar, .info-block, .info-txt, .h-stat {
      min-width: 0;
    }

    /* ══════════════════════════════════════════════════
       FLOATING HOME
    ══════════════════════════════════════════════════ */
    .floating-home {
      position: fixed;
      top: 20px; left: 20px;
      z-index: 9999;
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 18px 10px 14px;
      background: rgba(15, 30, 56, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(226, 196, 117, 0.35);
      border-radius: 50px;
      color: var(--cream);
      font-size: 13px; font-weight: 700;
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
      transition: all .25s;
    }
    .floating-home:hover {
      background: var(--navy-deep);
      transform: translateY(-2px);
      color: var(--gold-light);
    }

    /* ══════════════════════════════════════════════════
       HERO — EDITORIAL COVER
    ══════════════════════════════════════════════════ */
    .hero {
      position: relative;
      padding: 130px 24px 90px;
      background:
        radial-gradient(ellipse at 20% 10%, rgba(201,168,76,0.16), transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(63, 107, 255, 0.10), transparent 55%),
        linear-gradient(180deg, #fef9f0 0%, #faf2dc 100%);
      text-align: center;
      overflow: hidden;
      color: var(--ink);
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 70px; left: 26px; right: 26px; bottom: 40px;
      border-top: 1px solid rgba(154, 117, 41, 0.22);
      border-bottom: 1px solid rgba(154, 117, 41, 0.22);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 74px; left: 30px; right: 30px; bottom: 44px;
      border-top: 1px solid rgba(154, 117, 41, 0.1);
      border-bottom: 1px solid rgba(154, 117, 41, 0.1);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      max-width: 880px;
      margin: 0 auto;
    }
    .hero-issue {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: var(--serif);
      font-size: 11px; font-weight: 500; font-style: italic;
      letter-spacing: 0.4em;
      color: var(--gold-deep);
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero-issue::before,
    .hero-issue::after {
      content: ''; display: inline-block;
      width: 32px; height: 1px;
      background: var(--gold);
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(42px, 7vw, 84px);
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
    }
    .hero h1 .script {
      display: block;
      font-style: italic;
      font-weight: 500;
      font-size: 0.56em;
      color: var(--gold-deep);
      letter-spacing: 0.02em;
      margin-bottom: 10px;
    }
    .hero-verse {
      font-family: var(--serif);
      font-size: clamp(14px, 1.6vw, 17px);
      font-style: italic;
      color: var(--text-mid);
      max-width: 600px;
      margin: 0 auto 28px;
      line-height: 1.9;
    }
    .hero-verse::before,
    .hero-verse::after {
      content: '❝';
      color: var(--gold);
      font-size: 22px;
      margin: 0 6px;
      vertical-align: -4px;
    }
    .hero-verse::after { content: '❞'; }
    .hero-verse cite {
      display: block;
      font-style: normal;
      font-size: 11.5px;
      letter-spacing: 0.3em;
      color: var(--gold-deep);
      margin-top: 12px;
      font-family: var(--sans);
      font-weight: 700;
    }
    .hero-stats {
      display: inline-flex; gap: 36px;
      padding: 18px 36px;
      background: rgba(255, 254, 250, 0.8);
      backdrop-filter: blur(8px);
      border: 1px solid var(--line);
      border-radius: 99px;
      box-shadow: var(--shadow-soft);
    }
    .h-stat {
      text-align: center;
    }
    .h-stat-num {
      font-family: var(--serif);
      font-size: 26px; font-weight: 700;
      color: var(--navy-deep);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .h-stat-num em { color: var(--gold-deep); font-style: normal; }
    .h-stat-lbl {
      font-size: 10px; font-weight: 700;
      color: var(--gold-deep);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 4px;
    }
    .h-stat-sep {
      width: 1px;
      background: var(--line);
    }

    @media (max-width: 640px) {
      .hero { padding: 90px 16px 64px; }
      .hero::before, .hero::after { left: 10px; right: 10px; }
      .hero h1 { font-size: clamp(34px, 9vw, 52px); letter-spacing: -0.03em; }
      .hero h1 .script { font-size: 0.5em; letter-spacing: 0.02em; }
      .hero-issue {
        font-size: 10px; letter-spacing: 0.3em; gap: 8px;
      }
      .hero-issue::before, .hero-issue::after { width: 20px; }
      .hero-verse { font-size: 13.5px; padding: 0 4px; line-height: 1.85; margin-bottom: 24px; }
      .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 14px 18px;
        padding: 12px 20px;
        border-radius: 22px;
      }
      .h-stat-num { font-size: 19px; }
      .h-stat-lbl { font-size: 9px; letter-spacing: 0.15em; margin-top: 2px; }
      .h-stat-sep { display: none; }
    }
    @media (max-width: 380px) {
      .hero-stats { justify-content: space-around; gap: 10px 14px; }
    }

    /* ══════════════════════════════════════════════════
       DEPT NAV — STICKY PILLS
    ══════════════════════════════════════════════════ */
    .dept-nav {
      position: sticky; top: 0;
      background: rgba(255, 254, 250, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      z-index: 50;
      padding: 14px 24px;
    }
    .dept-nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .dept-tab {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 18px;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 99px;
      font-family: var(--sans);
      font-size: 13px; font-weight: 700;
      color: var(--text-mid);
      letter-spacing: 0.02em;
      transition: all .2s;
      cursor: pointer;
      white-space: nowrap;
    }
    .dept-tab:hover {
      background: var(--ivory);
      color: var(--navy-deep);
      border-color: var(--line);
    }
    @media (max-width: 640px) {
      .dept-nav { padding: 10px 12px; }
      .dept-nav-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
      }
      .dept-nav-inner::-webkit-scrollbar { display: none; }
      .dept-tab {
        padding: 7px 14px;
        font-size: 12.5px;
        flex-shrink: 0;
      }
    }

    /* ══════════════════════════════════════════════════
       DEPT CARDS — MAGAZINE EDITORIAL
    ══════════════════════════════════════════════════ */
    .dept-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 90px 24px 50px;
    }
    .section-hd {
      text-align: center;
      margin-bottom: 56px;
    }
    .kicker {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: var(--serif);
      font-size: 11px; font-style: italic;
      color: var(--gold-deep);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .kicker::before, .kicker::after {
      content: ''; display: inline-block;
      width: 26px; height: 1px;
      background: var(--gold);
    }
    .section-hd h2 {
      font-family: var(--serif);
      font-size: clamp(30px, 4.5vw, 46px);
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .section-hd h2 .it { font-style: italic; color: var(--gold-deep); font-weight: 500; }
    .section-hd p {
      font-family: var(--serif);
      font-size: 15.5px;
      color: var(--text-mid);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.85;
    }

    .dept-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      justify-content: start;
    }
    .dept-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      transition: all .4s cubic-bezier(.2,.8,.2,1);
      box-shadow: var(--shadow-soft);
      position: relative;
    }
    .dept-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-deep);
    }
    .dept-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 6px;
      background: var(--dept-color, var(--gold));
      z-index: 2;
    }

    .dept-hero {
      position: relative;
      height: 180px;
      padding: 30px 34px;
      overflow: hidden;
      color: #fff;
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .dept-hero-bg {
      position: absolute; inset: 0;
      background: var(--dept-bg, linear-gradient(135deg, var(--navy), var(--navy-light)));
      z-index: 0;
    }
    .dept-hero::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.55) 100%);
      z-index: 1;
    }
    .dept-hero-content {
      position: relative;
      z-index: 2;
    }
    .dept-icon {
      position: absolute;
      top: 24px; right: 24px;
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      display: flex; align-items: center; justify-content: center;
      font-size: 30px;
      z-index: 3;
    }
    .dept-num {
      font-family: var(--serif);
      font-size: 12px;
      font-style: italic;
      letter-spacing: 0.3em;
      opacity: 0.8;
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .dept-title {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.1;
      margin-bottom: 4px;
      text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    }
    .dept-age {
      font-size: 12.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.88);
      letter-spacing: 0.04em;
    }

    .dept-body {
      padding: 30px 32px 24px;
    }
    .dept-verse {
      font-family: var(--serif);
      font-size: 13.5px;
      font-style: italic;
      color: var(--dept-deep, var(--gold-deep));
      line-height: 1.7;
      margin-bottom: 16px;
      padding-left: 14px;
      border-left: 2px solid var(--dept-color, var(--gold));
    }
    .dept-desc {
      font-family: var(--sans);
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 22px;
    }

    /* 예배 정보 — 프리미엄 인포 블록 */
    .dept-info {
      background: var(--dept-soft, var(--ivory));
      border-radius: 12px;
      padding: 16px 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 18px;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .info-block {
      display: flex; align-items: flex-start; gap: 10px;
    }
    .info-ico {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: var(--paper);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }
    .info-txt {
      flex: 1;
      min-width: 0;
    }
    .info-lbl {
      font-size: 10px;
      font-weight: 800;
      color: var(--dept-deep, var(--gold-deep));
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .info-val {
      font-family: var(--sans);
      font-size: 13.5px;
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.4;
    }
    .info-val small {
      display: block;
      font-size: 11.5px;
      font-weight: 500;
      color: var(--text-soft);
      margin-top: 2px;
    }

    .dept-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }
    .dept-tags {
      display: flex; gap: 6px; flex-wrap: wrap;
    }
    .dept-tag {
      font-size: 10.5px;
      font-weight: 700;
      color: var(--dept-deep, var(--gold-deep));
      background: var(--dept-soft, var(--ivory));
      padding: 4px 10px;
      border-radius: 99px;
      letter-spacing: 0.02em;
    }
    .dept-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--sans);
      font-size: 12.5px; font-weight: 800;
      color: var(--dept-color, var(--navy));
      letter-spacing: 0.03em;
      padding: 6px 14px;
      border-radius: 99px;
      border: 1.5px solid var(--dept-color, var(--navy));
      transition: all .2s;
    }
    .dept-btn:hover {
      background: var(--dept-color, var(--navy));
      color: var(--paper);
    }

    /* Per-Dept Themes */
    .dept-card.dept-kinder {
      --dept-color: var(--c-kinder);
      --dept-soft: var(--c-kinder-soft);
      --dept-deep: var(--c-kinder-deep);
      --dept-bg: linear-gradient(135deg, #d84315 0%, #ff7043 55%, #ffab91 100%);
    }
    .dept-card.dept-elem {
      --dept-color: var(--c-elem);
      --dept-soft: var(--c-elem-soft);
      --dept-deep: var(--c-elem-deep);
      --dept-bg: linear-gradient(135deg, #00695c 0%, #26a69a 55%, #80cbc4 100%);
    }
    .dept-card.dept-youth {
      --dept-color: var(--c-youth);
      --dept-soft: var(--c-youth-soft);
      --dept-deep: var(--c-youth-deep);
      --dept-bg: linear-gradient(135deg, #1e3a8a 0%, #3f6bff 55%, #93c5fd 100%);
    }
    .dept-card.dept-young {
      --dept-color: var(--c-young);
      --dept-soft: var(--c-young-soft);
      --dept-deep: var(--c-young-deep);
      --dept-bg: linear-gradient(135deg, #4c1d95 0%, #7c3aed 55%, #c4b5fd 100%);
    }

    @media (max-width: 900px) {
      .dept-section { padding: 64px 16px 40px; }
      .dept-grid { grid-template-columns: 1fr; gap: 18px; justify-content: start; }
      .dept-hero { height: 160px; padding: 22px 22px; }
      .dept-title { font-size: 26px; line-height: 1.15; }
      .dept-icon { width: 54px; height: 54px; font-size: 24px; top: 20px; right: 20px; }
      .dept-body { padding: 22px 22px 20px; }
      .dept-info { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 14px; }
      .info-ico { width: 32px; height: 32px; font-size: 14px; }
      .info-val { font-size: 12.5px; line-height: 1.35; }
      .info-val small { font-size: 10.5px; }
      .info-lbl { font-size: 9px; letter-spacing: 0.12em; }
      .dept-foot { flex-wrap: wrap; gap: 12px; }
      .dept-verse { font-size: 12.5px; padding-left: 10px; }
      .dept-desc { font-size: 13px; line-height: 1.75; }
    }
    @media (max-width: 500px) {
      .dept-hero { height: 150px; padding: 20px 20px; }
      .dept-title { font-size: 23px; }
      .dept-num { font-size: 10.5px; letter-spacing: 0.2em; }
      .dept-age { font-size: 11.5px; }
      .dept-icon { width: 46px; height: 46px; font-size: 20px; top: 16px; right: 16px; }
      .dept-body { padding: 20px 18px 18px; }
      .dept-info { grid-template-columns: 1fr; gap: 10px; }
      .dept-tag { font-size: 10px; padding: 3px 9px; }
      .dept-btn { font-size: 11.5px; padding: 5px 12px; }
    }

    /* ══════════════════════════════════════════════════
       VISION — 4 PILLARS
    ══════════════════════════════════════════════════ */
    .vision-section {
      background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
      padding: 90px 24px 100px;
      position: relative;
    }
    .vision-section::before,
    .vision-section::after {
      content: '';
      position: absolute;
      left: 50%; transform: translateX(-50%);
      width: 60%; max-width: 500px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .vision-section::before { top: 0; }
    .vision-section::after { bottom: 0; }
    .vision-inner {
      max-width: 1180px;
      margin: 0 auto;
    }
    .vision-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .vision-item {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 36px 26px 30px;
      text-align: center;
      transition: all .3s cubic-bezier(.2,.8,.2,1);
      position: relative;
      overflow: hidden;
    }
    .vision-item::before {
      content: '';
      position: absolute;
      top: 0; left: 30px; right: 30px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-light), var(--navy));
      opacity: 0;
      transition: opacity .3s;
    }
    .vision-item:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-mid);
      border-color: rgba(201, 168, 76, 0.4);
    }
    .vision-item:hover::before { opacity: 1; }
    .vision-num {
      font-family: var(--serif);
      font-size: 40px; font-weight: 700;
      font-style: italic;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .vision-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 58px; height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ivory), var(--cream));
      border: 1px solid var(--line);
      font-size: 26px;
      margin: 8px 0 14px;
    }
    .vision-item h3 {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 600;
      color: var(--navy-deep);
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .vision-item p {
      font-size: 13.5px;
      color: var(--text-soft);
      line-height: 1.8;
    }

    @media (max-width: 900px) {
      .vision-section { padding: 72px 16px 84px; }
      .vision-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .vision-item { padding: 28px 18px 24px; }
      .vision-num { font-size: 32px; }
      .vision-icon { width: 50px; height: 50px; font-size: 22px; }
      .vision-item h3 { font-size: 17px; line-height: 1.25; }
      .vision-item p { font-size: 12.5px; line-height: 1.7; }
    }
    @media (max-width: 400px) {
      .vision-grid { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════════════════
       SCHEDULE — PREMIUM MASTER TABLE
    ══════════════════════════════════════════════════ */
    .sched-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 90px 24px 40px;
    }
    .sched-wrap {
      background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-light) 100%);
      border-radius: 26px;
      padding: 56px 48px 48px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-deep);
      border: 1px solid rgba(226, 196, 117, 0.25);
    }
    .sched-wrap::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
      pointer-events: none;
    }
    .sched-wrap::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(63, 107, 255, 0.15), transparent 70%);
      pointer-events: none;
    }
    .sched-head {
      position: relative;
      text-align: center;
      margin-bottom: 44px;
    }
    .sched-head .kicker {
      color: var(--gold-light);
    }
    .sched-head .kicker::before, .sched-head .kicker::after {
      background: var(--gold);
    }
    .sched-head h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 4.5vw, 40px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .sched-head h2 .it { font-style: italic; color: var(--gold-light); font-weight: 500; }
    .sched-head p {
      font-family: var(--serif);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8;
      max-width: 540px;
      margin: 0 auto;
    }

    .sched-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .sched-item {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(226, 196, 117, 0.25);
      border-radius: 16px;
      padding: 28px 24px 24px;
      backdrop-filter: blur(6px);
      position: relative;
      overflow: hidden;
      transition: all .3s;
    }
    .sched-item:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.1);
    }
    .sched-item::before {
      content: '';
      position: absolute;
      top: 0; left: 24px; right: 24px;
      height: 2px;
      background: var(--item-color, var(--gold));
    }
    .sched-item.c-kinder { --item-color: var(--c-kinder); }
    .sched-item.c-elem   { --item-color: var(--c-elem); }
    .sched-item.c-youth  { --item-color: var(--c-youth); }
    .sched-item.c-young  { --item-color: var(--c-young); }

    .sched-dept-ico {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(226, 196, 117, 0.25);
      font-size: 22px;
      margin-bottom: 14px;
    }
    .sched-dept {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }
    .sched-age {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.05em;
      margin-bottom: 18px;
    }
    .sched-time {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--item-color, var(--gold-light));
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      line-height: 1.2;
    }
    .sched-time small {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      font-family: var(--sans);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 4px;
      font-style: normal;
    }
    .sched-loc {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.6;
      padding-top: 14px;
      margin-top: 12px;
      border-top: 1px dashed rgba(226, 196, 117, 0.25);
    }
    .sched-loc::before {
      content: '📍 ';
      color: var(--gold-light);
    }

    .sched-note {
      position: relative;
      margin-top: 36px;
      padding: 20px 26px;
      background: rgba(201, 168, 76, 0.12);
      border: 1px solid rgba(226, 196, 117, 0.3);
      border-radius: 12px;
      text-align: center;
      font-family: var(--serif);
      font-size: 13.5px;
      font-style: italic;
      color: var(--gold-light);
      line-height: 1.8;
    }
    .sched-note strong { color: #fff; font-weight: 600; }

    @media (max-width: 900px) {
      .sched-section { padding: 72px 16px 32px; }
      .sched-wrap { padding: 36px 22px 32px; border-radius: 20px; }
      .sched-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .sched-item { padding: 22px 18px 18px; }
      .sched-time { font-size: 20px; }
      .sched-time small { font-size: 9.5px; letter-spacing: 0.15em; }
      .sched-dept { font-size: 18px; }
      .sched-age { font-size: 10.5px; margin-bottom: 14px; }
      .sched-loc { font-size: 12px; line-height: 1.55; padding-top: 12px; margin-top: 10px; }
      .sched-dept-ico { width: 40px; height: 40px; font-size: 20px; margin-bottom: 12px; }
      .sched-note { font-size: 12.5px; padding: 16px 18px; margin-top: 28px; line-height: 1.75; }
    }
    @media (max-width: 500px) {
      .sched-grid { grid-template-columns: 1fr; gap: 10px; }
      .sched-wrap { padding: 30px 18px 28px; }
    }

    /* ══════════════════════════════════════════════════
       CTA JOIN
    ══════════════════════════════════════════════════ */
    .cta-section {
      max-width: 1180px;
      margin: 60px auto 0;
      padding: 0 24px;
    }
    .cta-inner {
      background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 56px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-inner::before {
      content: '';
      position: absolute;
      top: -50px; left: -50px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 70%);
    }
    .cta-inner h2 {
      font-family: var(--serif);
      font-size: clamp(24px, 3.5vw, 34px);
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.3;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
      position: relative;
    }
    .cta-inner h2 .it { font-style: italic; color: var(--gold-deep); font-weight: 500; }
    .cta-inner p {
      font-family: var(--serif);
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 26px;
      position: relative;
    }
    .cta-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy-deep);
      color: var(--cream);
      font-family: var(--sans);
      font-size: 14px; font-weight: 800;
      padding: 13px 32px;
      border-radius: 99px;
      transition: all .25s;
      border: 1px solid var(--navy-deep);
      position: relative;
      box-shadow: 0 10px 26px rgba(15, 30, 56, 0.25);
    }
    .cta-btn:hover {
      background: var(--gold);
      color: var(--navy-deep);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(201, 168, 76, 0.35);
    }
    .cta-btn::after {
      content: '→';
      transition: transform .25s;
    }
    .cta-btn:hover::after { transform: translateX(4px); }

    @media (max-width: 600px) {
      .cta-section { padding: 0 16px; margin-top: 48px; }
      .cta-inner { padding: 38px 22px; border-radius: 16px; }
      .cta-inner h2 { font-size: 22px; line-height: 1.35; }
      .cta-inner p { font-size: 13.5px; line-height: 1.75; padding: 0 4px; }
      .cta-btn { font-size: 13px; padding: 12px 26px; }
    }

    /* ══════════════════════════════════════════════════
       SECTION HEADER MOBILE ADJUST
    ══════════════════════════════════════════════════ */
    @media (max-width: 640px) {
      .section-hd { margin-bottom: 40px; padding: 0 4px; }
      .section-hd h2 { font-size: clamp(24px, 7vw, 34px); line-height: 1.25; }
      .section-hd p { font-size: 13.5px; line-height: 1.75; }
      .kicker { font-size: 10px; letter-spacing: 0.3em; gap: 8px; }
      .kicker::before, .kicker::after { width: 20px; }
      .sched-head h2 { font-size: clamp(24px, 6.5vw, 32px); }
      .sched-head p { font-size: 13px; }
    }

    /* ══════════════════════════════════════════════════
       FOOTER — COLOPHON
    ══════════════════════════════════════════════════ */
    .site-footer {
      background: var(--navy-deep);
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      padding: 60px 24px 52px;
      margin-top: 80px;
      position: relative;
    }
    .site-footer::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 60%; max-width: 500px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .footer-mark {
      font-family: var(--serif);
      font-size: 13px; font-style: italic;
      color: var(--gold-light);
      letter-spacing: 0.3em;
      margin-bottom: 14px;
      text-transform: uppercase;
    }
    .footer-church {
      font-family: var(--serif);
      font-size: 18px; font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
    }
    .footer-verse {
      font-family: var(--serif);
      font-size: 13px;
      font-style: italic;
      color: rgba(226, 196, 117, 0.75);
      margin-top: 10px;
      letter-spacing: 0.02em;
    }

    /* ══════════════════════════════════════════════════
       REVEAL
    ══════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
  
    /* ── 모바일 레이아웃 수정 ── */
    @media (max-width: 768px) {
      .vision-grid, .dept-grid, .feature-grid, .program-grid {
        grid-template-columns: 1fr !important; gap: 16px;
      }
      .hd { padding: 0 16px; }
    }
    @media (max-width: 480px) {
      .vision-grid, .dept-grid, .feature-grid, .program-grid {
        grid-template-columns: 1fr !important;
      }
    }
