/* ════════════════════════════════════════════════════════════
   부산광역자살예방센터 — 마음구조 109 (리뉴얼 v2)
   ──────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --c-ink: #0a1a36;
  --c-navy: #1B3A6B;
  --c-navy-d: #112a52;
  --c-navy-soft: #e5ecf6;
  --c-red: #E63946;           /* 위기 강조 */
  --c-red-d: #b71c2a;
  --c-mint: #3DAA9A;
  --c-mint-soft: #defaf2;
  --c-lilac: #8B6FCB;
  --c-lilac-soft: #ede5fa;
  --c-blue: #2c7ad6;
  --c-blue-soft: #e1edfb;
  --c-warm: #f3b664;          /* 무지개 박스 따뜻한 톤 */

  --c-text: #15244a;
  --c-text-soft: #43547a;
  --c-muted: #7e8aa6;
  --c-line: #e4e9f1;
  --c-line-d: #d2d9e6;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f8fc;
  --c-bg-dark: #0a1a36;

  --wrap: 1280px;
  --rd-sm: 8px;
  --rd-md: 12px;
  --rd-lg: 18px;
  --rd-xl: 26px;

  --ff: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--ff); color: var(--c-text); line-height: 1.5; -webkit-font-smoothing: antialiased; background: #fff; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
i.bi { line-height: 1; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--c-navy); color: #fff; padding: 10px 16px; z-index: 9999; }
.skip:focus { left: 0; }

/* ═════════ TOPBAR ═════════ */
.topbar {
  background: #0a1a36; color: #b8c4dd; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 42px; gap: 16px;
}
.sites { display: flex; gap: 2px; }
.sites__a {
  display: inline-flex; align-items: center;
  padding: 0 14px; height: 30px; border-radius: 100px;
  color: #b8c4dd; font-weight: 500;
  transition: background .2s, color .2s;
}
.sites__a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.sites__a.is-on { background: #fff; color: var(--c-navy); font-weight: 700; }
.util { display: flex; align-items: center; gap: 10px; }
.sns { display: flex; gap: 8px; }
.sns a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background .2s, color .2s;
}
.sns a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.util__sep { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }
.lang {
  background: transparent; color: #b8c4dd;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; padding: 4px 8px; font-size: 12.5px;
}
.lang option { background: #0a1a36; }
.fz { display: flex; gap: 2px; }
.fz__b {
  width: 28px; height: 28px; border-radius: 6px;
  font-size: 12px; font-weight: 700; color: #b8c4dd;
  border: 1px solid rgba(255,255,255,0.18);
}
.fz__b:hover { background: rgba(255,255,255,0.08); color: #fff; }
.fz__b.is-on { background: var(--c-red); border-color: var(--c-red); color: #fff; }

/* ═════════ HEADER ═════════ */
.hd {
  position: sticky; top: 0; z-index: 800;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .25s;
}
.hd.is-scrolled { box-shadow: 0 8px 28px rgba(10,26,54,0.08); }
.hd__inner {
  display: flex; align-items: center; gap: 28px;
  height: 84px;
}
.hd__logo { flex-shrink: 0; }
.hd__logo img { height: 48px; width: auto; }

/* GNB */
.gnb { flex: 1; }
.gnb > ul { display: flex; justify-content: center; gap: 4px; }
.gnb > ul > li { position: relative; }
.gnb > ul > li > a {
  display: inline-flex; align-items: center; height: 84px;
  padding: 0 20px; font-size: 16px; font-weight: 700;
  color: var(--c-ink); position: relative;
  transition: color .2s;
}
.gnb > ul > li > a::after {
  content: ''; position: absolute; left: 20px; right: 20px; bottom: 20px;
  height: 3px; background: var(--c-red); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.gnb > ul > li:hover > a { color: var(--c-navy); }
.gnb > ul > li:hover > a::after { transform: scaleX(1); }

.gnb__sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; min-width: 180px; padding: 10px;
  border-radius: var(--rd-md);
  box-shadow: 0 18px 40px rgba(10,26,54,0.16);
  opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
}
.gnb > ul > li:hover .gnb__sub,
.gnb > ul > li:focus-within .gnb__sub {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.gnb__sub li a {
  display: block; padding: 9px 14px; border-radius: 7px;
  font-size: 14.5px; font-weight: 500; color: var(--c-text-soft);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.gnb__sub li a:hover { background: var(--c-navy-soft); color: var(--c-navy); }

.hd__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* 109 헤더 고정 버튼 */
.hd-109 {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 18px 8px 12px;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-d) 100%);
  color: #fff; border-radius: 100px;
  box-shadow: 0 8px 22px rgba(230,57,70,0.32);
  transition: transform .2s, box-shadow .2s;
}
.hd-109:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(230,57,70,0.45); }
.hd-109__ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.20);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  animation: ring 2s infinite;
}
@keyframes ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
.hd-109 strong { display: block; font-size: 16px; font-weight: 800; line-height: 1.1; }
.hd-109 small { font-size: 11.5px; font-weight: 500; opacity: 0.88; }

.hd__mb {
  display: none;
  width: 44px; height: 44px; border-radius: 50%;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.hd__mb span {
  display: block; width: 22px; height: 2px;
  background: var(--c-ink); border-radius: 2px;
}

/* 모바일 메가메뉴 */
.mb {
  position: fixed; inset: 0;
  background: rgba(10,26,54,0.97);
  z-index: 970;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  overflow-y: auto;
}
.mb.is-on { opacity: 1; visibility: visible; }
.mb__inner {
  padding: 80px 24px 40px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px;
  color: #fff;
}
.mb__col h3 {
  font-size: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 12px; color: #b3c7eb;
}
.mb__col a {
  display: block; padding: 9px 0; font-size: 15px;
  color: #fff; transition: padding .2s, color .2s;
}
.mb__col a:hover { padding-left: 6px; color: #f3b664; }
.mb__x {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.10); color: #fff; font-size: 20px;
}
.mb__x:hover { background: rgba(255,255,255,0.2); }

/* ═════════ HERO ═════════ */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 8% 100%, rgba(61,170,154,0.15) 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(243,182,100,0.10) 0%, transparent 45%),
    linear-gradient(180deg, #0a1a36 0%, #142b58 100%);
  color: #fff;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.5; pointer-events: none;
}
.hero__glow--1 { top: -100px; right: -80px; width: 480px; height: 480px; background: rgba(230,57,70,0.30); }
.hero__glow--2 { bottom: -80px; left: 10%; width: 380px; height: 380px; background: rgba(61,170,154,0.25); }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}

/* 좌측 카피 */
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  color: #c9d6ef;
  margin-bottom: 28px;
}
.hero__chip-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-red);
  box-shadow: 0 0 0 0 rgba(230,57,70,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}
.hero__h {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__q { display: block; color: #c9d6ef; font-weight: 700; }
.hero__b {
  display: block; color: #fff;
  margin-top: 8px;
}
.hero__b em {
  font-style: normal;
  background: linear-gradient(135deg, #f3b664 0%, var(--c-red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1em;
}
.hero__p {
  font-size: 1.08rem; color: #c9d6ef; line-height: 1.85;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px;
  font-weight: 800; font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn--solid { background: var(--c-red); color: #fff; box-shadow: 0 10px 24px rgba(230,57,70,0.36); }
.btn--solid:hover { background: var(--c-red-d); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(230,57,70,0.50); }
.btn--line {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--line:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.btn--white { background: #fff; color: var(--c-navy); }
.btn--white:hover { background: var(--c-warm); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-line-d); }
.btn--ghost:hover { background: var(--c-bg-soft); }

/* 히어로 보조 퀵 */
.hero__quick {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__quick a {
  display: flex; flex-direction: column;
  padding: 12px 16px; border-radius: var(--rd-md);
  background: rgba(255,255,255,0.06);
  transition: background .2s, transform .2s;
}
.hero__quick a:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.hero__quick strong { font-size: 17px; font-weight: 800; color: #fff; }
.hero__quick span { font-size: 12px; color: #a3b5d9; margin-top: 2px; }

/* 우측 비디오 슬라이더 (bspc.kr 스타일 — 10개 영상 + 도트 인디케이터) */
.hero__video { position: relative; }
.hs { position: relative; }
.hs__viewport {
  position: relative;
  border-radius: var(--rd-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.hs__track { position: relative; width: 100%; height: 100%; }
.hs__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .6s ease, visibility .6s;
  cursor: pointer;
}
.hs__slide.is-on { opacity: 1; visibility: visible; }
.hs__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s, opacity .3s;
}
.hs__slide:hover img { transform: scale(1.03); opacity: 0.92; }

/* YouTube 스타일 상단 바 */
.hs__bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, transparent 100%);
  color: #fff;
}
.hs__bar-logo {
  width: 30px; height: 30px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.hs__bar-logo img { width: 80%; height: 80%; object-fit: contain; }
.hs__bar strong {
  font-size: 13.5px; font-weight: 700; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block;
}
.hs__bar-ch {
  font-size: 11.5px; opacity: 0.85;
  display: block;
  white-space: nowrap;
  margin-left: 40px;
  flex-basis: 100%;
  position: absolute; left: 18px; top: 32px;
}

/* 재생 버튼 */
.hs__play {
  position: absolute; top: 50%; left: 50%; z-index: 3;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--c-red);
  color: #fff; font-size: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(230,57,70,0.55);
  transition: transform .2s, background .2s;
  cursor: pointer;
}
.hs__play::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  animation: ring2 2.4s infinite;
}
@keyframes ring2 {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.hs__slide:hover .hs__play { transform: translate(-50%, -50%) scale(1.08); background: var(--c-red-d); }

/* YouTube 워터마크 */
.hs__yt {
  position: absolute; bottom: 14px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  border-radius: 6px;
  color: #fff; font-size: 12px; font-weight: 600;
}
.hs__yt i { color: #ff0000; background: #fff; border-radius: 3px; padding: 1px 3px; font-size: 14px; }

/* 도트 인디케이터 — bspc 스타일 */
.hs__dots {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}
.hs__dot {
  width: 12px; height: 12px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: width .35s ease, background .25s ease, border-color .25s ease;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.hs__dot:hover {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.8);
}
.hs__dot.is-on {
  width: 34px;
  background: var(--c-blue);
  border-color: var(--c-blue);
}

/* 재생 중 상태 — iframe 표시, 썸네일/오버레이 숨김 */
.hs__slide iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; z-index: 4;
  background: #000;
}
.hs__slide.is-playing img,
.hs__slide.is-playing .hs__bar,
.hs__slide.is-playing .hs__play,
.hs__slide.is-playing .hs__yt {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

/* ═════════ SECTION HEAD ═════════ */
.sh { margin-bottom: 40px; }
.sh--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.sh__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--c-red);
  background: #ffe0e3;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 12px;
}
.sh__eyebrow--dark { background: rgba(255,255,255,0.12); color: #f3b664; }
.sh__eyebrow--mj { background: #fff2d8; color: #a76d10; }
.sh__title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--c-ink);
  margin-bottom: 12px;
}
.sh__desc { color: var(--c-text-soft); font-size: 1rem; }

.more {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 100px;
  background: var(--c-ink); color: #fff;
  font-size: 13.5px; font-weight: 700;
  transition: background .2s, transform .2s;
}
.more:hover { background: var(--c-red); transform: translateX(3px); }

/* ═════════ ACTION 4 ═════════ */
.act { padding: 110px 0 100px; background: #fff; }
.act__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.act__c {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 30px 30px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--rd-lg);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
  aspect-ratio: 1 / 1.15;
}
.act__c::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent, var(--c-red));
  opacity: 0; transition: opacity .3s;
  z-index: 0;
}
.act__c > * { position: relative; z-index: 1; }
.act__c:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(10,26,54,0.16);
  border-color: transparent;
  color: #fff;
}
.act__c:hover::before { opacity: 1; }
.act__c:hover .act__ic { background: rgba(255,255,255,0.2); color: #fff; }
.act__c:hover p { color: rgba(255,255,255,0.92); }
.act__c:hover .act__arr { background: #fff; color: var(--accent); }

.act__c--red    { --accent: var(--c-red); }
.act__c--lilac  { --accent: var(--c-lilac); }
.act__c--mint   { --accent: var(--c-mint); }
.act__c--blue   { --accent: var(--c-blue); }

.act__ic {
  width: 64px; height: 64px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft, var(--c-bg-soft));
  color: var(--accent);
  font-size: 30px;
  margin-bottom: 28px;
  transition: background .3s, color .3s;
}
.act__c--red   { --accent-soft: #ffe0e3; }
.act__c--lilac { --accent-soft: var(--c-lilac-soft); }
.act__c--mint  { --accent-soft: var(--c-mint-soft); }
.act__c--blue  { --accent-soft: var(--c-blue-soft); }

.act__c h3 {
  font-size: 1.3rem; color: var(--c-ink);
  margin-bottom: 10px; transition: color .3s;
}
.act__c:hover h3 { color: #fff; }
.act__c p {
  font-size: 0.93rem; color: var(--c-text-soft); line-height: 1.6;
  flex: 1; transition: color .3s;
}
.act__arr {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-top: 18px;
  transition: background .3s, color .3s;
}

/* ═════════ STORY (사연 노출) ═════════ */
.story {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(243,182,100,0.10) 0%, transparent 40%),
    linear-gradient(135deg, #0a1a36 0%, #1d3260 100%);
  color: #fff;
}
.story__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.story__h {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.2; margin: 14px 0 22px;
}
.story__p {
  font-size: 1rem; color: #c9d6ef; line-height: 1.85;
  margin-bottom: 30px;
}
.story__safe {
  margin-top: 24px; font-size: 13.5px; color: #a3b5d9;
}
.story__safe i { color: var(--c-mint); margin-right: 6px; }
.story__safe strong { color: #fff; }

.story__r {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.bub {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: var(--rd-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: transform .25s, background .25s, border-color .25s;
}
.bub:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: var(--c-warm);
}
.bub i {
  display: inline-block;
  font-size: 22px; color: var(--c-warm);
  margin-bottom: 12px;
}
.bub p {
  font-size: 1.08rem; font-weight: 700; line-height: 1.45;
  margin-bottom: 18px;
}
.bub span {
  font-size: 13px; font-weight: 700; color: var(--c-warm);
}
.bub--1 { transform: translateY(0); }
.bub--2 { transform: translateY(20px); }
.bub--3 { transform: translateY(0); }
.bub--4 { transform: translateY(20px); }
.bub:hover { transform: translateY(-6px) !important; }

/* ═════════ 무지개 자조모임 ═════════ */
.mj {
  padding: 110px 0;
  background:
    radial-gradient(circle at 90% 10%, #fff6e7 0%, transparent 50%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}
.mj__inner { display: grid; grid-template-columns: 0.95fr 1fr; gap: 60px; align-items: center; }
.mj__img {
  position: relative; margin: 0;
  border-radius: var(--rd-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  box-shadow: 0 30px 60px rgba(10,26,54,0.18);
}
.mj__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: saturate(1.05) brightness(1.02);
}
.mj__img figcaption {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,0.95);
  padding: 14px 20px; border-radius: var(--rd-md);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}
.mj__img figcaption span {
  display: block; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.15em; color: #a76d10;
}
.mj__img figcaption strong {
  display: block; font-size: 22px; font-weight: 900;
  background: linear-gradient(90deg, #e63946, #f3b664, #3DAA9A, #2c7ad6, #8B6FCB);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.mj__band {
  display: flex; gap: 4px;
  height: 6px; width: 80px; border-radius: 100px; overflow: hidden;
  margin-bottom: 18px;
}
.mj__band i {
  flex: 1; display: block;
}
.mj__band i:nth-child(1) { background: #e63946; }
.mj__band i:nth-child(2) { background: #f3b664; }
.mj__band i:nth-child(3) { background: #ffd966; }
.mj__band i:nth-child(4) { background: #3DAA9A; }
.mj__band i:nth-child(5) { background: #2c7ad6; }
.mj__band i:nth-child(6) { background: #4a3c8c; }
.mj__band i:nth-child(7) { background: #8B6FCB; }

.mj__h {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--c-ink); line-height: 1.3; margin-bottom: 20px;
}
.mj__p {
  font-size: 1rem; color: var(--c-text-soft); line-height: 1.85;
  margin-bottom: 28px; word-break: keep-all;
}
.mj__p strong { color: #a76d10; font-weight: 800; }
.mj__feat {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 32px;
  padding: 20px 22px;
  border: 1px dashed #e6c98a;
  background: #fffaf0;
  border-radius: var(--rd-md);
}
.mj__feat li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--c-text);
}
.mj__feat li i {
  width: 28px; height: 28px; border-radius: 8px;
  background: #fff2d8; color: #a76d10;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.mj__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--mj { box-shadow: 0 10px 24px rgba(243,182,100,0.45); background: #f3b664; }
.btn--mj:hover { background: #e09f3e; box-shadow: 0 14px 30px rgba(243,182,100,0.6); }
.btn--ghost.btn--mj { background: transparent; border-color: #e09f3e; color: #a76d10; box-shadow: none; }
.btn--ghost.btn--mj:hover { background: #fff2d8; color: #a76d10; }

/* ═════════ 홍보영상 ═════════ */
.vd { padding: 110px 0; background: var(--c-bg-soft); }
.vd__tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.vd__tab {
  padding: 10px 22px;
  font-size: 14px; font-weight: 700;
  color: var(--c-text-soft);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  transition: all .2s;
}
.vd__tab:hover { color: var(--c-navy); border-color: var(--c-navy); }
.vd__tab.is-on {
  background: var(--c-navy); color: #fff; border-color: var(--c-navy);
}
.vd__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.vd__c {
  background: #fff;
  border-radius: var(--rd-lg);
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--c-line);
  transition: transform .25s, box-shadow .25s;
  display: block; width: 100%;
}
.vd__c[hidden] { display: none; }
.vd__c:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10,26,54,0.12);
}
.vd__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.vd__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s, opacity .3s;
}
.vd__c:hover .vd__thumb img { transform: scale(1.06); opacity: 0.85; }
.vd__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--c-red);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: transform .25s, background .25s, color .25s;
}
.vd__c:hover .vd__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--c-red); color: #fff;
}
.vd__time {
  position: absolute; right: 10px; bottom: 10px;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.75); color: #fff;
  font-size: 11px; font-weight: 700;
}
.vd__meta { padding: 16px 18px 18px; }
.vd__cat {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 9px; border-radius: 100px;
  background: var(--c-navy-soft); color: var(--c-navy);
  margin-bottom: 8px;
}
.vd__c h3 {
  font-size: 0.96rem; color: var(--c-ink);
  line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.vd__c time { font-size: 12.5px; color: var(--c-muted); }

/* ═════════ RELATED ═════════ */
.rel { padding: 90px 0 100px; background: #fff; }
.rel__ctrl { display: flex; gap: 6px; }
.rel__ctrl button {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-bg-soft); color: var(--c-ink); font-size: 16px;
  transition: background .2s, color .2s;
}
.rel__ctrl button:hover { background: var(--c-navy); color: #fff; }
.rel__viewport { overflow: hidden; }
.rel__track {
  display: flex; gap: 14px;
  transition: transform .5s ease;
}
.rel__track li { flex: 0 0 calc((100% - 5 * 14px) / 6); }
.rel__track a {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 26px 18px;
  background: var(--c-bg-soft);
  border-radius: var(--rd-md);
  font-size: 13.5px; font-weight: 600;
  color: var(--c-text);
  transition: all .25s;
}
.rel__track a:hover {
  background: var(--c-navy); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(10,26,54,0.18);
}
.rel__track i { font-size: 28px; color: var(--c-navy); transition: color .25s; }
.rel__track a:hover i { color: var(--c-warm); }

/* ═════════ FOOTER ═════════ */
.ft { background: #07142e; color: #95a4c4; padding: 70px 0 28px; font-size: 14px; }
.ft__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft__logo { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1) opacity(0.85); }
.ft__addr { line-height: 1.85; }
.ft__addr strong { color: #fff; }
.ft__addr a { color: #b7d4ff; text-decoration: underline; }
.ft__nav h3 { color: #fff; font-size: 15.5px; margin-bottom: 18px; }
.ft__nav li { margin-bottom: 9px; }
.ft__nav a { transition: color .2s; }
.ft__nav a:hover { color: #fff; }

.ft__sos {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-d) 100%);
  padding: 22px 24px; border-radius: var(--rd-md);
  color: #fff;
}
.ft__sos-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.18);
  margin-bottom: 12px;
}
.ft__sos-num {
  display: block;
  font-size: 44px; font-weight: 900; line-height: 1;
  color: #fff; margin-bottom: 6px;
}
.ft__sos p { font-size: 12.5px; opacity: 0.92; }
.ft__sos-sub {
  display: block; margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 12.5px; color: #fff;
}
.ft__sos-sub strong { font-size: 15px; }

.ft__bot {
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.ft__bot p { font-size: 13px; color: #6f7e9e; }
.ft__bot p strong { color: #b7c7e8; font-weight: 700; }
.ft__bot p span { margin-left: 8px; font-style: italic; color: #5a6985; }
.ft__bot nav { display: flex; gap: 4px; }
.ft__bot nav a {
  padding: 4px 12px; font-size: 13px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color .2s;
}
.ft__bot nav a:last-child { border-right: 0; }
.ft__bot nav a:hover { color: #fff; }
.ft__bot nav a.is-strong { color: #fff; font-weight: 700; }

/* ═════════ FLOATING QUICK ═════════ */
.qx {
  position: fixed; right: 18px; bottom: 18px; z-index: 700;
  display: flex; flex-direction: column; gap: 8px;
}
.qx__i {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px 11px 12px;
  min-width: 152px;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(10,26,54,0.18);
  font-size: 13px; font-weight: 700;
  color: var(--c-ink);
  transition: transform .2s, box-shadow .2s, color .2s;
}
.qx__i:hover { transform: translateX(-4px); box-shadow: 0 12px 28px rgba(10,26,54,0.25); }
.qx__i i { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; flex-shrink: 0; }
.qx__i--red i { background: var(--c-red); }
.qx__i--blue i { background: var(--c-blue); }
.qx__i--mint i { background: var(--c-mint); }
.qx__i--lilac i { background: var(--c-lilac); }
.qx__i span { display: flex; flex-direction: column; line-height: 1.2; }
.qx__i strong { display: block; font-size: 14px; color: var(--c-ink); }
.qx__top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  align-self: flex-end;
  box-shadow: 0 8px 22px rgba(10,26,54,0.30);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s, transform .25s, background .2s;
}
.qx__top.is-on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.qx__top:hover { background: var(--c-red); }

/* ═════════ VIDEO MODAL ═════════ */
.vm {
  position: fixed; inset: 0; z-index: 980;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.vm.is-on { opacity: 1; visibility: visible; }
.vm__box {
  position: relative; width: 100%; max-width: 960px;
}
.vm__x {
  position: absolute; top: -56px; right: -8px;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--c-ink); font-size: 18px;
}
.vm__frame {
  position: relative; aspect-ratio: 16 / 9;
  background: #000; border-radius: var(--rd-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.vm__frame iframe { width: 100%; height: 100%; border: 0; }
.vm__title { margin-top: 16px; color: #fff; font-size: 16px; font-weight: 700; text-align: center; }

/* ════════════════════════════════════════════════════════════
   반응형 — Breakpoints: 1280 / 1100 / 991 / 767 / 540 / 420
   ──────────────────────────────────────────────────────────── */

/* ─── 1280px 이하: 헤더 압축, 영상 그리드 3열 ─── */
@media (max-width: 1280px) {
  .hd__inner { gap: 14px; height: 76px; }
  .hd__logo img { height: 42px; }
  .gnb > ul > li > a { padding: 0 13px; font-size: 15px; height: 76px; }
  .gnb > ul > li > a::after { left: 13px; right: 13px; bottom: 18px; }
  .hd-109 { padding: 7px 16px 7px 10px; gap: 10px; }
  .hd-109__ic { width: 34px; height: 34px; font-size: 16px; }
  .hd-109 strong { font-size: 14.5px; }
  .hd-109 small { font-size: 11px; }

  .hero { padding: 70px 0 90px; }
  .hero__inner { gap: 48px; }
  .hero__h { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }

  .vd__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rel__track li { flex: 0 0 calc((100% - 4 * 14px) / 5); }
}

/* ─── 1100px 이하: GNB 햄버거, 주요 2칼럼 → 1칼럼 ─── */
@media (max-width: 1100px) {
  .gnb { display: none; }
  .hd__mb { display: flex; }

  .hero { padding: 60px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__video { max-width: 640px; margin: 0 auto; width: 100%; }

  .act__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .act__c { aspect-ratio: auto; min-height: 280px; }

  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__l { text-align: center; max-width: 640px; margin: 0 auto; }
  .story__r { max-width: 640px; margin: 0 auto; width: 100%; }
  .story__safe { justify-content: center; }

  .mj__inner { grid-template-columns: 1fr; gap: 36px; }
  .mj__img { aspect-ratio: 16 / 10; max-width: 600px; margin: 0 auto; }
  .mj__copy { max-width: 640px; margin: 0 auto; }

  .vd__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .rel__track li { flex: 0 0 calc((100% - 3 * 14px) / 4); }

  .ft__top { grid-template-columns: 1fr; gap: 28px; }
  .ft__sos { max-width: 360px; }
}

/* ─── 991px 이하: 작은 태블릿 — 헤더 컴팩트 ─── */
@media (max-width: 991px) {
  .topbar__inner { flex-wrap: wrap; height: auto; padding: 8px 24px; gap: 8px; }
  .sites { flex-wrap: wrap; gap: 0; }
  .sites__a { font-size: 12px; padding: 0 10px; height: 28px; }
  .util { flex-wrap: wrap; gap: 8px; }

  .hd__inner { height: 70px; }
  .hd__logo img { height: 38px; }

  .hero { padding: 52px 0 72px; }
  .hero__h { font-size: clamp(2rem, 5vw, 2.8rem); }
  .hero__p { font-size: 1rem; }

  .act, .story, .mj, .vd, .rel { padding: 70px 0; }
  .sh__title { font-size: clamp(1.5rem, 3vw, 2rem); }
  .sh { margin-bottom: 32px; }

  .story__r { grid-template-columns: repeat(2, 1fr); gap: 14px; }

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

  .vd__tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .vd__tab { flex: 0 0 auto; padding: 9px 18px; }

  .rel__track li { flex: 0 0 calc((100% - 2 * 14px) / 3); }
  .ft__top { gap: 24px; padding-bottom: 28px; }
}

/* ─── 767px 이하: 모바일 ─── */
@media (max-width: 767px) {
  .wrap { padding: 0 16px; }

  /* Topbar 압축 */
  .topbar__inner { padding: 6px 16px; }
  .sites__a { font-size: 11.5px; padding: 0 8px; }
  .util__sep { display: none; }
  .lang { font-size: 11.5px; padding: 3px 6px; }
  .fz__b { width: 26px; height: 26px; font-size: 11px; }

  /* Header */
  .hd__inner { height: 62px; gap: 8px; }
  .hd__logo img { height: 34px; }
  .hd-109 { padding: 6px 14px 6px 6px; gap: 8px; }
  .hd-109__ic { width: 30px; height: 30px; font-size: 14px; }
  .hd-109 strong { font-size: 13px; }
  .hd-109 small { display: none; }
  .hd__mb { width: 40px; height: 40px; }
  .hd__mb span { width: 20px; }

  /* Hero */
  .hero { padding: 40px 0 56px; }
  .hero__chip { font-size: 10.5px; padding: 6px 12px; letter-spacing: 0.1em; margin-bottom: 20px; }
  .hero__h { font-size: clamp(1.85rem, 7vw, 2.4rem); margin-bottom: 18px; }
  .hero__p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 26px; }
  .hero__cta { flex-direction: column; align-items: stretch; margin-bottom: 26px; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .hero__quick { grid-template-columns: 1fr; gap: 8px; padding-top: 20px; }
  .hero__quick a { flex-direction: row; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; }
  .hero__quick span { margin-top: 0; }

  /* Hero video slider */
  .hs__viewport { border-radius: var(--rd-lg); aspect-ratio: 16 / 10; }
  .hs__play { width: 56px; height: 56px; font-size: 22px; }
  .hs__bar { padding: 10px 14px; }
  .hs__bar strong { font-size: 12px; }
  .hs__bar-ch { font-size: 10.5px; top: 28px; left: 14px; margin-left: 36px; }
  .hs__bar-logo { width: 26px; height: 26px; }
  .hs__yt { padding: 4px 9px; font-size: 11px; bottom: 10px; right: 10px; }
  .hs__dots { margin-top: 16px; gap: 7px; }
  .hs__dot { width: 10px; height: 10px; }
  .hs__dot.is-on { width: 28px; }

  /* Section head */
  .sh { margin-bottom: 28px; }
  .sh--row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sh__title { font-size: 1.45rem; }
  .sh__desc { font-size: 0.92rem; }

  /* Sections padding */
  .act, .story, .mj, .vd, .rel { padding: 56px 0; }

  /* Action 4 */
  .act__grid { grid-template-columns: 1fr; gap: 12px; }
  .act__c { min-height: auto; padding: 26px 22px 24px; }
  .act__ic { width: 54px; height: 54px; font-size: 24px; border-radius: 14px; margin-bottom: 20px; }
  .act__c h3 { font-size: 1.15rem; }
  .act__arr { width: 38px; height: 38px; font-size: 16px; margin-top: 14px; }

  /* Story */
  .story__h { font-size: 1.7rem; }
  .story__p { font-size: 0.95rem; }
  .story__r { grid-template-columns: 1fr; gap: 12px; max-width: 480px; }
  .bub--2, .bub--4 { transform: none; }
  .bub { padding: 20px 18px 18px; }
  .bub p { font-size: 1rem; margin-bottom: 14px; }
  .bub i { font-size: 18px; margin-bottom: 8px; }

  /* MJ */
  .mj__img { aspect-ratio: 4 / 3; }
  .mj__img figcaption { padding: 10px 14px; left: 14px; bottom: 14px; }
  .mj__img figcaption strong { font-size: 18px; }
  .mj__h { font-size: 1.5rem; margin-bottom: 16px; }
  .mj__p { font-size: 0.95rem; margin-bottom: 22px; }
  .mj__feat { grid-template-columns: 1fr; padding: 16px 18px; gap: 10px; margin-bottom: 24px; }
  .mj__cta { flex-direction: column; align-items: stretch; }
  .mj__cta .btn { width: auto; }

  /* Video grid */
  .vd__grid { grid-template-columns: 1fr; gap: 16px; }
  .vd__tabs { margin-bottom: 20px; }
  .vd__tab { padding: 8px 16px; font-size: 13px; }
  .vd__c h3 { font-size: 0.95rem; }
  .vd__meta { padding: 14px 16px 16px; }

  /* Related */
  .rel__track li { flex: 0 0 calc((100% - 14px) / 2); }
  .rel__ctrl { display: none; }
  .rel__track a { padding: 20px 12px; font-size: 12.5px; }
  .rel__track i { font-size: 24px; }

  /* Mega menu */
  .mb__inner { grid-template-columns: 1fr; padding: 70px 20px 40px; gap: 24px; }
  .mb__x { top: 16px; right: 16px; width: 44px; height: 44px; }

  /* Footer */
  .ft { padding: 48px 0 24px; }
  .ft__top { gap: 24px; padding-bottom: 26px; }
  .ft__logo { height: 38px; margin-bottom: 14px; }
  .ft__sos-num { font-size: 36px; }
  .ft__bot { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 18px; }
  .ft__bot nav { flex-wrap: wrap; }
  .ft__bot p span { display: block; margin-left: 0; margin-top: 4px; }

  /* Floating QX — 모바일은 아이콘만 */
  .qx { right: 10px; bottom: 10px; gap: 6px; }
  .qx__i { min-width: 0; padding: 0; width: 46px; height: 46px; justify-content: center; }
  .qx__i i { margin: 0; }
  .qx__i span { display: none; }
  .qx__top { width: 42px; height: 42px; font-size: 15px; }

  /* Video modal */
  .vm { padding: 16px; }
  .vm__x { top: -50px; right: 0; width: 40px; height: 40px; }
}

/* ─── 540px 이하: 좁은 모바일 ─── */
@media (max-width: 540px) {
  .topbar__inner { padding: 6px 12px; }
  .sites { width: 100%; justify-content: center; }
  .util { width: 100%; justify-content: center; }

  .hd__inner { gap: 6px; }
  .hd-109 { padding: 6px 12px 6px 6px; }
  .hd-109 strong { font-size: 12.5px; }

  .hero__quick a { padding: 10px 12px; }
  .hero__quick strong { font-size: 15px; }

  .sh__eyebrow { font-size: 11px; padding: 4px 11px; letter-spacing: 0.12em; }

  .ft__sos { padding: 18px 20px; max-width: 100%; }
  .ft__sos-num { font-size: 32px; }
}

/* ─── 420px 이하: 매우 좁은 모바일 ─── */
@media (max-width: 420px) {
  .hero__h { font-size: 1.7rem; }
  .hero__chip { font-size: 10px; padding: 5px 10px; }
  .hs__play { width: 48px; height: 48px; font-size: 19px; }
  .hs__dot { width: 8px; height: 8px; }
  .hs__dot.is-on { width: 22px; }

  .sh__title { font-size: 1.3rem; }
  .act__c h3 { font-size: 1.05rem; }
  .story__h { font-size: 1.5rem; }
  .mj__h { font-size: 1.35rem; }

  .vd__cat, .vd__time { font-size: 10.5px; }

  .qx__i { width: 42px; height: 42px; }
  .qx__i i { width: 28px; height: 28px; font-size: 12px; }

  .ft__sos-num { font-size: 28px; }
}
