/* =========================================================
   이동현 중구청장 캠페인 — Democratic Blue System
   Senior-friendly, high-contrast, generous spacing
   ========================================================= */

:root {
  /* Core palette */
  --blue: #004EA2;        /* Democratic primary */
  --blue-600: #003E82;
  --blue-500: #1f63b3;
  --blue-200: #BFD6EE;
  --blue-100: #DCE9F6;
  --blue-050: #EEF4FB;    /* Light blue background */
  --navy: #001E62;        /* Deep navy headlines */
  --navy-ink: #0A1838;
  --ink: #0F1B33;
  --ink-2: #1E2A47;
  --muted: #4E5A75;
  --muted-2: #7B86A0;
  --line: #E2E9F1;
  --line-strong: #C7D5E5;
  --white: #ffffff;
  --cream: #F7F4EC;

  /* Accent — yellow for candidate number "1" */
  --yellow: #FFC629;
  --yellow-deep: #E8AE00;
  --red-accent: #E63946;  /* sparing use */

  /* Typography */
  --font-kr: "Pretendard", "Pretendard Variable", "Apple SD Gothic Neo",
             "Malgun Gothic", system-ui, -apple-system, sans-serif;
  --font-display: "Pretendard", "Apple SD Gothic Neo", system-ui, sans-serif;

  /* Spacing scale */
  --gap-1: 4px;
  --gap-2: 8px;
  --gap-3: 12px;
  --gap-4: 16px;
  --gap-5: 24px;
  --gap-6: 32px;
  --gap-7: 48px;
  --gap-8: 64px;
  --gap-9: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,27,51,0.06), 0 1px 1px rgba(15,27,51,0.04);
  --shadow-md: 0 6px 18px rgba(15,27,51,0.08), 0 2px 6px rgba(15,27,51,0.05);
  --shadow-lg: 0 18px 40px rgba(0,30,98,0.14), 0 6px 14px rgba(0,30,98,0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-kr);
  color: var(--ink);
  background: #FAFBFD;
  line-height: 1.55;
  font-size: 18px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-tight { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 7vw, 80px) 0; }
.bg-light { background: var(--blue-050); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}
.eyebrow.on-dark { color: var(--blue-200); }
.eyebrow.on-dark::before { background: var(--blue-200); }

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 14px;
  color: var(--navy);
}
.section-lead {
  margin-top: 18px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 720px;
  line-height: 1.65;
}

/* ---------- Top bar / nav ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 72px;
  gap: 16px;
}
.topbar-inner .brand { justify-self: start; }
.topbar-inner .nav { justify-self: center; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}
.brand-logo {
  width: 62px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  flex-shrink: 0;
}
.brand-num {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  font-size: 19px;
  box-shadow: 0 2px 0 var(--navy);
}
.brand-text { font-size: 17px; letter-spacing: -0.01em; }
.brand-text small { display: block; font-size: 12px; font-weight: 600; color: var(--muted-2); letter-spacing: 0.02em; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--blue-050); color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy) !important; }

/* 햄버거 — 데스크톱에선 숨김, 모바일/태블릿에서만 보임 */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px;
  transition: background 0.15s ease;
}
.nav-burger:hover { background: var(--blue-050); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

@media (max-width: 1040px) {
  .nav { display: none; }
  .nav-burger { display: inline-flex; }
  .topbar-inner { grid-template-columns: auto 1fr; }
  .topbar-inner .nav-burger { grid-column: 2; justify-self: end; }
}

/* 드로어 백드롭 */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 14, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 90;
}
.nav-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* 드로어 본체 — 우측에서 슬라이드 */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -20px 0 50px -20px rgba(0, 30, 98, 0.25);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--navy);
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nav-drawer-close:hover { background: var(--blue-100); }
.nav-drawer-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}
.nav-drawer-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-list a:hover {
  background: var(--blue-050);
  color: var(--blue);
}
.nav-drawer-list a span { color: var(--muted-2); font-weight: 800; }
.nav-drawer-cta {
  margin-top: 8px;
  background: var(--blue) !important;
  color: #fff !important;
  border-bottom: 0 !important;
}
.nav-drawer-cta:hover { background: var(--navy) !important; }
.nav-drawer-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--blue-050);
}
.nav-drawer-sms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.nav-drawer-sms:hover { background: var(--yellow-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  min-height: 56px;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0,78,162,0.30);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); }
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-050); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.btn-primary .btn-arrow { background: rgba(255,255,255,0.22); }
.btn-secondary .btn-arrow { background: var(--blue-050); color: var(--blue); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0,78,162,0.08), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--blue-050) 100%);
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text .party-row,
  .hero-text .hero-num-row,
  .hero-text .hero-tagline,
  .hero-text .hero-ctas {
    justify-content: center;
  }
  .hero-text .hero-slogan { text-align: center; }
  .hero-photo { margin-left: auto; margin-right: auto; justify-self: center; }
}

.party-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.party-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.party-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
}
.election-pill {
  display: inline-flex;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--blue-200);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
}

.hero-num-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 18px;
}
.hero-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 140px);   /* "이동현"과 동일 사이즈 */
  line-height: 0.9;                       /* "이동현"과 동일 라인하이트 */
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 0 rgba(0,0,0,0.04);
  position: relative;
}
.hero-number::after { content: none; }
@media (max-width: 880px) {
  /* "1"과 "이동현" — 동일 사이즈·라인하이트 */
  .hero-number {
    margin-left: 0 !important;
    font-size: clamp(64px, 13vw, 110px) !important;
    line-height: 1 !important;
  }
  .hero-name {
    font-size: clamp(64px, 13vw, 110px) !important;
    line-height: 1 !important;
  }
  .hero-number::after { content: none !important; }
  /* 한 줄 정렬 + "1"과 "이동현" 사이 적당한 좌우 여백 */
  .hero-num-row {
    align-items: baseline !important;
    justify-content: center !important;
    gap: 16px !important;                /* 8px → 16px : 좌우 여백 조금 더 */
    margin: 0 !important;
  }
  /* "이동현" 직후 슬로건까지 여백 최소 */
  .hero-slogan {
    margin-top: 8px !important;
  }
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.hero-slogan {
  margin-top: 32px;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  max-width: 560px;
}
.hero-slogan strong {
  background: linear-gradient(180deg, transparent 60%, rgba(255,198,41,0.55) 60%);
  font-weight: 800;
  padding: 0 2px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.hero-meta-item strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  margin-top: 2px;
}

/* Hero photo card */
.hero-photo {
  position: relative;
}
.hero-photo {
  position: relative;
  max-width: 460px;
  justify-self: end;
  width: 100%;
}
.hero-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow-lg);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.hero-photo-badge {
  position: absolute;
  left: -16px;
  top: 24px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}

/* ============ TODAY SCHEDULE — Hero 사진 아래 위젯 ============ */
.hero-photo { display: flex; flex-direction: column; }
.hero-photo .hero-photo-frame { flex-shrink: 0; }
.hero-schedule {
  position: relative;
  margin-top: 16px;
  width: 100%;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 14px 32px -18px rgba(0, 30, 98, 0.22);
  border: 1px solid var(--line);
  overflow: hidden;
  z-index: 1;
}
.hsch-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
}
.hsch-dday {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hsch-dday-label { font-size: 13px; }
.hsch-dday-num { font-size: 19px; }
.hsch-date {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hsch-date-md {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hsch-date-dow {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.hsch-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}
.hsch-list {
  list-style: none;
  padding: 6px 14px 8px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
}
.hsch-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.hsch-row:last-child,
.hsch-row:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
@media (max-width: 540px) {
  .hsch-list { grid-template-columns: 1fr; }
  .hsch-row:nth-last-child(2):nth-child(odd) { border-bottom: 1px dashed var(--line); }
}
.hsch-time {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.hsch-task {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.015em;
  word-break: keep-all;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.hsch-task-title { display: inline-block; }
.hsch-task-notes {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-3, #5b6b85);
  letter-spacing: -0.01em;
}
.hsch-task-note::before { content: "· "; opacity: 0.5; }

/* === 강조 행 (예: 토론회 중계방송) — 2열 그리드 전체 폭 차지 === */
.hsch-row.is-highlight {
  grid-column: 1 / -1;
  grid-template-columns: 60px 1fr;
  margin: 10px 0 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--blue, #004EA2);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff8df 0%, #fff3c4 100%);
  box-shadow: 0 6px 18px -10px rgba(0, 78, 162, 0.35);
  align-items: center;
  column-gap: 12px;
  border-bottom: 1.5px solid var(--blue, #004EA2) !important;
}
.hsch-row.is-highlight + .hsch-row { border-top: 0; }
.hsch-row.is-highlight .hsch-time {
  color: var(--ppp-red, #E61E2B);
  font-size: 15px;
}
.hsch-row.is-highlight .hsch-task {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}
.hsch-row.is-highlight .hsch-task-title {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--navy, #001E62);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.hsch-row.is-highlight .hsch-task-notes {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2px 10px;
  color: var(--ink-2, #2a3550);
  font-size: 12px;
  font-weight: 800;
}
@media (max-width: 540px) {
  .hsch-row.is-highlight .hsch-task {
    flex-direction: column;
    align-items: flex-start;
  }
  .hsch-row.is-highlight .hsch-task-notes {
    flex-direction: column;
    gap: 1px;
  }
}
.hsch-task-badge {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 7px 2.5px;
  border-radius: 999px;
  background: var(--ppp-red, #E61E2B);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  vertical-align: 2px;
  animation: hsch-blink 1.6s ease-in-out infinite;
}
@keyframes hsch-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* 특별한 날 — 옐로우 액센트 블록 */
.hsch-specials {
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255, 198, 41, 0.1) 0%, rgba(255, 198, 41, 0.03) 100%);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.hsch-special {
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 10px;
}
.hsch-special-title {
  font-size: 11.5px;
  font-weight: 900;
  color: var(--yellow-deep);
  letter-spacing: 0.02em;
}
.hsch-special-note {
  margin-top: 2px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.hsch-foot {
  padding: 8px 14px 10px;
  background: var(--blue-050);
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 880px) {
  .hero-schedule { max-width: 460px; margin: 16px auto 0; }
}
.hero-photo-tag {
  position: absolute;
  right: -10px;
  bottom: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  max-width: 220px;
}
.hero-photo-tag small {
  display: block;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 4px;
}

/* ---------- GREETING ---------- */
.greeting {
  background: var(--white);
}
.greeting-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 980px) {
  .greeting-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .greeting-photo {
    position: relative !important;
    top: auto !important;
    aspect-ratio: 16/11;
    max-height: 60vh;
    margin-bottom: 0;
    z-index: 0;
  }
  .greeting-body {
    position: relative;
    z-index: 1;
    margin-top: clamp(48px, 10vw, 80px);
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .greeting-body .eyebrow {
    margin-bottom: 6px;
  }
}
.greeting-photo {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--blue-100);
  position: sticky;
  top: 96px;
}
@media (max-width: 980px) {
  .greeting-photo {
    position: relative;
    aspect-ratio: 16/11;
    max-height: 60vh;
  }
}
.greeting-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.greeting-photo-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(0, 30, 98, 0.85);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.greeting-body h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.greeting-body p {
  margin-top: 18px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.8;
  color: var(--ink-2);
}
.greeting-sign {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.greeting-sign-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.greeting-sign small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- PROFILE ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) {
  .profile-grid { grid-template-columns: 1fr; }
}
.profile-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
  position: sticky;
  top: 96px;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.55);
  transform-origin: center 22%;
}
@media (max-width: 880px) {
  .profile-photo {
    position: relative;
    top: auto;
  }
}

.profile-blocks {
  display: grid;
  gap: 18px;
}
.profile-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.profile-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-050);
}
.profile-block-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-050);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.profile-block-icon svg { width: 22px; height: 22px; }
.profile-block-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.profile-block-title small {
  display: block;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 2px;
}
.profile-list { display: grid; gap: 10px; }
.profile-list li {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.profile-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ---------- 8 Pledges ---------- */
.pledges-section { background: var(--blue-050); }
.pledges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .pledges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pledges-grid { grid-template-columns: 1fr; } }

.pledge-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pledge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
  opacity: 0;
  transition: opacity .25s;
  z-index: 0;
}
.pledge-card > * { position: relative; z-index: 1; }
.pledge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.pledge-card:hover::before { opacity: 1; }
.pledge-card:hover .pledge-num,
.pledge-card:hover .pledge-title,
.pledge-card:hover .pledge-line,
.pledge-card:hover .pledge-points li {
  color: var(--white);
}
.pledge-card:hover .pledge-num { background: var(--yellow); color: var(--navy); }
.pledge-card:hover .pledge-points li::before { background: var(--yellow); }
.pledge-card:hover .pledge-icon {
  background: rgba(255,255,255,0.12);
  color: var(--yellow);
}

.pledge-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pledge-num {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  font-family: var(--font-display);
  transition: background .25s, color .25s;
}
.pledge-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--blue-050);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: background .25s, color .25s;
}
.pledge-icon svg { width: 30px; height: 30px; }
.pledge-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.25;
  transition: color .25s;
}
.pledge-line {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
  transition: color .25s;
}
.pledge-points {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
}
.pledge-points li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
  transition: color .25s;
}
.pledge-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  transition: background .25s;
}

/* ---------- 3 core priorities ---------- */
.priorities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 880px) { .priorities { grid-template-columns: 1fr; } }
.priority-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border-top: 6px solid var(--blue);
  box-shadow: var(--shadow-sm);
}
.priority-card .label {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.priority-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.priority-card ul { display: grid; gap: 8px; }
.priority-card li {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.priority-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

/* ---------- Detailed policy section ---------- */
.policy-detail {
  border-top: 1px solid var(--line);
  padding-top: 80px;
  padding-bottom: 80px;
}
.policy-detail:nth-of-type(even) {
  background: var(--blue-050);
}
.policy-detail-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 980px) { .policy-detail-inner { grid-template-columns: 1fr; } }

.policy-num-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--blue);
  opacity: 0.18;
  margin-bottom: -40px;
}
.policy-detail h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.policy-detail .summary {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
}
.policy-photo {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--blue-100);
  box-shadow: var(--shadow-md);
}
.policy-photo img { width: 100%; height: 100%; object-fit: cover; }

.policy-quote-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .policy-quote-row { grid-template-columns: 1fr 1fr; } }
.policy-quote {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px;
  border: 1px solid var(--line);
}
.policy-detail:nth-of-type(even) .policy-quote { background: var(--white); }
.policy-quote .big {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: var(--font-display);
}
.policy-quote .small {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

.policy-blocks {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}
.policy-block {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  padding: 22px 26px;
}
.policy-detail:nth-of-type(even) .policy-block { background: var(--white); }
.policy-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.policy-block-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--blue-050);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: var(--r-pill);
}
.policy-block h4 {
  font-size: 19px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.policy-block ul { display: grid; gap: 8px; }
.policy-block li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.policy-block li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 8px; height: 2px;
  background: var(--blue);
}

.policy-funding {
  margin-top: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.policy-funding-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(255, 198, 41, 0.18);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.policy-funding-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.policy-funding-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

/* ---------- Static dong map ---------- */
/* ================================================================
   NEW DONG SECTION (15개 동별 공약) — SVG polygon grid layout
   사이트 공통 wrap(1240/24), 옐로우 절제, 시빅 톤
   ================================================================ */
.dong-section {
  position: relative;
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(0, 78, 162, 0.04), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #FBF8F0 70%, #FBF8F0 100%);
  padding-bottom: 0;
}
.dong-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 30, 98, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  mask-image: linear-gradient(180deg, transparent 0, #000 120px, #000 calc(100% - 260px), transparent 100%);
  opacity: 0.55;
  z-index: 0;
}
.dong-section > .wrap { position: relative; z-index: 1; }

/* Section header — wrap 내부 */
.dong-section-header {
  padding-bottom: 36px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 56px;
}
.dong-section-header .section-title {
  margin-top: 18px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.dong-header-row {
  margin-top: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dong-section-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 38ch;
  margin: 0;
}
.dong-header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 4px;
  transition: gap 0.18s ease;
  white-space: nowrap;
}
.dong-header-link:hover { gap: 16px; }
.dong-header-link span { display: inline-block; transition: transform 0.18s ease; }
.dong-header-link:hover span { transform: translateX(2px); }

/* Main grid — 지도 7fr / 패널 5fr */
.dong-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

/* Map wrapper */
.dong-map-wrap {
  background: linear-gradient(180deg, #FAF6EC 0%, #F4EEDD 100%);
  border: 1px solid rgba(0, 30, 98, 0.08);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.4vw, 32px) clamp(18px, 2.2vw, 28px);
  box-shadow: 0 2px 0 rgba(0, 30, 98, 0.04), 0 12px 32px -16px rgba(0, 30, 98, 0.12);
}
.dong-map-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* SVG polygons */
.dong-poly {
  fill: #F2EBDB;
  stroke: var(--navy);
  stroke-width: 1.6;
  transition: fill 0.18s ease, stroke-width 0.18s ease;
  cursor: pointer;
}
.dong-cell { cursor: pointer; outline: none; }
.dong-cell:hover .dong-poly {
  fill: var(--blue-100);
  stroke: var(--blue);
  stroke-width: 2.4;
}
.dong-cell.is-active .dong-poly {
  fill: var(--navy);
  stroke: var(--navy);
  stroke-width: 2.4;
}
.dong-cell:focus-visible .dong-poly {
  stroke: var(--yellow);
  stroke-width: 3;
}
.dong-label {
  font-family: inherit;
  font-weight: 800;
  font-size: 31px;
  fill: var(--ink-2);
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  letter-spacing: -0.02em;
  paint-order: stroke;
  stroke: rgba(247, 244, 236, 0.85);
  stroke-width: 5;
}
.dong-cell.is-active .dong-label {
  fill: #fff;
  stroke: rgba(0, 0, 0, 0);
}

/* Map footer — counter + nav */
.dong-map-foot {
  margin-top: clamp(20px, 2.5vw, 28px);
  padding-top: 18px;
  border-top: 1.5px solid rgba(0, 30, 98, 0.12);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.dmf-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.dmf-num {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dmf-sep {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}
.dmf-current-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dmf-current-name {
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-top: 2px;
}
.dmf-spacer { flex: 1; }
.dmf-nav { display: flex; gap: 8px; }
.dmf-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.8px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.dmf-nav-btn:hover { background: var(--navy); color: #fff; }
.dmf-nav-btn:active { transform: scale(0.96); }
.dmf-nav-btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* Panel (right) — 텍스트 우선, 카드형 그림자 절제 */
.dong-panel {
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
  padding-top: 6px;
}
.dong-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dong-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--blue);
  padding: 6px 12px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
}
.dong-panel-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dong-panel-count strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 16px;
}
.dong-panel-name {
  margin-top: 18px;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--navy);
}
.dong-panel-catch {
  margin-top: 16px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink-2);
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 14px;
  max-width: 30ch;
  letter-spacing: -0.01em;
}

.dong-panel-pledges {
  margin-top: 28px;
  border-top: 2px solid var(--navy);
  list-style: none;
  padding: 0;
}
.dong-pledge-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1.5px solid var(--line);
  position: relative;
  transition: padding 0.2s ease;
  animation: dong-fade 0.28s ease-out both;
}
.dong-pledge-row:last-child { border-bottom: 0; }
.dong-pledge-row:hover { padding-left: 10px; }
.dong-pledge-row:hover::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 36px;
  background: var(--yellow);
  border-radius: 2px;
}
.dong-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #FFD659, var(--yellow) 55%, var(--yellow-deep));
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06), 0 6px 14px -8px rgba(232, 174, 0, 0.5);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dong-pledge-text {
  padding-top: 8px;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.dong-panel-foot {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@keyframes dong-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Insight band — full-bleed navy */
.dong-insight {
  margin-top: clamp(80px, 9vw, 120px);
  background: var(--navy);
  color: #fff;
}
.dong-insight-inner {
  padding: clamp(36px, 5vw, 56px) 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dong-insight p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dong-insight p strong {
  color: var(--yellow);
  font-weight: 900;
}
.dong-insight-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, gap 0.18s ease;
}
.dong-insight-cta:hover { gap: 18px; transform: translateX(2px); }

/* Responsive */
@media (max-width: 980px) {
  .dong-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .dong-section-header { margin-bottom: 36px; padding-bottom: 24px; }
  .dong-header-row { gap: 18px; }
  .dong-label { font-size: 30px; }
}
@media (max-width: 620px) {
  .dong-map-wrap { padding: 16px 14px; border-radius: var(--r-lg); }
  .dong-label { font-size: 28px; stroke-width: 4; }
  .dong-panel-name { font-size: 44px; }
  .dong-pledge-row { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 14px 0; }
  .dong-num-circle { width: 38px; height: 38px; font-size: 13px; }
  .dong-pledge-text { font-size: 15px; padding-top: 6px; }
  .dong-insight-inner { padding: 32px 20px; gap: 22px; }
  .dong-insight p { font-size: 19px; }
  .dong-insight-cta { padding: 14px 20px; font-size: 14px; }
  .dmf-num { font-size: 36px; }
  .dmf-nav-btn { width: 40px; height: 40px; font-size: 20px; }
}

/* ================================================================
   Legacy static dong styles — kept for backward compatibility
   ================================================================ */
.static-dong-section {
  background: linear-gradient(180deg, #fff 0%, var(--blue-050) 100%);
}
.static-dong-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
}
.static-dong-map {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #f7f4ec;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.static-dong-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
}
.static-map-labels,
.static-map-focus {
  position: absolute;
  inset: 0;
}
.static-map-focus {
  width: clamp(42px, 5vw, 72px);
  height: clamp(42px, 5vw, 72px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 198, 41, 0.12);
  box-shadow: 0 0 0 8px rgba(0, 78, 162, 0.04);
  z-index: 1;
  pointer-events: none;
  transition: left .22s ease, top .22s ease;
}
.static-map-label {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 0;
  cursor: pointer;
  transition: transform .18s;
}
.static-map-label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 18px);
  width: 13px;
  height: 13px;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(39, 50, 74, 0.32);
  box-shadow: 0 2px 7px rgba(0, 30, 98, 0.08);
  transition: background .18s, border-color .18s, box-shadow .18s, transform .18s, opacity .18s;
}
.static-map-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 18px);
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  opacity: 0;
  transform: translate(-50%, -62%) rotate(-45deg);
  transition: opacity .18s;
}
.static-map-label:hover,
.static-map-label.is-active {
  transform: translate(-50%, -50%);
}
.static-map-label:hover::before,
.static-map-label.is-active::before {
  background: var(--yellow);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(255, 198, 41, 0.20), 0 5px 12px rgba(0, 30, 98, 0.16);
}
.static-map-label.is-active::after {
  opacity: 1;
}
.static-map-label:focus-visible {
  outline: 4px solid rgba(0, 78, 162, 0.25);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.static-dong-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.static-dong-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.static-dong-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 198, 41, 0.14);
  color: var(--yellow);
  border: 1px solid rgba(255, 198, 41, 0.4);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.static-dong-card-kicker {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.static-dong-card h3 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.static-dong-card-catch {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--yellow);
  padding-left: 14px;
}
.static-dong-card-foot {
  margin-top: clamp(22px, 3vw, 30px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.static-dong-card ol {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 18px;
  counter-reset: none;
}
.static-dong-card li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.static-dong-card li span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 17px;
  line-height: 1;
  font-weight: 950;
  font-family: var(--font-display);
}
.static-dong-card li strong {
  padding-top: 8px;
  color: rgba(255,255,255,0.96);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: -0.025em;
  word-break: keep-all;
}
@media (max-width: 980px) {
  .static-dong-layout { grid-template-columns: 1fr; }
  .static-dong-map img { min-height: auto; }
}
@media (max-width: 620px) {
  .static-dong-layout {
    margin-top: 38px;
    gap: 18px;
  }
  .static-dong-map {
    border-radius: var(--r-lg);
  }
  .static-dong-map img {
    width: 100%;
  }
  .static-map-label {
    width: 52px;
    height: 42px;
  }
  .static-map-label::before {
    top: calc(50% + 11px);
    width: 9px;
    height: 9px;
    border-radius: 3px;
    border-width: 1px;
  }
  .static-map-label::after {
    top: calc(50% + 11px);
    width: 4px;
    height: 2.5px;
    border-width: 1.5px;
  }
  .static-map-focus {
    width: 34px;
    height: 34px;
    box-shadow: 0 0 0 6px rgba(0, 78, 162, 0.04);
  }
  .static-dong-card {
    border-radius: var(--r-lg);
    padding: 24px 20px;
  }
  .static-dong-card h3 {
    margin-top: 12px;
    font-size: 34px;
  }
  .static-dong-card ol {
    margin-top: 22px;
    gap: 14px;
  }
  .static-dong-card li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }
  .static-dong-card li span {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .static-dong-card li strong {
    padding-top: 4px;
    font-size: 15px;
  }
}

/* ---------- Field photos ---------- */
.field-section { background: var(--navy); color: var(--white); }
.field-section .section-title { color: var(--white); }
.field-section .section-lead { color: rgba(255,255,255,0.7); }

.field-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
@media (max-width: 980px) { .field-grid { grid-template-columns: repeat(2, 1fr); } }

.field-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0e1f47;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.field-card.span-3 { grid-column: span 3; }
.field-card.span-2 { grid-column: span 2; }
.field-card.tall { grid-row: span 2; min-height: 520px; }
@media (max-width: 980px) {
  .field-card.span-3, .field-card.span-2, .field-card.tall {
    grid-column: auto; grid-row: auto; min-height: 320px;
  }
}
.field-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.field-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 12, 40, 0.95) 100%);
}
.field-text {
  position: relative;
  margin-top: auto;
  z-index: 2;
  padding: 24px 26px;
  color: var(--white);
}
.field-text .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  font-weight: 800;
  margin-bottom: 8px;
}
.field-text h3 {
  font-size: 22px;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.field-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-weight: 500;
}

/* ---------- Booklet ---------- */
.booklet { background: var(--blue-050); }
.booklet-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 980px) { .booklet-inner { grid-template-columns: 1fr; } }
.book-viewer {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.book-stage {
  /* 페이지 한 장 자연 비율(세로 긴 A4 약 1:1.414)에 맞춰 길게 */
  aspect-ratio: 1 / 1.414;
  background: #f0f4fa;
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px -20px rgba(0, 30, 98, 0.35), 0 8px 16px rgba(0, 30, 98, 0.12);
  position: relative;
  padding: 12px;
}
.book-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.book-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.book-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: background .15s, border-color .15s, color .15s;
}
.book-btn:hover:not(:disabled) { background: var(--blue); color: var(--white); border-color: var(--blue); }
.book-btn:disabled { opacity: .35; cursor: not-allowed; }
.book-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  min-width: 80px;
  justify-content: center;
}
@media (max-width: 880px) {
  .book-viewer { padding: 16px; }
}

.booklet-side h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.25; }
.booklet-side p { margin-top: 16px; font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.booklet-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ================================================================
   COMPLAINT MARQUEE — 상단 흐르는 민원 띠
   ================================================================ */
.complaint-marquee {
  display: flex;
  align-items: stretch;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.complaint-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 13.5px;
  white-space: nowrap;
}
.complaint-marquee-label .cm-dot {
  font-size: 10px;
  color: var(--navy);
  animation: cm-blink 1.4s ease-in-out infinite;
}
@keyframes cm-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.complaint-marquee-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 11px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.complaint-marquee-flow {
  display: inline-flex;
  white-space: nowrap;
  animation: cm-scroll 346s linear infinite;
  will-change: transform;
}
.complaint-marquee:hover .complaint-marquee-flow {
  animation-play-state: paused;
}
@keyframes cm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cm-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
}
.cm-cat {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: -0.005em;
}
.cm-summary {
  color: #fff;
  font-weight: 500;
}
.cm-status {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 2px;
}
.cm-status.done {
  background: rgba(255, 198, 41, 0.18);
  color: var(--yellow);
  border: 1px solid rgba(255, 198, 41, 0.45);
}
.cm-status.pending {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.cm-answer-arrow {
  color: var(--yellow);
  font-weight: 900;
  margin: 0 4px;
}
.cm-answer {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.cm-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 14px;
  font-size: 13px;
}
/* 마퀴 우측 SMS CTA */
.complaint-marquee-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.15s ease;
  white-space: nowrap;
  border-left: 1px solid rgba(0, 30, 98, 0.18);
}
.complaint-marquee-cta:hover { background: var(--yellow-deep); }
.cm-cta-ico {
  font-size: 16px;
  line-height: 1;
}
.cm-cta-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}
.cm-cta-text strong { font-weight: 900; letter-spacing: -0.01em; }
.cm-cta-text em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  opacity: 0.78;
}

@media (max-width: 720px) {
  .complaint-marquee { font-size: 12.5px; }
  .complaint-marquee-label { padding: 0 12px; font-size: 12px; }
  .cm-status { font-size: 10.5px; padding: 1px 6px; }
  .complaint-marquee-cta { padding: 0 12px; font-size: 12px; }
  .cm-cta-ico { display: none; }
  .cm-cta-text em { display: none; }
}

/* ================================================================
   VOICES SMS CTA — 문자 카드 메시지
   ================================================================ */
.voices-phone-inline {
  font-weight: 800;
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 1px;
  white-space: nowrap;
}
/* 컴팩트한 SMS CTA — 가로 균형 잡힌 카드 */
.voices-sms-cta {
  margin-top: 24px;
  padding: clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 22px 50px -28px rgba(0, 30, 98, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.vsms-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.vsms-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 198, 41, 0.16);
  border: 1px solid rgba(255, 198, 41, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.vsms-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  line-height: 1;
  transition: opacity 0.15s ease;
}
.vsms-phone:hover { opacity: 0.85; }
.vsms-phone-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 19px;
  flex-shrink: 0;
}
.vsms-phone-num {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.vsms-tagline {
  margin: 2px 0 0;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.01em;
}
.vsms-tagline strong {
  color: var(--yellow);
  font-weight: 800;
}
.vsms-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}
.vsms-actions {
  display: inline-flex;
  gap: 8px;
}
.vsms-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.vsms-primary:hover { background: var(--yellow-deep); transform: translateX(2px); }
.vsms-secondary {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.vsms-secondary:hover { border-color: #fff; color: #fff; }
.vsms-note {
  margin: 0;
  max-width: 280px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

@media (max-width: 760px) {
  .voices-sms-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
    text-align: center;
  }
  .vsms-left { align-items: center; }
  .vsms-eyebrow { align-self: center; }
  .vsms-phone { flex-direction: column; gap: 8px; }
  .vsms-phone-num { font-size: 28px; }
  .vsms-tagline { font-size: 13.5px; }
  .vsms-right { align-items: center; width: 100%; }
  .vsms-actions { display: flex; width: 100%; }
  .vsms-primary, .vsms-secondary { flex: 1; justify-content: center; padding: 12px 14px; font-size: 13px; }
  .vsms-note { text-align: center; max-width: none; }
}

/* ================================================================
   VOICES — 민원 문답 디테일 섹션
   ================================================================ */
.voices-section .section-header { max-width: 760px; }
.voices-filter {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-bottom: 4px;
}
.voices-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}
.voices-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.voices-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.voices-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(0, 30, 98, 0.08);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.voices-chip.is-active .voices-chip-count {
  background: rgba(255, 198, 41, 0.25);
  color: var(--yellow);
}

.voices-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.voice-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-200);
  box-shadow: 0 12px 32px -16px rgba(0, 30, 98, 0.18);
}
.voice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.voice-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-050);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.voice-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.voice-status.done { color: var(--yellow-deep); }
.voice-status.done::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
}
.voice-status.pending { color: var(--muted); }
.voice-status.pending::before {
  content: "…";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-2);
  font-size: 11px;
}

.voice-q, .voice-a {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.voice-q-label, .voice-a-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.voice-q-label { color: var(--muted); }
.voice-a-label { color: var(--blue); }
.voice-q p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  word-break: keep-all;
}
.voice-a p {
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--blue-200);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  word-break: keep-all;
}
.voice-foot {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-variant-numeric: tabular-nums;
}
.voices-empty {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

.voices-expand-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.voices-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--blue-200, #c9d6ea);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.voices-expand-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -14px rgba(0, 78, 162, 0.55);
}
.voices-expand-btn span[aria-hidden] {
  font-size: 12px;
  line-height: 1;
}
.voices-expand-btn.is-collapse {
  background: transparent;
  color: var(--muted, #5b6b85);
  border-color: var(--line, #e2e8f0);
}
.voices-expand-btn.is-collapse:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ================================================================
   POSTS — 블로그/게시판
   ================================================================ */
.posts-section .section-header { max-width: 760px; }
.posts-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.post-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  outline: none;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-200);
  box-shadow: 0 18px 40px -20px rgba(0, 30, 98, 0.22);
}
.post-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.post-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-100);
}
.post-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.post-card:hover .post-photo img { transform: scale(1.04); }
.post-photo-blank {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: grid;
  place-items: center;
}
.post-photo-blank span {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}
.post-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.post-tag {
  display: inline-flex;
  padding: 3px 10px;
  background: var(--blue-050);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 800;
}
.post-date { font-variant-numeric: tabular-nums; }
.post-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.post-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-more {
  margin-top: auto;
  padding-top: 4px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.posts-loadmore {
  margin-top: 32px;
  text-align: center;
}
.posts-loadmore .btn-ghost {
  color: var(--navy);
  border-color: var(--blue-200);
  font-weight: 700;
}
.posts-loadmore .btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* 모달 */
.post-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 14, 40, 0.62);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 24px;
  animation: pm-fade 0.18s ease-out;
}
@keyframes pm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.post-modal {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 760px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  animation: pm-rise 0.22s ease-out;
}
@keyframes pm-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.post-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--navy);
  font-size: 24px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background 0.15s ease;
}
.post-modal-close:hover { background: var(--blue-100); }
.post-modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.post-by { font-weight: 700; }
.post-modal-title {
  margin-top: 14px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.025em;
  word-break: keep-all;
}
/* YouTube 16:9 임베드 (post 모달 상단) */
.post-modal-video {
  position: relative;
  margin-top: 22px;
  padding-bottom: 56.25%;   /* 16:9 */
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
}
.post-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* 카드 우상단 "▶ 영상" 배지 */
.post-video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.4);
}
/* 본문 안 링크 */
.post-link {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid var(--blue-200);
  word-break: break-all;
  transition: background 0.15s ease;
}
.post-link:hover { background: var(--blue-050); border-bottom-color: var(--blue); }

.post-modal-photo {
  margin-top: 22px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.post-modal-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.post-modal-body {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  word-break: keep-all;
}
.post-modal-body p {
  margin: 0;
}
.post-modal-body p + p {
  margin-top: 18px;
}

@media (max-width: 620px) {
  .post-modal { padding: 24px 20px; }
  .post-modal-close { top: 8px; right: 8px; }
  .post-body { padding: 18px 20px 20px; }
  .post-title { font-size: 17px; }
}

/* ---------- Footer / Closing ---------- */
.closing {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: clamp(64px, 9vw, 112px) 0;
}
.closing h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto;
}
.closing-meta {
  margin-top: 32px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.closing-meta strong { color: var(--white); font-weight: 700; }
.closing-actions { margin-top: 36px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Early voting banner ---------- */
.early-vote-banner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 32px) clamp(24px, 4vw, 40px);
  background: rgba(255, 198, 41, 0.08);
  border: 1.5px solid rgba(255, 198, 41, 0.4);
  border-radius: var(--r-lg);
  text-align: left;
  display: grid;
  gap: 14px;
}
.early-vote-kicker {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.08em;
}
.early-vote-main {
  display: flex;
  align-items: center;
  gap: 18px;
}
.early-vote-num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  border-radius: 12px;
  flex-shrink: 0;
}
.early-vote-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.early-vote-dates {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.early-vote-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.early-vote-election {
  color: var(--yellow);
  font-weight: 700;
}

.footer {
  background: #000c28;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  padding: 28px 0;
  text-align: center;
}

/* ---------- Section header ---------- */
.section-header {
  max-width: 760px;
}
.section-header.center { margin: 0 auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }

/* ---------- Mobile tuning ---------- */
@media (max-width: 560px) {
  body { font-size: 17px; }
  .btn { padding: 16px 22px; font-size: 17px; }
  /* "1"과 "이동현"은 동일 사이즈로 유지 — !important로 다른 규칙 무시 */
  .hero-name { font-size: 72px !important; line-height: 1 !important; }
  .hero-number { font-size: 72px !important; line-height: 1 !important; }
  .greeting-body p { font-size: 17px; }
  .statement-sub {
    max-width: 320px;
    line-height: 1.7;
  }
  .statement-sub span {
    display: inline;
  }
  .statement-sub span + span::before {
    content: " ";
  }
}

/* ---------- Reveal anim ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  position: fixed;
  left: 12px; top: 12px;
  background: var(--blue);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 100;
}

/* =========================================================
   v2 — Narrative campaign layout
   ========================================================= */

/* Big headline statements */
.statement {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--white);
}
.statement.dark {
  background: var(--navy);
  color: var(--white);
}
.statement.cream {
  background: var(--cream);
}
.statement-text {
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--navy);
  max-width: 940px;
  margin: 0 auto;
  text-wrap: balance;
}
.statement.dark .statement-text { color: var(--white); }
.statement-text em {
  font-style: normal;
  color: var(--blue);
  background: linear-gradient(180deg, transparent 62%, rgba(255, 198, 41, 0.55) 62%);
  padding: 0 2px;
}
.statement.dark .statement-text em {
  color: var(--yellow);
  background: none;
}
.statement-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--muted);
  font-weight: 600;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-wrap: balance;
}
.statement.dark .statement-sub { color: rgba(255,255,255,0.75); }
.statement-sub span,
.pledge-lead span {
  display: block;
}

/* ---------- Why-now diagnostic cards (다크톤 · 국민의힘 레드 액센트) ---------- */
:root {
  --ppp-red: #E61E2B;       /* 국민의힘 공식 레드 */
  --ppp-red-deep: #B5141F;
}
.diagnostic-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .diagnostic-grid { grid-template-columns: 1fr; } }
.diagnostic-card {
  background: #1A1A1A;                /* 다크 카드 */
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  border: 1px solid #2A2A2A;
  border-top: 3px solid var(--ppp-red);  /* 상단 레드 스트라이프 */
}
.diagnostic-photo {
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #0A0A0A;
  position: relative;
}
@media (max-width: 720px) {
  .diagnostic-photo { aspect-ratio: 16/9; }
}
.diagnostic-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62) contrast(0.95) saturate(0.78);  /* 어둡게 */
}
.diagnostic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 35%, rgba(0,0,0,0.85) 100%);
}
.diagnostic-tag {
  position: absolute;
  left: 18px; top: 18px;
  background: var(--ppp-red);          /* 국민의힘 레드 칩 */
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  z-index: 1;
  box-shadow: 0 4px 12px -4px rgba(230, 30, 43, 0.55);
}
.diagnostic-body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.diagnostic-headline {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: #fff;                          /* 다크 카드 → 흰 글씨 */
  line-height: 1.3;
  letter-spacing: -0.025em;
  white-space: pre-line;
}
.diagnostic-body p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);     /* 본문 — 회백 */
  font-weight: 500;
}

/* Principles — what kind of admin */
.principles-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}
@media (max-width: 880px) { .principles-grid { grid-template-columns: 1fr; } }
.principle {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.principle:last-child { border-right: none; }
@media (max-width: 880px) {
  .principle { border-right: none; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: none; }
}
.principle-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
}
.principle h3 {
  margin-top: 18px;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.025em;
}
.principle p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 500;
}

/* Story pledge cards — narrative version (replaces compact .pledge-card) */
.story-pledges {
  margin-top: 56px;
  display: grid;
  gap: 28px;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.story-card.flip { grid-template-columns: 1.15fr 0.85fr; }
.story-card.flip .story-photo { order: 2; }
.story-card.flip .story-body { order: 1; }
@media (max-width: 880px) {
  .story-card, .story-card.flip { grid-template-columns: 1fr; }
  .story-card.flip .story-photo { order: 0; }
  .story-card.flip .story-body { order: 1; }
}

.story-photo {
  position: relative;
  background: var(--navy);
  min-height: 360px;
  overflow: hidden;
}
.story-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.story-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,30,98,0.7) 0%, rgba(0,30,98,0.25) 60%, transparent 100%);
}
.story-photo-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}
.story-num-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--yellow);
}
.story-num-big {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.story-title-on-photo {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
}
.story-line-on-photo {
  margin-top: 10px;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.story-body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.story-section {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.story-section-label {
  flex-shrink: 0;
  width: 70px;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 6px;
  border-top: 2px solid var(--blue);
}
.story-section-content {
  flex: 1;
}
.story-section-heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.story-section-text {
  font-size: clamp(16px, 1.5vw, 17.5px);
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 500;
  word-break: keep-all;
}
.story-section.change .story-section-label {
  color: var(--yellow-deep);
  border-top-color: var(--yellow-deep);
}
.story-section.change .story-section-heading { color: var(--yellow-deep); }

.story-anchor {
  margin-top: 8px;
  padding: 20px 22px;
  background: var(--blue-050);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.story-anchor-quote {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--blue);
  line-height: 1;
  font-weight: 900;
  flex-shrink: 0;
}
.story-anchor-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.story-point {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.story-point::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Trust section */
.trust-section { background: var(--cream); }
.trust-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.trust-card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
}
.trust-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-receipts {
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 36px clamp(28px, 3vw, 44px);
}
.trust-receipts-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.4fr;
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 880px) {
  .trust-receipts-grid { grid-template-columns: 1fr; }
}
.trust-receipts-grid h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.trust-receipts-grid ul { display: grid; gap: 10px; }
.trust-receipts-grid li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}
.trust-receipts-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Pledge section intro CTA strip */
.pledges-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 8px;
}
@media (max-width: 720px) { .pledges-intro { grid-template-columns: 1fr; } }
.pledges-intro-meta {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.pledges-intro-meta strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* Field photo break — narrative anchor banner */
.field-anchor {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0;
}
.field-anchor-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(20%);
}
.field-anchor-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.field-anchor h2 {
  color: var(--white);
  font-size: clamp(30px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.25;
  font-weight: 900;
  max-width: 880px;
  margin: 0 auto;
  text-wrap: balance;
}
.field-anchor h2 em {
  font-style: normal;
  color: var(--yellow);
}
.field-anchor-byline {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: rgba(255, 198, 41, 0.85);
  font-weight: 800;
  text-transform: uppercase;
}

/* Hero subtitle treatment */
.hero-tagline {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.hero-tagline::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
