:root {
  --ink: #191f28;          /* 거의 검정 (제목) */
  --ink-body: #333d4b;     /* 본문 */
  --ink-soft: #6b7684;     /* 보조 텍스트 */
  --ink-faint: #8b95a1;    /* 옅은 텍스트 */
  --blue: #3182f6;         /* 포인트 색 */
  --blue-dark: #1b64da;
  --blue-soft: #e8f3ff;    /* 옅은 포인트 배경 */
  --accent-rgb: 49, 130, 246;  /* 포인트 색 RGB (그림자용) */
  --hero-top: #eef5ff;     /* 히어로 상단 배경 */
  --hero-fade: #f3f8ff;    /* 히어로 사진 왼쪽 페이드 */
  --line-accent: #c9ddf8;  /* 카드 호버 테두리 */
  --footer-bg: #191f28;    /* 푸터 배경 */
  --bg-alt: #f7f8fa;       /* 회색 섹션 배경 */
  --white: #ffffff;
  --line: #e5e8eb;
  --radius: 24px;
  --radius-sm: 16px;
  color-scheme: light dark;
  --shadow: 0 6px 24px rgba(25, 31, 40, 0.06);
  --shadow-hover: 0 10px 32px rgba(25, 31, 40, 0.1);
  --font: 'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic',
    -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

/* hidden 속성이 display 지정된 요소에서도 항상 통하도록 */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  word-break: keep-all;       /* 한글이 단어 중간에서 안 끊기게 */
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: 720px; }

.mobile-only { display: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.logo-company {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: 8px;
  margin-right: 2px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-sub {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-faint);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink-body);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--blue); }

.main-nav .nav-highlight {
  color: var(--blue);
  font-weight: 700;
}

.main-nav .nav-highlight:hover { color: var(--blue-dark); }

/* "진심이야기" 메뉴 아래 둥둥 떠다니는 말풍선 */
.main-nav .has-bubble { position: relative; }

.main-nav .has-bubble::after {
  content: "클릭하면 진심이 담긴 이야기가 열려요!";
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: var(--blue);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.35);
  pointer-events: none;
  animation: bubble-bob 2.4s ease-in-out infinite;
}

.main-nav .has-bubble::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  right: 40px;
  border: 6px solid transparent;
  border-bottom-color: var(--blue);
  pointer-events: none;
  animation: bubble-bob 2.4s ease-in-out infinite;
}

@keyframes bubble-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav .has-bubble::after,
  .main-nav .has-bubble::before { animation: none; }
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; }

/* 카카오톡 상담 버튼 (헤더) */
.nav-kakao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fee500;
  color: #3c1e1e !important;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-kakao svg { width: 21px; height: 21px; }

.nav-kakao:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(254, 229, 0, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.3);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink-body);
  border-color: var(--line);
}

.btn-ghost:hover { background: var(--bg-alt); }

.btn-kakao {
  background: #FEE500;
  color: #191919;
}

.btn-kakao:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(254, 229, 0, 0.4); }

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.hero-phone:hover { color: var(--blue-dark); }

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
  margin-top: 28px;
}

.btn-outline:hover { background: var(--blue-soft); }

/* ===== Hero (토스 스타일: 중앙 정렬 + 큰 사진 카드) ===== */
.hero {
  background: linear-gradient(180deg, var(--hero-top) 0%, transparent 100%);
  color: var(--ink);
  text-align: center;
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 92px 24px 96px;
}

.eyebrow {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  line-height: 1.28;
  margin: 0 0 22px;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

/* 히어로 핵심 약속 문구 — 페이지에서 가장 강조되는 한 줄 */
.hero-promise {
  font-size: clamp(21px, 3.2vw, 30px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 14px;
}

.hero-promise .desc-accent {
  font-style: normal;
  font-weight: 800;
  color: var(--blue);
  background: linear-gradient(to top, rgba(49, 130, 246, 0.16) 38%, transparent 38%);
  padding: 0 2px;
}

.hero-desc {
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 34px;
  font-weight: 500;
}

.hero-desc strong { color: var(--ink); }

.hero-desc .desc-accent {
  font-style: normal;
  font-weight: 800;
  color: var(--blue);
}

.mobile-br { display: none; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-photo-card {
  margin: 48px auto 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(25, 31, 40, 0.22);
}

.hero-photo-card img {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center 30%;
}

.trust-strip {
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  font-size: 14px;
  color: var(--ink-soft);
}

.trust-strip strong { color: var(--ink); margin-right: 6px; font-weight: 700; }

/* ===== Sections ===== */
.section { padding: 100px 0; }

.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 14px;
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 900;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 660px;
  margin: 0 0 48px;
}

.section-lead strong { color: var(--ink); }

/* ===== 고객의 고민 ===== */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.worry-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.worry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-accent);
}

.worry-q {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.worry-q::before {
  content: "❝";
  display: block;
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 8px;
}

.worry-a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

/* ===== 국가별 탭 & 국기 상징색 ===== */
:root {
  --id-red: #d92735;      /* 인도네시아 국기 빨강 */
  --id-soft: #fdebed;
  --la-navy: #1f4e9e;     /* 라오스 국기 남색 */
  --la-soft: #e8effb;
}

@media (prefers-color-scheme: dark) {
  :root {
    --id-red: #f0555f;
    --id-soft: #3a1a1f;
    --la-navy: #6b9ae8;
    --la-soft: #16243d;
  }
}

.flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  vertical-align: -2px;
  margin-right: 8px;
  display: inline-block;
}

.country-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.country-tab {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.country-tab.tab-id:hover { border-color: var(--id-red); color: var(--id-red); }
.country-tab.tab-la:hover { border-color: var(--la-navy); color: var(--la-navy); }

.country-tab.tab-id.active {
  background: var(--id-red);
  border-color: var(--id-red);
  color: #fff;
}

.country-tab.tab-la.active {
  background: var(--la-navy);
  border-color: var(--la-navy);
  color: #fff;
}

/* 절차 리스트 국가별 번호 색 */
.country-id .process-num { background: var(--id-soft); color: var(--id-red); }
.country-la .process-num { background: var(--la-soft); color: var(--la-navy); }

/* 절차 아이콘 (인포그래픽 스타일) */
.process-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: var(--bg-alt);
}

.country-id .process-icon { background: var(--id-soft); }
.country-la .process-icon { background: var(--la-soft); }

.step-label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.country-id .step-label { color: var(--id-red); }
.country-la .step-label { color: var(--la-navy); }

.process-step h3 { margin-top: 4px; }

.step-tip {
  margin-top: 12px !important;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px !important;
  color: var(--ink-soft) !important;
  line-height: 1.6;
}

.step-tip strong { color: var(--ink); }

/* 현지 일정 타임라인 (STEP 07) */
.trip-title {
  font-size: 15px !important;
  font-weight: 800;
  color: var(--ink) !important;
  margin-top: 20px !important;
  margin-bottom: 12px !important;
}

.trip-days {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.trip-day {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  position: relative;
}

/* 일차 사이 화살표 */
.trip-day:not(:last-child)::after {
  content: "➜";
  position: absolute;
  right: -12px;
  top: 38px;
  font-size: 15px;
  color: #f0a13d;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 4px solid var(--id-red);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 10px;
}

.day-badge.alt { border-color: #f0a13d; }

/* 라오스 7일 일정: 데스크톱 4열(4+3) 배치 */
.trip-days.days-7 { grid-template-columns: repeat(4, 1fr); }
.trip-days.days-7 .trip-day:nth-child(4)::after { display: none; }

/* 라오스 탭에서는 배지 테두리를 남색으로 */
#process-laos .day-badge { border-color: var(--la-navy); }
#process-laos .day-badge.alt { border-color: #f0a13d; }

.trip-note {
  font-size: 12.5px !important;
  color: var(--ink-soft) !important;
  line-height: 1.6;
  margin-top: 12px !important;
}

.trip-day ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trip-day li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 3px 0;
  position: relative;
}

.trip-day li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 6px;
  border-left: 1px dashed var(--line);
  margin: 0 auto 3px;
}

@media (max-width: 960px) {
  .trip-days { grid-template-columns: repeat(3, 1fr); }
  /* 줄바꿈되는 배치에서는 3·6번째 뒤 화살표 숨김 */
  .trip-day:nth-child(3)::after { display: none; }
  .trip-day:nth-child(6)::after { display: none; }
  /* 7일(라오스) 3열 배치: 4번째 뒤 화살표는 다시 표시 */
  .trip-days.days-7 { grid-template-columns: repeat(3, 1fr); }
  .trip-days.days-7 .trip-day:nth-child(4)::after { display: block; }
}

@media (max-width: 720px) {
  .trip-days { grid-template-columns: repeat(2, 1fr); }
  /* 2열 배치: 가로로 붙은 짝(1→2, 3→4, 5→6) 사이에만 화살표 */
  .trip-day:nth-child(odd)::after { display: block; }
  .trip-day:nth-child(even)::after { display: none; }
  .trip-days.days-7 .trip-day:nth-child(4)::after { display: none; }
}

/* 비용 카드 국가별 상징색 */
.cost-card.card-id { border-top: 4px solid var(--id-red); }
.cost-card.card-la { border-top: 4px solid var(--la-navy); }

.card-id .cost-country { background: var(--id-soft); color: var(--id-red); }
.card-la .cost-country { background: var(--la-soft); color: var(--la-navy); }

.card-id .cost-items li::before { color: var(--id-red); }
.card-la .cost-items li::before { color: var(--la-navy); }

/* ===== 진행 절차 ===== */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child { border-bottom: none; }

.process-num {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 19px;
  color: var(--ink);
  margin: 6px 0 8px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 640px;
}

.process-step strong { color: var(--ink); }

/* ===== 비용 안내 ===== */
.cost-grid {
  display: block;
  max-width: 680px;
  margin-bottom: 24px;
}

.cost-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.cost-country {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}

.cost-price {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.cost-price strong {
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 800;
}

.cost-sub {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  margin: 22px 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pay-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px 16px;
}

.pay-tag {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.card-id .pay-tag { color: var(--id-red); border-color: var(--id-red); }
.card-la .pay-tag { color: var(--la-navy); border-color: var(--la-navy); }

.pay-amount {
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 800;
}

.pay-when {
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-body);
  text-align: right;
}

.cost-sub + .cost-items {
  border-top: none;
  padding-top: 0;
}

.cost-items {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.cost-items li {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-body);
  padding: 5px 0 5px 20px;
  position: relative;
}

.cost-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

/* 개인 경비 외 추가 비용 구분선 (라오스 카드 등) */
.cost-items li.extra-cost {
  border-top: 1.5px solid var(--ink);
  margin-top: 14px;
  padding-top: 16px;
}

.cost-items li.extra-cost::before { top: 16px; }

.cost-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== USP 카드 (저도 가능할까요) ===== */
/* 통계 숫자 스트립 (저도 가능할까요 섹션) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.stat-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-num span { font-size: 21px; }

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.45;
}

.stat-source {
  margin: 22px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.7;
}

.stat-source strong { color: var(--ink); }

.stat-source a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stat-source a:hover { color: var(--blue); }

.usp-card strong { color: var(--ink); font-weight: 700; }

/* 연령대별 변화 비교표 (2020 vs 2023) */
.age-table {
  margin: 16px 0 18px;
  border-top: 1px solid var(--line);
}

.age-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 6px;
  align-items: center;
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}

.age-row.age-head {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding: 7px 2px;
}

.age-row span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.age-row.age-head span:first-child {
  font-weight: 700;
  color: var(--ink-soft);
}

.age-old {
  color: var(--ink-soft);
  font-weight: 600;
}

.age-new {
  color: var(--ink);
  font-weight: 800;
}

.age-up,
.age-down {
  font-style: normal;
  font-size: 11.5px;
}

.age-up { color: #e5484d; }
.age-down { color: var(--blue); }

/* 30대 행 강조 — "경쟁자가 가장 적은 구간" */
.age-row.age-hl {
  background: rgba(49, 130, 246, 0.06);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

.age-row.age-hl .age-new { color: var(--blue); }

.age-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.01em;
  vertical-align: 1px;
}

/* 30대 강조 마무리 문장 */
.age-punch {
  background: rgba(49, 130, 246, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px !important;
  line-height: 1.65;
  margin-bottom: 0 !important;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.usp-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.usp-card h3 {
  font-size: 17.5px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.usp-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== About / Story ===== */
/* 사진 없이 텍스트 중심 구성 (사진은 아래 갤러리에 충분히 있음) */
.about-grid {
  display: block;
}

.about-text {
  max-width: 760px;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.about-photo figcaption {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 12px 4px 0;
  font-weight: 600;
  text-align: center;
}

/* 부부 SNS 채널 버튼 (About) */
.couple-sns {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  text-align: left;
}

/* About 안의 출연 이력 소제목 (구 MEDIA 섹션 통합) — 위 구간과 선으로 구분 */
.story-sub.press-sub {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.couple-sns-lead {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 18px;
}

.couple-sns-links {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
}

.sns-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.sns-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.sns-yt { background: #ff0000; }
.sns-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-tt { background: #111111; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sns-tt {
    background: #2a2f3c;
    border: 1px solid #454c5c;
  }
}

.story-text p {
  font-size: 16.5px;
  color: var(--ink-body);
  margin: 0 0 22px;
}

/* 아내와 함께 — 폴라로이드 스타일 사진 (About 본문 옆) */
.story-polaroid {
  float: right;
  width: 240px;
  margin: 6px 0 18px 28px;
  padding: 10px 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-hover);
  transform: rotate(2.5deg);
}

.story-polaroid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 3px;
  display: block;
}

.story-polaroid figcaption {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding-top: 9px;
}

@media (max-width: 720px) {
  .story-polaroid {
    float: none;
    width: 78%;
    max-width: 280px;
    margin: 0 auto 26px;
    transform: rotate(1.5deg);
  }
}

.story-text p:last-child { margin-bottom: 0; }

/* ===== Photo Gallery ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  margin: 0;
}

.photo-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.gallery-item figcaption {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 10px 4px 0;
  font-weight: 600;
}

/* 성혼 스토리: 소제목·회원 갤러리·영상 카드 */
.story-sub {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

/* 가로 스크롤 카루셀 — 콘텐츠가 쌓여도 페이지가 길어지지 않는다 */
.carousel-wrap {
  position: relative;
  margin-bottom: 56px;
}

.media-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.media-carousel::-webkit-scrollbar { height: 6px; }
.media-carousel::-webkit-scrollbar-track { background: transparent; }
.media-carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.media-carousel .gallery-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.media-carousel .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.media-carousel .gallery-placeholder { flex: 0 0 100%; }

/* 사진처럼 개수가 많은 칸은 두 줄로 쌓아서 가로 스크롤 */
.media-carousel.two-rows {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: 320px;
}

@media (max-width: 720px) {
  .media-carousel.two-rows { grid-auto-columns: 78%; }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.carousel-btn.prev { left: -16px; }
.carousel-btn.next { right: -16px; }
.carousel-btn[disabled] { opacity: 0; pointer-events: none; }

@media (max-width: 720px) {
  /* 모바일은 손가락 스와이프가 자연스러우므로 화살표 숨김 */
  .carousel-btn { display: none; }
  .media-carousel .gallery-item { flex: 0 0 78%; }
}

.story-sub-lead {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 20px;
}

.gallery-item.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: #000;
}

.story-more {
  margin-top: 32px;
  text-align: center;
}

/* 성혼 갤러리 빈 상태 (콘텐츠 채우기 전 자리표시) */
.gallery-placeholder {
  grid-column: 1 / -1;
  border: 2px dashed var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 44px 24px;
  text-align: center;
}

.gallery-placeholder .ph-icon {
  display: block;
  font-size: 34px;
  margin-bottom: 10px;
}

.gallery-placeholder .ph-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

.gallery-placeholder .ph-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Press ===== */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.press-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.press-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-views {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(25, 31, 40, 0.2);
}

.press-channel {
  margin: 0;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

/* 출연 카드가 링크가 되면서 추가된 스타일 */
a.press-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.press-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 50%;
  font-size: 19px;
  padding-left: 5px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.press-card:hover .press-play {
  background: #ff0000;
  transform: scale(1.08);
}

/* ===== YouTube ===== */
.youtube-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--ink);
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Apply form ===== */
.apply-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: none;
  padding: 0;
  margin: 0;
}

.form-row label, .form-row legend {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  padding: 0;
}

.required { color: #e5503c; }

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-body);
  cursor: pointer;
}

.privacy-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

.privacy-title {
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.privacy-box p { margin: 0 0 8px; }
.privacy-box p:last-child { margin-bottom: 0; }
.privacy-box strong { color: var(--ink-body); }

.consent-label {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.btn-submit {
  width: 100%;
  border: none;
  font-size: 16px;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-faint);
  margin: 0;
}

.form-success {
  background: var(--blue-soft);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 24px;
}

.form-success h3 { margin: 0 0 10px; color: var(--blue); }
.form-success p { margin: 0; color: var(--ink-soft); }

/* ===== 여는 글 (진심이야기 편지) ===== */
.intro-letter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 720px;
  margin: 0 0 56px;
  box-shadow: var(--shadow);
}

.intro-letter .letter-label {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 24px;
}

.intro-letter p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink-body);
  margin: 0 0 20px;
}

.intro-letter p strong { color: var(--ink); }

.letter-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.letter-sign img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 60%;
}

.letter-sign b {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

.letter-sign span {
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .intro-letter { padding: 28px 22px; }
}

/* 여는 글 — 접이식 (게시판이 주인공이 되도록) */
.intro-letter.compact {
  padding: 0;
  overflow: hidden;
}

.intro-letter.compact summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  flex-wrap: wrap;
}

.intro-letter.compact summary::-webkit-details-marker { display: none; }

.intro-letter.compact summary .letter-label { margin: 0; flex-shrink: 0; }

.intro-letter.compact .letter-preview {
  font-size: 15px;
  color: var(--ink-soft);
}

.intro-letter.compact .letter-preview b {
  color: var(--blue);
  font-weight: 700;
  margin-left: 6px;
}

.intro-letter.compact[open] summary .letter-preview b::after { content: " ▲"; font-size: 11px; }

.intro-letter.compact .letter-body {
  padding: 4px 28px 32px;
}

/* ===== 게시판 (진심이야기 목록) ===== */
.board-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.board-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.board-tab:hover { border-color: var(--blue); color: var(--blue); }

.board-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.board {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.board-row a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}

.board-row:last-child a { border-bottom: none; }

.board-row a:hover { background: var(--bg-alt); }

.row-tag {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}

.tag-indonesia { background: var(--blue-soft); color: var(--blue); }
.tag-laos { background: #e9f8ef; color: #14934a; }
.tag-common { background: var(--bg-alt); color: var(--ink-soft); }

.row-title {
  flex: 1;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.row-date {
  flex-shrink: 0;
  font-size: 13.5px;
  color: var(--ink-faint);
}

.board-empty {
  text-align: center;
  color: var(--ink-faint);
  font-size: 15px;
  padding: 40px 0;
}

@media (prefers-color-scheme: dark) {
  .tag-laos { background: #12301f; color: #4ade80; }
}

@media (max-width: 720px) {
  .board-row a { padding: 16px 16px; gap: 10px; flex-wrap: wrap; }
  .row-title { flex-basis: 100%; order: 3; }
}

/* ===== 칼럼 (목록 + 본문) ===== */
.column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.column-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.column-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.column-card .card-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.column-card h3 {
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.column-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.column-card .card-date {
  font-size: 13px;
  color: var(--ink-faint);
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.article-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.article h1 {
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 800;
}

.article-meta {
  font-size: 14px;
  color: var(--ink-faint);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article h2 {
  font-size: 23px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
}

.article p {
  font-size: 16.5px;
  color: var(--ink-body);
  margin: 0 0 20px;
}

.article ul, .article ol {
  font-size: 16.5px;
  color: var(--ink-body);
  margin: 0 0 20px;
  padding-left: 24px;
}

.article li { margin-bottom: 8px; }

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 15.5px;
}

.article th {
  background: var(--bg-alt);
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--line);
}

.article td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--ink-body);
}

.article .highlight-box {
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 0 0 24px;
  font-size: 15.5px;
  color: var(--ink-body);
}

.chart-figure {
  margin: 0 0 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 24px 16px;
}

.chart-figure .chart-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
}

.chart-figure svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-figure figcaption {
  font-size: 13px;
  color: var(--ink-faint);
  padding-top: 12px;
}

.article-refs {
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.article-refs .refs-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.article-refs ol {
  margin: 0;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.article-refs li { margin-bottom: 6px; }

.article-refs a { color: var(--blue); }

.article-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin-top: 56px;
  box-shadow: var(--shadow);
}

.article-cta h3 {
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.article-cta p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.article-cta .btn { margin: 0 6px 8px; }

.back-link {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 28px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--footer-bg);
  color: #8b95a1;
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin: 6px 0 0; font-size: 13.5px; }

.footer-info p {
  margin: 4px 0;
  font-size: 13px;
}

.footer-copy {
  font-size: 12.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin: 0;
}

/* ===== Floating CTA ===== */
.floating-group {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-cta {
  background: var(--blue);
  color: var(--white);
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}

.floating-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* 카카오톡 상담 버튼 (화면 하단 고정) */
.floating-kakao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fee500;
  color: #3c1e1e;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(180, 150, 0, 0.35);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.floating-kakao svg { width: 27px; height: 27px; }

.floating-kakao:hover { transform: translateY(-2px); }

/* ===== 스크롤 등장 애니메이션 (토스 스타일) ===== */
.fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.fade.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
}

/* ===== 다크모드 (휴대폰/PC 테마 자동 추종) ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8eaf0;
    --ink-body: #c9cdd6;
    --ink-soft: #9aa2b1;
    --ink-faint: #6f7684;
    --blue: #5b9cf8;
    --blue-dark: #7fb2ff;
    --blue-soft: #1b2b48;
    --accent-rgb: 91, 156, 248;
    --hero-top: #151a26;
    --hero-fade: #151a26;
    --line: #2a2f3b;
    --line-accent: #2f4468;
    --footer-bg: #0d1017;
    --bg-alt: #171b25;
    --white: #1e2430;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 10px 32px rgba(0, 0, 0, 0.5);
  }

  body { background: #12151d; }

  .site-header {
    background: rgba(18, 21, 29, 0.88);
    border-bottom-color: var(--line);
  }

  .hero-photo-card { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }

  .youtube-embed { background: #000; }

  .chart-figure svg text { fill: var(--ink); }
  .chart-figure svg rect[fill="#c7d2de"] { fill: #3a4356; }

  .btn-primary { color: #fff; }
}

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .logo-sub { display: none; }
}

@media (max-width: 960px) {
  .usp-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .cost-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery img { height: 260px; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo img { height: 420px; }

  .hero-inner { padding: 72px 24px 72px; }
  .hero-photo-card img { max-height: 420px; }

  /* 메뉴가 길어져 960px 이하에서는 햄버거 메뉴로 접는다 (가로 넘침 방지) */
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }
  /* 드롭다운 메뉴 안에서는 카카오 버튼에 라벨을 붙여 알아보기 쉽게 */
  .nav-kakao {
    align-self: flex-start;
    width: auto;
    height: auto;
    gap: 7px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
  }
  .nav-kakao::after { content: "카카오톡 상담"; font-size: 15px; }
  /* 드롭다운 메뉴 안에서는 말풍선 숨김 (어색함) */
  .main-nav .has-bubble::after,
  .main-nav .has-bubble::before { display: none; }
}

@media (max-width: 720px) {
  .mobile-only { display: inline; }
  .mobile-br { display: block; }

  .stat-item { padding: 18px 12px; }
  .stat-num { font-size: 27px; }
  .stat-num span { font-size: 17px; }
  .stat-label { font-size: 12.5px; }

  /* About 하위 구간(출연·SNS) 모바일 가독성 */
  .story-sub { font-size: 19px; }
  .story-sub.press-sub,
  .couple-sns { margin-top: 40px; padding-top: 32px; }
  .couple-sns-lead { font-size: 18px; }
  .press-channel { font-size: 13.5px; padding: 12px 14px; }

  .hero-inner { padding: 56px 20px 64px; }
  .hero-photo-card { border-radius: 20px; margin-top: 36px; }
  .hero-photo-card img { max-height: 320px; }

  .section { padding: 64px 0; }
  .section-title { font-size: 26px; }

  .worry-grid { grid-template-columns: 1fr; }
  .column-list { grid-template-columns: 1fr; }
  .article h1 { font-size: 26px; }
  .worry-q { font-size: 17px; }
  .process-step { gap: 16px; padding: 24px 0; }
  .process-num { width: 44px; height: 44px; font-size: 13px; border-radius: 12px; }
  .process-icon { width: 52px; height: 52px; font-size: 24px; border-radius: 16px; }
  .cost-card { padding: 26px; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .photo-gallery img { height: 200px; }
  .press-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .apply-form { padding: 24px; }

  .floating-group { right: 16px; bottom: 16px; gap: 8px; }
  .floating-cta { padding: 13px 20px; font-size: 14px; }
  .floating-kakao { width: 46px; height: 46px; }
  .floating-kakao svg { width: 23px; height: 23px; }
}
