/* ============================================================
   강남룸도감 — MAIN PAGE REDESIGN (v2 brand system draft)
   이 파일은 메인페이지(index.html) 1개에만 링크된다.
   강남쩜오/강남달토/강남도깨비(theme-draft.css)와 나머지 16개 페이지
   (style.css)는 이 파일의 영향을 받지 않는다 — 완전 격리.

   설계 원칙:
   - CTA/버튼/헤더 브랜드 색상은 페이지 테마와 무관하게 항상 보라(Violet)
     계열로 고정한다 (--cta-* 토큰). 페이지별 데이터-테마는 Hero/섹션의
     glow, decorative line 등 "빛" 표현에만 사용한다 (--glow-* 토큰).
   - 콘텐츠(H1~H3, 본문, 내부링크)는 기존 텍스트를 그대로 사용하고,
     마크업 wrapper만 재구성했다. 신규로 추가된 텍스트는 전부
     decorative/marketing 성격이며 SEO 지침에서 별도로 승인된 항목이다.
   ============================================================ */

:root {
  color-scheme: dark;

  /* ---- Base surface tokens (전 페이지 공통 예정) ---- */
  --color-bg: #08080c;
  --color-bg-elevated: #0c0c13;
  --color-surface: #111118;
  --color-surface-glass: rgba(255, 255, 255, 0.045);
  --color-surface-glass-strong: rgba(255, 255, 255, 0.07);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-text: #f4f4f7;
  --color-text-muted: #a3a3b3;
  --color-text-faint: #6f6f7d;
  --color-danger: #ff5d7a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* ---- Layout ---- */
  --container-max: 1360px;
  --content-max: 780px;
  --header-h: 78px;
  --header-h-mobile: 60px;

  /* ---- Spacing scale (desktop) ---- */
  --section-pad: 128px;
  --section-pad-mobile: 72px;

  /* ---- Brand CTA — 항상 고정, 페이지 테마 영향 없음 ---- */
  --cta-a: #8b5cf6;
  --cta-b: #3b82f6;
  --cta-rgb: 139, 92, 246;
  --cta-b-rgb: 59, 130, 246;
  --cta-grad: linear-gradient(135deg, var(--cta-a), var(--cta-b));

  /* ---- Page glow theme (메인 = Violet + Blue + Pink) ---- */
  --glow-1-rgb: 139, 92, 246;   /* violet */
  --glow-2-rgb: 59, 130, 246;   /* electric blue */
  --glow-3-rgb: 236, 72, 153;   /* neon pink — 소량 포인트 전용 */

  /* ---- Typography scale ---- */
  --fs-hero-h1: clamp(4.5rem, 8vw, 7rem);
  --fs-hero-statement: clamp(2rem, 3.5vw, 4rem);
  --fs-h2: clamp(3.1rem, 4.8vw, 4.3rem);
  --fs-h3: clamp(1.4rem, 2vw, 2rem);
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-eyebrow: 0.8rem;

  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cta-b);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cta-a);
  color: #fff;
  padding: 0.6em 1em;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .wrap {
    padding: 0 48px;
  }
}

.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;
}

/* ============================================================
   MOTION — progressive enhancement (motion.js가 is-visible을 토글)
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.6s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.44s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 0.51s; }
.stagger.is-visible > *:nth-child(9) { transition-delay: 0.58s; }
.stagger.is-visible > *:nth-child(10) { transition-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.72);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h-mobile);
  max-width: 1520px;
}

@media (min-width: 900px) {
  .site-header .wrap {
    height: var(--header-h);
  }
}

/* ---- Logo: symbol + wordmark ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(var(--cta-rgb), 0.55));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  filter: drop-shadow(0 0 16px rgba(var(--cta-rgb), 0.8));
  transform: translateY(-1px);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-word {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .brand-word {
    font-size: 1.4rem;
  }
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a,
.main-nav button.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--cta-grad);
  box-shadow: 0 0 8px rgba(var(--cta-rgb), 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-text);
  background: var(--color-surface-glass);
  text-decoration: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--color-text);
}

.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 208px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(var(--cta-rgb), 0.06);
}

.main-nav li.has-dropdown:hover .dropdown,
.main-nav li.has-dropdown:focus-within .dropdown,
.main-nav li.has-dropdown.open .dropdown {
  display: block;
}

.main-nav .dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.main-nav .dropdown a::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-kakao {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  background: var(--color-surface-glass-strong);
  border: 1px solid rgba(var(--cta-rgb), 0.35);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  background: var(--cta-grad);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 22px -4px rgba(var(--cta-rgb), 0.6);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  text-decoration: none;
  box-shadow: 0 8px 30px -2px rgba(var(--cta-rgb), 0.85);
  transform: translateY(-1px);
}

/* ---- Pending action (오픈채팅 등 링크 준비 전 상태) ----
   실제 URL이 없으므로 <button disabled>로 구현한다 — href="#" 사용,
   임의 링크 생성, 클릭 시 페이지 이동/오작동을 원천적으로 막는다.
   시각적으로는 다른 버튼과 동일한 크기/형태를 유지하되 채움 대신
   outline/glass 톤을 사용해 "아직 연결되지 않음"을 은은하게 표시한다. */
.btn-pending {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-surface-glass);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-strong);
  cursor: not-allowed;
}

.btn-pending:hover,
.btn-pending:focus-visible {
  text-decoration: none;
}

/* 카카오 오픈채팅 버튼만 카카오 공식 브랜드 옐로(#FEE500)를 사용한다.
   사이트 자체 골드/옐로 액센트를 되살리는 것이 아니라, 사용자가 카카오
   서비스임을 즉시 인지시키기 위해 명시적으로 요청한 단일 예외다. */
.btn-kakao {
  background: #fee500;
  color: #191919;
  border-color: transparent;
}

.btn-kakao:hover,
.btn-kakao:focus-visible {
  text-decoration: none;
}

.header-pending {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .header-kakao,
  .header-pending {
    display: inline-flex;
  }
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  cursor: pointer;
  flex: 0 0 auto;
}

.mobile-nav-panel {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
}

.mobile-nav-panel.open {
  display: block;
}

.mobile-nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 24px 18px;
}

.mobile-nav-panel > ul > li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-panel a {
  display: block;
  padding: 13px 4px;
  color: var(--color-text);
}

.mobile-nav-panel .sub-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0 0 0 14px;
}

.mobile-nav-panel .sub-list a {
  padding: 10px 4px;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .mobile-nav-toggle,
  .mobile-nav-panel {
    display: none !important;
  }
}

/* ============================================================
   MAIN
   ============================================================ */

main {
  padding-bottom: 60px;
}

section {
  position: relative;
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 900px) {
  section {
    padding: var(--section-pad) 0;
  }
}

/* ============================================================
   SECTION DIVIDER — 명시적 요소(가상요소 아님). section 사이에
   필요한 곳에만 넣는다 — 넣지 않은 구간은 section 자체의 상하
   padding만으로 구분되는 whitespace 구간이 된다.
   위치(중앙/좌/우)·폭(narrow/기본/wide)을 구간마다 다르게 섞어 쓴다.
   ============================================================ */
.section-divider {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .section-divider {
    padding: 0 48px;
  }
}

.section-divider::after {
  content: "";
  display: block;
  height: 1px;
  width: min(600px, 60%);
  margin: 0 auto;
  transition: transform 0.9s cubic-bezier(0.16, 0.8, 0.24, 1);
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--glow-1-rgb), 0.5),
    rgba(var(--glow-2-rgb), 0.4),
    rgba(var(--glow-3-rgb), 0.35),
    transparent
  );
}

.section-divider.is-visible::after {
  transform: scaleX(1);
}

.section-divider.narrow::after {
  width: min(420px, 42%);
}

.section-divider.wide::after {
  width: min(760px, 75%);
}

.section-divider.align-left::after {
  margin-left: 0;
}

.section-divider.align-right::after {
  margin-right: 0;
  margin-left: auto;
}

/* ---- band: 얇은 라인 뒤에 블러 처리된 gradient light band + ambient
   radial glow를 추가한 "주요 transition"용 확장 버전 ---- */
.section-divider.band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, 86%);
  height: 130px;
  z-index: -1;
  pointer-events: none;
  filter: blur(42px);
  background:
    radial-gradient(ellipse 40% 150% at 50% 50%, rgba(var(--glow-1-rgb), 0.18), transparent 72%),
    linear-gradient(
      90deg,
      transparent,
      rgba(var(--glow-1-rgb), 0.14),
      rgba(var(--glow-2-rgb), 0.12),
      rgba(var(--glow-3-rgb), 0.1),
      transparent
    );
}

/* ---- line-off: 얇은 라인 없이 band(ambient glow)만 남긴다 ---- */
.section-divider.line-off::after {
  display: none;
}

@media (max-width: 640px) {
  .section-divider::after {
    width: 82% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .section-divider.band::before {
    width: 92%;
    height: 90px;
    filter: blur(30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.32;
  margin: 0 0 10px;
}

p {
  margin: 0 0 16px;
  font-size: var(--fs-body);
}

.section-intro {
  color: var(--color-text-muted);
  font-size: var(--fs-body-lg);
  margin: 0 0 36px;
  max-width: var(--content-max);
}

/* ---- Section head: eyebrow + optional big number ---- */
.section-head {
  margin-bottom: 40px;
  max-width: var(--content-max);
}

.section-head.wide {
  max-width: none;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--cta-grad);
  flex: 0 0 auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) 0.15s;
}

.section-head.is-visible .section-eyebrow::before {
  transform: scaleX(1);
}

.section-eyebrow.accent-pink::before {
  background: linear-gradient(90deg, var(--cta-a), rgba(var(--glow-3-rgb), 1));
}

/* 작은 Pink point — eyebrow 옆에 붙이는 극소량 장식 점 */
.pink-point {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 9px;
  vertical-align: middle;
  background: rgba(var(--glow-3-rgb), 0.95);
  box-shadow: 0 0 12px rgba(var(--glow-3-rgb), 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .section-eyebrow::before {
    transform: scaleX(1);
    transition: none;
  }
}

.section-num {
  display: block;
  font-size: clamp(4.5rem, 8.5vw, 10rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 6px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO
   ============================================================ */

.hero-main {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  display: flex;
  align-items: center;
  min-height: 86vh;
}

@media (min-width: 900px) {
  .hero-main {
    min-height: 82vh;
    padding: 40px 0 80px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* 레이어 순서: 사진(0) → 스크림(1) → 브랜드 글로우/라인(2) */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 68% 58% at 50% 36%, rgba(8, 8, 12, 0.86), rgba(8, 8, 12, 0.6) 60%, transparent 85%),
    linear-gradient(180deg, rgba(8, 8, 12, 0.45) 0%, rgba(8, 8, 12, 0.3) 28%, rgba(8, 8, 12, 0.72) 74%, rgba(8, 8, 12, 0.94) 100%);
}

.hero-bg::before,
.hero-bg::after,
.hero-bg .blob-3 {
  content: "";
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg::before {
  top: -18%;
  left: 50%;
  transform: translateX(-58%);
  width: 900px;
  height: 620px;
  max-width: 160vw;
  background:
    radial-gradient(closest-side, rgba(var(--glow-1-rgb), 0.3), transparent 70%);
  animation: hero-drift-a 22s ease-in-out infinite;
}

.hero-bg::after {
  top: 6%;
  left: 62%;
  width: 620px;
  height: 480px;
  max-width: 130vw;
  background: radial-gradient(closest-side, rgba(var(--glow-2-rgb), 0.24), transparent 72%);
  animation: hero-drift-b 26s ease-in-out infinite;
}

.hero-bg .blob-3 {
  bottom: -8%;
  left: 20%;
  width: 460px;
  height: 380px;
  max-width: 110vw;
  background: radial-gradient(closest-side, rgba(var(--glow-3-rgb), 0.16), transparent 74%);
  animation: hero-drift-c 30s ease-in-out infinite;
}

.hero-bg .grain-line {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: min(900px, 84vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--glow-1-rgb), 0.5), rgba(var(--glow-2-rgb), 0.5), transparent);
}

@keyframes hero-drift-a {
  0%, 100% { transform: translateX(-58%) translateY(0) scale(1); }
  50% { transform: translateX(-54%) translateY(24px) scale(1.06); }
}

@keyframes hero-drift-b {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
}

@keyframes hero-drift-c {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(18px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before,
  .hero-bg::after,
  .hero-bg .blob-3 {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero-bg::before {
    width: 520px;
    height: 420px;
    filter: blur(40px);
  }
  .hero-bg::after {
    width: 380px;
    height: 320px;
    filter: blur(36px);
  }
  .hero-bg .blob-3 {
    width: 300px;
    height: 260px;
    filter: blur(32px);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-inner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface-glass);
}

.hero-inner h1 {
  font-size: var(--fs-hero-h1);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 26px 0 20px;
  background-image: linear-gradient(135deg, var(--color-text) 8%, var(--cta-a) 55%, var(--cta-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-statement {
  font-size: var(--fs-hero-statement);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 0 0 28px;
}

.hero-statement .statement-accent {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(100deg, var(--cta-a) 0%, rgba(var(--glow-3-rgb), 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 36px rgba(var(--glow-3-rgb), 0.25);
}

.hero-statement .statement-accent::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cta-a), rgba(var(--glow-3-rgb), 1));
  box-shadow: 0 0 16px rgba(var(--glow-3-rgb), 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1) 0.25s;
}

.hero-inner.is-visible .statement-accent::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-statement .statement-accent::after {
    transform: scaleX(1);
    transition: none;
  }
}

.hero-inner .lede {
  color: var(--color-text-muted);
  font-size: var(--fs-body-lg);
  max-width: 62ch;
  margin: 0 auto 36px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* Primary CTA는 항상 고정 Violet 채움을 유지하되, 주변에 아주 옅은
   Violet+Pink 앰비언트 글로우를 추가한다(버튼 색 자체는 바꾸지 않음). */
.hero-cta-row .btn-primary {
  box-shadow:
    0 10px 34px -8px rgba(var(--cta-rgb), 0.65),
    0 0 54px -12px rgba(var(--glow-3-rgb), 0.4);
}

.hero-cta-row .btn-primary:hover,
.hero-cta-row .btn-primary:focus-visible {
  box-shadow:
    0 12px 40px -4px rgba(var(--cta-rgb), 0.85),
    0 0 64px -8px rgba(var(--glow-3-rgb), 0.55);
}

/* ============================================================
   BUTTONS — 브랜드 고정(Violet), 페이지 테마 영향 없음
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.02rem;
}

.btn-primary {
  background: var(--cta-grad);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 34px -8px rgba(var(--cta-rgb), 0.65);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  text-decoration: none;
  box-shadow: 0 12px 40px -4px rgba(var(--cta-rgb), 0.85);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--cta-a);
  text-decoration: none;
}

.btn-text {
  background: none;
  color: var(--color-text-muted);
  padding: 13px 6px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}

.btn-text:hover,
.btn-text:focus-visible {
  color: var(--color-text);
  border-color: var(--color-border-strong);
  text-decoration: none;
}

/* ============================================================
   ABOUT — editorial split + borderless stats
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
  }
  .split.even {
    grid-template-columns: 1fr 1fr;
  }
}

.split-panel {
  padding: 0;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.stat-row .stat-item {
  flex: 1 1 33%;
  min-width: 120px;
  padding: 24px 20px 0 0;
}

.stat-row .stat-item + .stat-item {
  border-left: 1px solid var(--color-border);
  padding-left: 20px;
}

.stat-row .count {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background-image: linear-gradient(135deg, var(--cta-a), var(--cta-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-row .count-label {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* ============================================================
   CATEGORY SEGMENTS — gradient-border card
   ============================================================ */

.segment-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .segment-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.segment-tabs > a,
.segment-tabs > .segment-item {
  display: block;
  background:
    linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
    linear-gradient(160deg, rgba(var(--cta-rgb), 0.85), rgba(var(--glow-3-rgb), 0.4)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  color: var(--color-text);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.segment-tabs > a:hover,
.segment-tabs > a:focus-visible {
  text-decoration: none;
  box-shadow: 0 0 36px -10px rgba(var(--cta-rgb), 0.55);
  transform: translateY(-3px);
}

.segment-title {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.segment-desc {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.segment-item > p:last-child {
  margin-bottom: 0;
}

.segment-item a,
.segment-tabs > a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cta-b);
}

/* ============================================================
   CATEGORY RAIL (room-types) — 대형 넘버 + 라인 구분, 카드 아님
   ============================================================ */

.category-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  counter-reset: rail;
}

@media (min-width: 700px) {
  .category-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media (min-width: 1080px) {
  .category-rail {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-rail .feature-item {
  counter-increment: rail;
  position: relative;
}

@media (min-width: 700px) {
  .category-rail .feature-item {
    padding-right: 32px;
  }
  .category-rail .feature-item:nth-child(2n) {
    border-left: 1px solid var(--color-border);
    padding-left: 32px;
  }
}

@media (min-width: 1080px) {
  .category-rail .feature-item:nth-child(2n) {
    border-left: none;
    padding-left: 0;
  }
  .category-rail .feature-item:not(:nth-child(4n+1)) {
    border-left: 1px solid var(--color-border);
    padding-left: 32px;
  }
}

.category-rail .feature-item::before {
  content: counter(rail, decimal-leading-zero);
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-image 0.25s ease;
}

.category-rail .feature-item:hover::before {
  background-image: linear-gradient(135deg, var(--cta-a), var(--cta-b));
}

.category-rail .feature-item h3 {
  margin-bottom: 10px;
}

.category-rail .feature-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
  max-width: 34ch;
}

.category-rail .feature-item .card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cta-b);
}

/* ============================================================
   CHIP CLOUD (shops)
   ============================================================ */

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.chip:hover {
  border-color: rgba(var(--cta-rgb), 0.6);
  color: var(--color-text);
  box-shadow: 0 0 14px -4px rgba(var(--cta-rgb), 0.5);
}

/* ---- Poster wall — 대표 업소 3~4곳을 겹쳐서 depth를 주는 visual slot.
   실제 이미지 파일이 아직 없어 지금은 placeholder(그라디언트 틴트 +
   라벨)만 넣어둔다 — 추후 이미지가 제공되면 .poster-slot 안에
   <img>만 추가하면 되는 구조로 미리 준비. ---- */
.poster-wall {
  display: flex;
  align-items: flex-end;
  padding: 6px 0 16px 0;
  margin-bottom: 8px;
}

.poster-slot {
  position: relative;
  flex: 0 0 auto;
  width: 128px;
  aspect-ratio: 3 / 4;
  margin-left: -42px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 46px -18px rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: poster-float 7s ease-in-out infinite;
}

.poster-slot:first-child {
  margin-left: 0;
}

.poster-slot:nth-child(1) {
  background: linear-gradient(160deg, rgba(var(--glow-1-rgb), 0.28), rgba(var(--glow-1-rgb), 0.06));
  transform: rotate(-4deg);
  animation-delay: 0s;
}

.poster-slot:nth-child(2) {
  background: linear-gradient(160deg, rgba(var(--glow-3-rgb), 0.26), rgba(var(--glow-3-rgb), 0.05));
  transform: rotate(3deg) translateY(-10px);
  animation-delay: 0.6s;
}

.poster-slot:nth-child(3) {
  background: linear-gradient(160deg, rgba(var(--glow-2-rgb), 0.26), rgba(var(--glow-2-rgb), 0.05));
  transform: rotate(-2deg);
  animation-delay: 1.2s;
}

.poster-slot:nth-child(4) {
  background: linear-gradient(160deg, rgba(var(--glow-1-rgb), 0.22), rgba(var(--glow-3-rgb), 0.08));
  transform: rotate(4deg) translateY(-6px);
  animation-delay: 1.8s;
}

.poster-slot:hover {
  z-index: 5;
  box-shadow: 0 26px 56px -16px rgba(0, 0, 0, 0.75);
}

.poster-slot-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@keyframes poster-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -6px; }
}

@media (prefers-reduced-motion: reduce) {
  .poster-slot {
    animation: none;
  }
}

@media (max-width: 560px) {
  .poster-slot {
    width: 96px;
    margin-left: -32px;
    padding: 9px;
  }
  .poster-slot-label {
    font-size: 0.7rem;
  }
}

/* ============================================================
   AREAS — borderless editorial strip (카드 그리드 아님)
   ============================================================ */

.editorial-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 700px) {
  .editorial-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .editorial-strip .editorial-col + .editorial-col {
    border-left: 1px solid var(--color-border);
    padding-left: 56px;
    margin-left: -1px;
  }
  .editorial-strip .editorial-col {
    padding-right: 56px;
  }
}

.editorial-col h3 {
  margin-top: 0;
}

.editorial-col p {
  color: var(--color-text-muted);
  font-size: var(--fs-body-lg);
  max-width: 46ch;
}

.editorial-col .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cta-b);
}

/* ---- Section ambient zone (Hero의 Violet/Blue/Pink 정체성을 스크롤
   이후에도 아주 옅게 이어준다 — 큰 면적 착색 없이 코너 wash 2개만).
   --zone-a(우상단)/--zone-b(좌하단) 두 rgb 변수를 zone-* 클래스로
   섹션마다 다르게 지정해 색 조합에 변화를 준다. ---- */
.section-glow {
  --zone-a: var(--glow-1-rgb);
  --zone-b: var(--glow-2-rgb);
  overflow: hidden;
}

.section-glow::before,
.section-glow::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.section-glow::before {
  top: -220px;
  right: -180px;
  background: radial-gradient(closest-side, rgba(var(--zone-a), 0.26), transparent 72%);
}

.section-glow::after {
  bottom: -220px;
  left: -180px;
  background: radial-gradient(closest-side, rgba(var(--zone-b), 0.22), transparent 72%);
}

/* 좌/우 위치 강제 — 기본은 우상단(::before)/좌하단(::after) 코너지만,
   특정 섹션은 "좌측" 또는 "우측"에 집중되도록 두 코너를 같은 쪽으로 몬다. */
.section-glow.pos-left::before {
  right: auto;
  left: -180px;
}

.section-glow.pos-right::after {
  left: auto;
  right: -180px;
}

.section-glow.zone-blue-violet { --zone-a: var(--glow-2-rgb); --zone-b: var(--glow-1-rgb); }
.section-glow.zone-violet-magenta { --zone-a: var(--glow-1-rgb); --zone-b: var(--glow-3-rgb); }
.section-glow.zone-blue { --zone-a: var(--glow-2-rgb); --zone-b: var(--glow-2-rgb); }
.section-glow.zone-violet-pink { --zone-a: var(--glow-1-rgb); --zone-b: var(--glow-3-rgb); }
.section-glow.zone-pink { --zone-a: var(--glow-3-rgb); --zone-b: var(--glow-3-rgb); }
.section-glow.zone-violet-solo { --zone-a: var(--glow-1-rgb); --zone-b: var(--glow-1-rgb); }

/* ============================================================
   GUIDE — vertical illuminated timeline
   ============================================================ */

.timeline-v {
  list-style: none;
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(var(--cta-rgb), 0.32);
  counter-reset: vstep;
}

.timeline-v li {
  position: relative;
  padding: 2px 0 34px 32px;
  counter-increment: vstep;
}

.timeline-v li:last-child {
  padding-bottom: 2px;
}

.timeline-v li::before {
  display: none;
}

.timeline-v .step-title {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-size: 18.8px; /* 1.05rem(16.8px) + 2px */
  color: var(--color-text);
}

.timeline-v .step-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ============================================================
   CONTACT — full-width statement CTA
   ============================================================ */

.cta-block {
  position: relative;
  text-align: center;
  padding: 64px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 90% 140% at 50% -20%, rgba(var(--cta-rgb), 0.16), transparent 65%),
    radial-gradient(ellipse 60% 90% at 100% 120%, rgba(var(--glow-3-rgb), 0.14), transparent 70%),
    var(--color-surface-glass);
  overflow: hidden;
}

.cta-block h2 {
  margin-bottom: 14px;
}

.cta-block > p {
  color: var(--color-text-muted);
  font-size: var(--fs-body-lg);
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.contact-line {
  color: var(--color-text-faint);
  font-size: 0.88rem;
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 32px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--cta-rgb), 0.6), rgba(var(--glow-3-rgb), 0.5), transparent);
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer-grid p {
  margin: 0 0 10px;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a {
  color: var(--color-text-muted);
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  font-size: 0.8rem;
}

.disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 6px;
}

/* Mobile call bar — Kakao(정보) / 오픈채팅(pending) / 전화(작동) 3분할 */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: stretch;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -10px 30px -8px rgba(0, 0, 0, 0.5);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mcb-kakao {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mcb-pending {
  flex: 0.85 1 0;
  border-radius: 0;
  border-width: 0 1px;
  border-color: var(--color-border);
  font-size: 0.72rem;
  line-height: 1.3;
  padding: 8px 4px;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

.mcb-call {
  flex: 1.15 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: var(--cta-grad);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.mcb-call:hover,
.mcb-call:focus-visible {
  text-decoration: none;
}

@media (min-width: 700px) {
  .mobile-call-bar {
    display: none;
  }
}

@media (max-width: 699px) {
  main {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
  /* 하단 고정 상담바에 Footer 마지막 줄이 가리지 않도록 여유 확보 */
  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   MOBILE TUNING
   ============================================================ */

@media (max-width: 640px) {
  .hero-inner .lede {
    font-size: 1rem;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta-row .btn {
    justify-content: center;
    width: 100%;
  }
  .stat-row .stat-item {
    flex: 1 1 45%;
  }
}

/* ============================================================================
   SUBPAGE COMPONENT LIBRARY
   19개 서브페이지(이전 style.css/theme-draft.css)에서 쓰던 컴포넌트 클래스를
   동일한 이름으로 이 파일에 재이식했다 — 서브페이지 본문 HTML은 거의 그대로
   두고 stylesheet만 이 파일로 교체하면 새 브랜드 언어(Black/Charcoal + Violet
   /Blue/Pink glass·glow)로 자동 전환되도록 설계했다.
   ============================================================================ */

/* 페이지별 보조 accent(장식용) — CTA 버튼 색과는 무관, 아래 [data-theme]
   블록에서 페이지마다 재정의한다. 기본값 = Violet. */
:root {
  --accent2-rgb: var(--glow-1-rgb);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 14px 0 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--color-text-faint);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--color-text-faint);
}

.breadcrumb a {
  color: var(--color-text-faint);
}

.breadcrumb a:hover {
  color: var(--color-text-muted);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text-muted);
}

/* ---- Card / Card grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 800px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(var(--accent2-rgb), 0.55);
  box-shadow: 0 0 0 1px rgba(var(--accent2-rgb), 0.15), 0 14px 32px -16px rgba(var(--accent2-rgb), 0.45);
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  margin-bottom: 10px;
}

.card .card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cta-b);
}

/* row-style variant */
.card-grid.row-style {
  grid-template-columns: 1fr;
}

.card-grid.row-style .card {
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 3px solid rgba(var(--accent2-rgb), 0.7);
}

.card-grid.row-style .card h3 {
  flex: 0 0 130px;
  margin: 0;
}

.card-grid.row-style .card .card-body {
  flex: 1;
  min-width: 0;
}

.card-grid.row-style .card p {
  margin: 0 0 4px;
}

@media (max-width: 480px) {
  .card-grid.row-style .card {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-grid.row-style .card h3 {
    flex: none;
  }
}

/* ---- Table ---- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin: 0 0 16px;
  background: var(--color-surface-glass);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 0.92rem;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

thead th {
  background: var(--color-surface-glass-strong);
  color: var(--cta-b);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

tbody tr:last-child td {
  border-bottom: none;
}

table .col-highlight {
  background: rgba(var(--accent2-rgb), 0.12);
  color: var(--color-text);
  font-weight: 700;
}

/* ---- Note / Checklist ---- */
.note {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  background: var(--color-surface-glass);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin: 0 0 16px;
}

ul.checklist {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

ul.checklist li {
  margin-bottom: 10px;
}

ul.checklist li::marker {
  color: var(--cta-b);
}

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  background: var(--color-surface-glass);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--cta-b);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(var(--cta-b-rgb), 0.6);
}

.faq-item[open] {
  border-color: rgba(var(--accent2-rgb), 0.4);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 18px 18px;
  color: var(--color-text-muted);
}

/* ---- Related list ---- */
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.related-list a {
  display: block;
  padding: 14px 16px;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.94rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-list a:hover,
.related-list a:focus-visible {
  border-color: rgba(var(--accent2-rgb), 0.55);
  box-shadow: 0 0 0 1px rgba(var(--accent2-rgb), 0.15);
  text-decoration: none;
}

/* ---- Sticky anchor sub-nav ---- */
.subnav-sticky {
  position: sticky;
  top: var(--header-h-mobile);
  z-index: 40;
  background: rgba(8, 8, 12, 0.85);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

@media (min-width: 900px) {
  .subnav-sticky {
    top: var(--header-h);
  }
}

.subnav-sticky .subnav-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

@media (min-width: 900px) {
  .subnav-sticky .subnav-scroll {
    padding: 12px 48px;
    max-width: var(--container-max);
    margin: 0 auto;
  }
}

.subnav-sticky a {
  flex: 0 0 auto;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-glass);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.subnav-sticky a:hover,
.subnav-sticky a:focus-visible {
  color: var(--color-text);
  border-color: rgba(var(--accent2-rgb), 0.6);
  background: rgba(var(--accent2-rgb), 0.12);
  box-shadow: 0 0 14px rgba(var(--accent2-rgb), 0.35);
  text-decoration: none;
}

/* ---- Before/After comparison ---- */
.shift-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 640px) {
  .shift-compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.shift-compare .shift-arrow {
  display: none;
  color: var(--cta-b);
  font-size: 1.6rem;
  text-align: center;
  text-shadow: 0 0 14px rgba(var(--cta-b-rgb), 0.6);
}

@media (min-width: 640px) {
  .shift-compare .shift-arrow {
    display: block;
  }
}

.shift-card {
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid var(--color-border);
}

.shift-card.is-old {
  background: transparent;
  color: var(--color-text-muted);
  opacity: 0.75;
}

.shift-card.is-old .shift-label {
  text-decoration: line-through;
  text-decoration-color: var(--color-danger);
}

.shift-card.is-new {
  background: linear-gradient(160deg, rgba(var(--accent2-rgb), 0.14), rgba(var(--cta-b-rgb), 0.06));
  border-color: rgba(var(--accent2-rgb), 0.5);
  box-shadow: 0 0 30px -8px rgba(var(--accent2-rgb), 0.35);
}

.shift-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.shift-card.is-new .shift-label {
  color: var(--cta-b);
}

/* ---- Stat grid ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0;
}

@media (min-width: 640px) {
  .stat-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  border-color: rgba(var(--accent2-rgb), 0.5);
  box-shadow: 0 0 24px -8px rgba(var(--accent2-rgb), 0.4);
}

.stat-card .stat-icon {
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(var(--accent2-rgb), 0.55));
}

.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}

.stat-card .stat-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--cta-b);
  display: block;
}

/* ---- Stat bar ---- */
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.stat-bar .stat-bar-item {
  flex: 1 1 140px;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-left: 3px solid rgba(var(--accent2-rgb), 0.8);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: -6px 0 18px -12px rgba(var(--accent2-rgb), 0.6);
}

.stat-bar .stat-bar-item .label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}

.stat-bar .stat-bar-item .value {
  font-size: 0.94rem;
  font-weight: 700;
}

/* ---- Numbered cards ---- */
.numbered-cards {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .numbered-cards.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.numbered-cards li {
  position: relative;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px 16px 16px 62px;
}

.numbered-cards li::before {
  content: attr(data-num);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-a), rgba(var(--accent2-rgb), 1));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(var(--accent2-rgb), 0.55);
}

/* ---- Callout list ---- */
.callout-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.callout-list li {
  padding: 12px 16px;
  border-left: 3px solid var(--cta-b);
  background: linear-gradient(90deg, rgba(var(--accent2-rgb), 0.1), transparent 60%);
  border-radius: 0 8px 8px 0;
  font-size: 0.94rem;
}

.callout-list.is-warning li {
  border-left-color: #f87171;
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.14), transparent 60%);
}

/* ---- Grade ladder: 유흥 등급 체계를 가로 pill 나열로 표시, 현재 페이지
   해당 등급만 강조 표시(.is-current) ---- */
.grade-ladder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.grade-ladder .grade-step {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-glass);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.grade-ladder .grade-arrow {
  color: var(--color-text-faint);
  font-size: 0.8rem;
}

.grade-ladder .grade-step.is-current {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
    linear-gradient(120deg, var(--cta-a), rgba(var(--accent2-rgb), 1)) border-box;
  color: var(--color-text);
  font-weight: 800;
}

/* ---- Etiquette grid: 권장/주의 2단 카드 ---- */
.etiquette-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 700px) {
  .etiquette-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.etiquette-col {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.etiquette-col.is-good {
  border-color: rgba(var(--cta-rgb), 0.35);
}

.etiquette-col.is-bad {
  border-color: rgba(248, 113, 113, 0.35);
}

.etiquette-label {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 14px;
}

/* ---- Scroll strip ---- */
.scroll-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  margin: 18px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.scroll-strip > * {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
}

.scroll-strip .card {
  height: 100%;
}

/* ---- Counter bar ---- */
.counter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 24px;
}

.counter-bar .counter-item {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  text-align: center;
}

.counter-bar .counter-item .count {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  background-image: linear-gradient(135deg, var(--cta-a), rgba(var(--accent2-rgb), 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-bar .counter-item .count-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ---- Timeline horizontal ---- */
.timeline-h {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 24px 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

@media (min-width: 760px) {
  .timeline-h {
    grid-template-columns: repeat(var(--steps, 5), 1fr);
  }
}

.timeline-h .step {
  position: relative;
  padding: 24px 16px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-glass);
  counter-increment: step;
}

.timeline-h .step + .step {
  border-top: none;
}

@media (min-width: 760px) {
  .timeline-h .step + .step {
    border-top: 1px solid var(--color-border);
    border-left: none;
  }
  .timeline-h .step {
    border-right: none;
  }
  .timeline-h .step:last-child {
    border-right: 1px solid var(--color-border);
  }
}

.timeline-h .step::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-a), rgba(var(--accent2-rgb), 1));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  box-shadow: 0 0 16px rgba(var(--accent2-rgb), 0.6);
}

.timeline-h .step p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ---- Floor stack ---- */
.floor-stack {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.floor-stack li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-glass);
  border-left: 3px solid transparent;
}

.floor-stack li:nth-child(odd) {
  background: rgba(var(--accent2-rgb), 0.05);
  border-left-color: rgba(var(--accent2-rgb), 0.55);
}

.floor-stack li:nth-child(even) {
  border-left-color: rgba(var(--cta-b-rgb), 0.55);
}

.floor-stack li:last-child {
  border-bottom: none;
}

.floor-stack .floor-name {
  font-weight: 700;
}

.floor-stack .floor-detail {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* ---- Aside card ---- */
.aside-card {
  background:
    linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
    linear-gradient(160deg, rgba(var(--accent2-rgb), 0.8), rgba(var(--cta-b-rgb), 0.4)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 18px 0;
  box-shadow: 0 0 30px -14px rgba(var(--accent2-rgb), 0.5);
}

.aside-card .aside-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cta-b);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 10px;
}

/* split-panel(레이아웃 다양화 페이지용) — 서브페이지에서는 glass panel로 */
.split-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.split-panel h3 {
  margin-top: 0;
}

/* ---- Filter jump ---- */
.filter-jump {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.filter-jump a {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent2-rgb), 0.5);
  color: var(--cta-b);
  font-size: 0.88rem;
  font-weight: 600;
}

.filter-jump a:hover,
.filter-jump a:focus-visible {
  background: rgba(var(--accent2-rgb), 0.14);
  box-shadow: 0 0 14px rgba(var(--accent2-rgb), 0.4);
  text-decoration: none;
}

/* ============================================================================
   SUBPAGE HERO — 배경형(BG) / 포스터형(POSTER) 2가지 composition
   ============================================================================ */

.hero-inner.align-left {
  text-align: left;
  margin: 0;
  max-width: none;
}

.hero-inner.align-left .eyebrow {
  margin-left: 0;
}

.hero-inner.align-left .lede {
  margin-left: 0;
  margin-right: auto;
}

/* Poster composition: 텍스트 한쪽 + 이미지 반대쪽 */
.hero-poster-grid {
  display: block;
}

@media (min-width: 1000px) {
  .hero-poster-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
  }
  .hero-poster-grid.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .hero-poster-grid.reverse .hero-visual {
    order: -1;
  }
  .hero-poster-grid .eyebrow {
    margin-left: 0;
  }
  .hero-poster-grid .lede {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-poster-grid .hero-cta-row {
    justify-content: flex-start;
  }
}

.hero-visual {
  position: relative;
  margin: 36px auto 0;
  max-width: 420px;
}

@media (min-width: 1000px) {
  .hero-visual {
    margin: 0;
    max-width: none;
  }
}

.hero-visual-glow {
  position: absolute;
  inset: -16% -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 55% 35%, rgba(var(--accent2-rgb), 0.4), transparent 68%),
    radial-gradient(closest-side at 25% 78%, rgba(var(--glow-3-rgb), 0.2), transparent 70%);
  filter: blur(50px);
}

.hero-visual-frame {
  position: relative;
  z-index: 1;
  max-width: 420px;
  max-height: 54vh;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px -24px rgba(0, 0, 0, 0.65);
  background: var(--color-bg-elevated);
  overflow: hidden;
}

@media (min-width: 1000px) {
  .hero-visual-frame {
    max-width: none;
    width: 100%;
  }
}

.hero-visual-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================================
   SUBPAGE-ONLY OVERRIDES (body.subpage로 스코프 — 메인페이지는 이 클래스가
   없으므로 아래 규칙에 전혀 영향받지 않는다. 메인은 §13 이전 상태 그대로.)
   ============================================================================ */

/* ---- H1 scale: 메인의 --fs-hero-h1(최대 112px)을 서브페이지 제목에
   그대로 쓰면 3~5줄로 깨진다. 글자수 구간별로 별도 scale을 준다. ---- */
body.subpage .hero-copy h1,
body.subpage .hero-centered h1 {
  line-height: 1.22;
  letter-spacing: -0.02em;
}

body.subpage h1.h1-short {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

body.subpage h1.h1-md {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
}

body.subpage h1.h1-long {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

/* ---- Section spacing: 메인은 128px 고정이지만 서브페이지는 콘텐츠 밀도에
   맞춰 96 / 64 / 44px 3단계를 사용한다(모든 section 동일 간격 금지). ---- */
body.subpage section {
  padding: 64px 0;
}

body.subpage section.section-lg {
  padding: 96px 0;
}

body.subpage section.section-sm {
  padding: 44px 0;
}

@media (max-width: 640px) {
  body.subpage section {
    padding: 48px 0;
  }
  body.subpage section.section-lg {
    padding: 64px 0;
  }
  body.subpage section.section-sm {
    padding: 32px 0;
  }
}

/* ---- Poster 크기 상향: 420px → 480px, 프레임 최소폭도 확보 ---- */
body.subpage .hero-visual-frame {
  max-width: 480px;
}

@media (min-width: 1000px) {
  body.subpage .hero-visual {
    min-width: 320px;
  }
}

/* ---- Hero 유형 B: 포스터 비중을 더 크게(60/40) — 이미지가 핵심인 페이지용 ---- */
@media (min-width: 1000px) {
  body.subpage .hero-poster-grid.poster-dominant {
    grid-template-columns: 0.85fr 1.15fr;
  }
  body.subpage .hero-poster-grid.poster-dominant.reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }
  body.subpage .hero-poster-grid.poster-dominant .hero-visual-frame {
    max-width: none;
  }
}

/* ---- Hero 유형 C: 중앙 정렬 텍스트 + 포스터를 아래쪽에 배치(Directory류) ---- */
body.subpage .hero-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

body.subpage .hero-centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

body.subpage .hero-centered .lede {
  margin-left: auto;
  margin-right: auto;
}

body.subpage .hero-centered .hero-cta-row {
  justify-content: center;
}

body.subpage .hero-centered-poster {
  position: relative;
  margin: 40px auto 0;
  max-width: 360px;
}

@media (min-width: 700px) {
  body.subpage .hero-centered-poster {
    max-width: 420px;
  }
}

body.subpage .hero-centered .counter-bar {
  justify-content: center;
}

/* ---- Hero 유형 D: 텍스트 + 미니 stat row + 포스터(stat 중심 페이지용) ---- */
body.subpage .hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

body.subpage .hero-mini-stats .mini-stat {
  min-width: 84px;
}

body.subpage .hero-mini-stats .mini-stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  background-image: linear-gradient(135deg, var(--cta-a), rgba(var(--accent2-rgb), 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.subpage .hero-mini-stats .mini-stat-label {
  font-size: 0.76rem;
  color: var(--color-text-faint);
}

/* 강남달토 H1 안의 accent-part(예: "강남달토") 그라디언트 강조 유지 */
.hero-copy h1 .accent-part {
  background-image: linear-gradient(135deg, var(--cta-a), rgba(var(--accent2-rgb), 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================================
   19개 서브페이지 — 페이지별 보조 accent (--accent2-rgb) + 코너 위치
   CTA 버튼 색(--cta-a/--cta-b)은 절대 재정의하지 않는다(항상 Violet→Blue).
   ============================================================================ */
[data-theme="jjeomo"]      { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="eopso"]       { --accent2-rgb: var(--glow-2-rgb); }
[data-theme="room"]        { --accent2-rgb: var(--glow-2-rgb); }
[data-theme="hyperpublic"] { --accent2-rgb: var(--glow-1-rgb); }
[data-theme="karaoke"]     { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="yeoknorae"]   { --accent2-rgb: var(--glow-2-rgb); }
[data-theme="shirtsroom"]  { --accent2-rgb: var(--glow-1-rgb); }
[data-theme="sinsa"]       { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="sinnonhyeon"] { --accent2-rgb: var(--glow-2-rgb); }
[data-theme="dokkaebi"]    { --accent2-rgb: var(--glow-1-rgb); }
[data-theme="dalto"]       { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="impact"]      { --accent2-rgb: var(--glow-2-rgb); }
[data-theme="timing"]      { --accent2-rgb: var(--glow-2-rgb); }
[data-theme="uandme"]      { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="sarainne"]    { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="elite"]       { --accent2-rgb: var(--glow-1-rgb); }
[data-theme="dopamine"]    { --accent2-rgb: var(--glow-3-rgb); }
[data-theme="gugudan"]     { --accent2-rgb: var(--glow-1-rgb); }
[data-theme="blending"]    { --accent2-rgb: var(--glow-2-rgb); }

/* ============================================================================
   SUBPAGE CONTENT SHELL — Header에서 실측한 좌우 경계(Logo 시작 ~ 전화 CTA
   끝 = max-width 1520px)를 19개 서브페이지 전체 공통 외곽 경계로 재사용한다.
   Header도 같은 .wrap 클래스를 쓰므로 전용 클래스(.content-shell/.hero-inner)
   에만 적용해 Header와 절대 겹치지 않게 한다(§17에서 겪은 .wrap 충돌 재발 방지).
   메인페이지는 body에 subpage class가 없어 전혀 영향받지 않는다.
   ============================================================================ */
body.subpage .content-shell,
body.subpage .hero-inner {
  max-width: 1520px;
}

/* .hero-main이 display:flex라 자식(.hero-inner)이 콘텐츠 크기로
   shrink-to-fit 되는 문제 수정 — flex 컨테이너 폭을 실제로 채우게 한다. */
body.subpage .hero-inner {
  width: 100%;
}

/* Split/Directory/Editorial Hero의 기존 캡(1180px 등)을 해제해 같은 외곽
   경계까지 쓰게 한다 — 내부 컬럼 비율(1.05fr/0.95fr, 1.3fr/1fr 등)은 유지.
   .hero-centered(Narrow 역할, 760px)는 의도적으로 좁게 유지하는 별도 유형이라
   여기서 제외한다. */
body.subpage .hero-poster-grid,
body.subpage .hero-directory,
body.subpage .hero-editorial {
  max-width: 1520px;
}

/* ---- H1 스케일: 넓어진 컬럼에 맞춰 19페이지 공통으로 상향(Phase C 대비 소폭) ---- */
body.subpage h1.h1-short {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

body.subpage h1.h1-md {
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
}

body.subpage h1.h1-long {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}

body.subpage .hero-copy .lede,
body.subpage .hero-directory .lede,
body.subpage .hero-editorial-text .lede {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ---- Directory Hero(강남업소형: 통계 + 카테고리 진입 네비 + 보조 포스터) ---- */
body.subpage .hero-directory {
  display: block;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  body.subpage .hero-directory {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
  }
  body.subpage .hero-directory .eyebrow,
  body.subpage .hero-directory .lede {
    margin-left: 0;
    margin-right: 0;
  }
  body.subpage .hero-directory .counter-bar {
    justify-content: flex-start;
  }
}

body.subpage .directory-nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

body.subpage .directory-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
    linear-gradient(150deg, rgba(var(--cta-rgb), 0.75), rgba(var(--accent2-rgb), 0.45)) border-box;
  border: 1px solid transparent;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.subpage .directory-nav-link:hover,
body.subpage .directory-nav-link:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -16px rgba(var(--accent2-rgb), 0.55);
}

body.subpage .dnl-title {
  font-weight: 800;
  font-size: 1.05rem;
}

body.subpage .dnl-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

body.subpage .hero-directory .hero-visual {
  margin: 32px auto 0;
  max-width: 340px;
}

@media (min-width: 1000px) {
  body.subpage .hero-directory .hero-visual {
    margin: 0;
    max-width: 400px;
    justify-self: end;
  }
}

/* ---- Editorial Hero(강남역노래방형: 텍스트 주도 + 비대칭 보조 비주얼) ---- */
body.subpage .hero-editorial {
  display: block;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  body.subpage .hero-editorial {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: start;
  }
  body.subpage .hero-editorial-visual {
    margin-top: 32px;
  }
}

body.subpage .hero-editorial-visual {
  position: relative;
  max-width: 340px;
  margin: 32px auto 0;
}

@media (min-width: 1000px) {
  body.subpage .hero-editorial-visual {
    max-width: 380px;
    margin-left: auto;
    margin-right: 0;
    transform: rotate(-2deg);
  }
}

body.subpage .area-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 6px;
}

/* ============================================================================
   SUBPAGE TYPOGRAPHY & SPACING SYSTEM — 19페이지 공통 적용. 메인페이지는
   body.subpage가 없어 전혀 영향받지 않는다.
   ============================================================================ */

/* ---- 섹션 사이 간격: Hero 직후 첫 섹션 + 마지막 CTA 섹션은 크게(Major),
   나머지는 기본값(Medium), 콘텐츠가 얇은 곳은 .section-sm(Compact)으로
   축소 — 모든 section을 같은 값으로 두지 않는다. ---- */
body.subpage section {
  padding: 76px 0;
}

body.subpage .content-shell > section:first-child,
body.subpage section.section-lg,
body.subpage section.cta-block {
  padding: 108px 0;
}

body.subpage section.section-sm {
  padding: 52px 0;
}

@media (max-width: 640px) {
  body.subpage section {
    padding: 52px 0;
  }
  body.subpage .content-shell > section:first-child,
  body.subpage section.section-lg,
  body.subpage section.cta-block {
    padding: 72px 0;
  }
  body.subpage section.section-sm {
    padding: 36px 0;
  }
}

/* ---- 제목 ↔ 본문 간격: H2 바로 아래 문단이 붙어 보이던 문제 수정 ---- */
body.subpage .content-shell section > h2 {
  margin: 0 0 24px;
  line-height: 1.18;
}

body.subpage .content-shell section > h3 {
  margin: 0 0 16px;
  line-height: 1.3;
}

body.subpage .content-shell section p {
  line-height: 1.7;
}

/* 긴 문장은 Header 기준 1520px 전체가 아니라 읽기 좋은 폭으로 제한(Narrow 역할).
   H2는 전체 폭을 쓰므로, 문단을 가운데 정렬하면 제목과 본문의 왼쪽 시작
   위치가 어긋나 붕 뜬 것처럼 보인다 — 제목과 같은 왼쪽 기준선에 맞춰
   왼쪽 정렬을 유지하고, 폭만 읽기 좋게 제한한다. */
body.subpage .content-shell section > p:not(.section-intro) {
  max-width: 72ch;
}

/* ---- 문단 ↔ 리스트/카드/테이블 간격: H2의 margin-bottom(24px)과 인접
   마진이 겹치므로(마진 병합) 아래 값이 곧 실제 간격이 된다 ---- */
body.subpage .content-shell section > ul.checklist,
body.subpage .content-shell section > .related-list,
body.subpage .content-shell section > .stat-grid,
body.subpage .content-shell section > .card-grid,
body.subpage .content-shell section > .table-wrap,
body.subpage .content-shell section > .faq-item:first-of-type,
body.subpage .content-shell section > .cta-buttons {
  margin-top: 36px;
}

/* FAQ/체크리스트/note는 Wide 컴포넌트가 아니라 읽기용 텍스트라 Narrow 폭 유지.
   H2와 같은 왼쪽 기준선에 맞춰 왼쪽 정렬(가운데 정렬하면 제목과 어긋나
   붕 뜬 것처럼 보인다). */
body.subpage .content-shell section > ul.checklist,
body.subpage .content-shell section > .note,
body.subpage .content-shell section > .faq-item {
  max-width: var(--content-max);
}

body.subpage .content-shell section > .faq-item {
  margin-top: 0;
  margin-bottom: 12px;
}

body.subpage .content-shell section > .faq-item:first-of-type {
  margin-top: 36px;
}

/* ---- 관련 업소 리스트: 1520px 폭에서 링크가 한 줄로 늘어지지 않도록
   반응형 컬럼 부여(Wide 컴포넌트 역할) ---- */
body.subpage .related-list {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  body.subpage .related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  body.subpage .related-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================================
   PAGE: 강남쩜오 — 페이지별 콘텐츠 작업(한 페이지씩 진행). 다른 페이지에는
   영향 없도록 [data-theme="jjeomo"]로 스코프한다.
   ============================================================================ */

/* H1/lede를 더 크게 — 요청에 따라 이 페이지에 한해 상향.
   단 제목이 줄바꿈되지 않아야 하므로(사용자 요청) 데스크톱에서는
   white-space:nowrap + 실제 텍스트 폭에 맞춘 font-size로 한 줄을 보장한다. */
body[data-theme="jjeomo"] .hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

@media (min-width: 1000px) {
  body[data-theme="jjeomo"] .hero-copy h1 {
    white-space: nowrap;
  }
}

body[data-theme="jjeomo"] .hero-copy .lede {
  font-size: 1.25rem;
  line-height: 1.65;
}

/* Hero 안에 Header와 동일한 연락 버튼(Kakao ID/오픈채팅/전화)을 나열 —
   기존 header-kakao/header-pending/header-cta 클래스를 그대로 재사용해
   스타일을 통일한다. 단 이 클래스들은 Header 전용으로 900px 미만에서
   display:none이 걸려 있으므로, .hero-contact-row 안에서는 항상
   보이도록 재정의한다(모바일에서도 이 버튼들이 보여야 하므로). */
body[data-theme="jjeomo"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

body[data-theme="jjeomo"] .hero-contact-row .header-kakao,
body[data-theme="jjeomo"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지 오른쪽 끝을 Header 전화 CTA 버튼 오른쪽 끝과 맞춘다 —
   기존 .hero-visual-frame(max-width:480px)이 컬럼 중앙에 놓여 있어
   오른쪽에 여백이 남던 것을 오른쪽 정렬로 바꾸고, 이미지 자체도 더 크게
   키워 컬럼(약 654px) 폭을 그대로 채운다. */
@media (min-width: 1000px) {
  body[data-theme="jjeomo"] .hero-visual-frame {
    max-width: 100%;
    /* 기존 max-height:54vh가 정사각형 비율(1254/1254)보다 낮아 이미지가
       잘리고 있었다 — 정사각 비율을 그대로 지키도록 높이 제한을 푼다. */
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* 방문 전 체크사항: 얇은 좌측 목록 대신 2단 박스 그리드로 — 넓은 화면에서
   내용이 왼쪽에만 쏠리지 않고 양쪽을 고르게 채우도록 한다. */
body[data-theme="jjeomo"] .content-shell section > ul.checklist {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  body[data-theme="jjeomo"] .content-shell section > ul.checklist {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 칸 너비를 줄이고(2단→3단) 안의 아이콘+텍스트를 가운데 정렬 — 체크
   아이콘을 절대배치 좌측 고정에서 flex 상단 배치로 바꿔 텍스트와 함께
   가운데 축에 놓이게 한다. */
body[data-theme="jjeomo"] .checklist li {
  position: relative;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body[data-theme="jjeomo"] .checklist li::before {
  content: "✓";
  position: static;
  transform: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cta-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* 이모티콘 확대: stat-card 아이콘 + CTA 버튼 안의 이모지(.emoji-lg로 감싼 부분) */
body[data-theme="jjeomo"] .stat-card .stat-icon {
  font-size: 2.8rem;
}

body[data-theme="jjeomo"] .emoji-lg {
  font-size: 1.3em;
  vertical-align: -0.1em;
  display: inline-block;
  margin-right: 2px;
}

/* FAQ 답변 본문 글씨 확대 */
body[data-theme="jjeomo"] .faq-item .faq-answer p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 대제목(H2)과 문단을 같은 중심축으로 가운데 정렬 — H2는 텍스트 자체를
   가운데 정렬, 문단/섹션 소개문/FAQ/note는 박스를 가운데로 옮기되(margin:auto)
   문단 내부 글자는 왼쪽 정렬을 유지해 여러 줄 문장의 가독성을 지킨다.
   박스형 컴포넌트(체크리스트 그리드/카드/등급 pill 등)는 이미 폭 전체를
   쓰고 있어 그대로 둔다. */
body[data-theme="jjeomo"] .content-shell section > h2 {
  text-align: center;
}

body[data-theme="jjeomo"] .content-shell section > p:not(.section-intro),
body[data-theme="jjeomo"] .content-shell section > .section-intro,
body[data-theme="jjeomo"] .content-shell section > .note,
body[data-theme="jjeomo"] .content-shell section > .faq-item {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   전체 페이지 세로 중심축 통일 2차 작업 — H2는 이미 중앙 정렬되어 있으나
   (1) H2 바로 아래 박스형 component가 오는 두 곳(#system, #checklist)의
       간격이 24px로 너무 좁았고(다른 곳은 36px 이상), (2) 등급 pill 줄과
       관련 업소 스크립 목록이 왼쪽으로 쏠려 보였고, (3) 이용 순서(5개,
       2열 그리드)의 마지막 홀수 카드가 왼쪽 칸에만 붙어 오른쪽이 빈
       채로 보였다. 아래는 이 3가지만 좁게 스코프해서 고친다.
   ============================================================================ */

/* H2 → component 간격을 다른 섹션과 동일하게 36~48px 대역으로 맞춘다
   (margin 병합으로 h2의 margin-bottom:24px와 겹쳐 실제 간격은 40px). */
body[data-theme="jjeomo"] .content-shell section > .shift-compare {
  margin-top: 40px;
}

body[data-theme="jjeomo"] .content-shell section > ul.checklist {
  margin-top: 40px;
}

/* 등급 pill 줄: 콘텐츠 폭이 컨테이너보다 좁아 왼쪽에 붙어 보이던 것을
   그룹째 가운데로 — flex-wrap이라 overflow-x:auto 스크롤 트랩 위험 없음. */
body[data-theme="jjeomo"] .content-shell section > .grade-ladder {
  justify-content: center;
}

/* 관련 업소 스크립: 데스크톱 폭(≥900px)에서는 카드 5개가 스크롤 없이
   다 들어오므로, 모바일의 가로 스크롤 대신 줄바꿈 + 가운데 정렬로
   바꿔 한쪽에 몰려 보이지 않게 한다. 좁은 화면은 기존 가로 스크롤 유지. */
@media (min-width: 900px) {
  body[data-theme="jjeomo"] #related-shops .scroll-strip {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}

/* 이용 순서: 요청받은 참고 이미지(3+2 배치, 모든 칸 크기 동일)대로 —
   grid 대신 flex-wrap을 써서 5개 항목이 3+2로 자동 줄바꿈되고,
   justify-content:center 덕분에 마지막 줄(2개)도 자동으로 가운데
   정렬된다. 모든 칸은 동일한 고정 높이로 맞춘다. */
@media (min-width: 640px) {
  body[data-theme="jjeomo"] #flow .numbered-cards.cols-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 16px;
    row-gap: 10px;
  }
  /* 숫자를 텍스트 왼쪽에 두고, 숫자+텍스트를 한 덩어리로 묶어 칸
     안에서 좌우/위아래 모두 가운데 정렬 — ::before(숫자)를 절대배치
     대신 flex 아이템으로 바꿔 텍스트와 나란히 놓는다. */
  body[data-theme="jjeomo"] #flow .numbered-cards.cols-2 li {
    flex: 0 0 calc(33.333% - 11px);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
    padding: 16px 20px;
    height: 140px;
  }
  body[data-theme="jjeomo"] #flow .numbered-cards.cols-2 li::before {
    position: static;
    flex: 0 0 auto;
    top: auto;
    left: auto;
    transform: none;
  }
}

/* "강남쩜오란" 대제목: 짧은 문구인데 좁은 화면에서 두 줄로 줄바꿈되지
   않도록 고정 */
body[data-theme="jjeomo"] #what h2 {
  white-space: nowrap;
}

/* 서브내비(정의/등급 체계/시스템/...) pill 목록: 900px 이상에서는 링크
   전체 폭이 컨테이너보다 좁아 왼쪽에 붙어 보였다 — 이 폭에서는 가로
   스크롤이 필요 없는 걸 확인했으므로(overflow-x:auto가 걸려 있어도
   내용이 넘치지 않으면 justify-content:center가 스크롤을 막지 않음)
   화면 중앙으로 옮긴다. 900px 미만은 실제로 넘쳐서 스크롤이 필요하므로
   기존 왼쪽 정렬 + 가로 스크롤 그대로 유지. */
@media (min-width: 900px) {
  body[data-theme="jjeomo"] .subnav-sticky .subnav-scroll {
    justify-content: center;
  }
}

/* 본문 문단(#what 등) 좌우 폭 확대 — 전체 서브페이지 공통 규칙(72ch,
   약 576px)이 이 페이지 문단에는 지나치게 좁아 가운데 정렬해도 양옆이
   허전해 보였다. 요청에 따라 --content-max(780px)보다 더 넓히고,
   양쪽 정렬(justify)로 바꾼다. */
body[data-theme="jjeomo"] .content-shell section > p:not(.section-intro) {
  max-width: 960px;
  text-align: justify;
}

/* 본문 글씨 전체적으로 2px씩 확대 — 각 요소의 기존 크기를 그대로 유지한
   채(위계는 유지) 일괄 +2px만 더한다. */
body[data-theme="jjeomo"] .content-shell section > p:not(.section-intro) {
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="jjeomo"] .content-shell section > .section-intro {
  font-size: 20px; /* 18px + 2px */
}

body[data-theme="jjeomo"] .content-shell section > .note {
  font-size: 15.76px; /* 13.76px + 2px */
}

body[data-theme="jjeomo"] .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="jjeomo"] .callout-list li {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="jjeomo"] .numbered-cards li {
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="jjeomo"] ul.checklist li {
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="jjeomo"] .stat-card p {
  font-size: 17.68px; /* 15.68px + 2px */
}

body[data-theme="jjeomo"] .faq-item .faq-answer p {
  font-size: 18.8px; /* 16.8px + 2px (기존 확대분 위에 추가) */
}

/* #grade 섹션의 소개 문장이 780px 폭에서 두 줄로 줄바꿈되던 것을 한 줄로 —
   실측한 실제 텍스트 폭(888px)이 들어갈 수 있는 뷰포트(1024px 이상,
   여유 25px)에서만 nowrap 적용. 그보다 좁으면 텍스트가 잘리거나 글씨가
   과도하게 작아지므로 기존처럼 자연스럽게 줄바꿈되도록 둔다. */
@media (min-width: 1024px) {
  body[data-theme="jjeomo"] #grade > .section-intro {
    max-width: 960px;
    white-space: nowrap;
  }
}

/* FAQ 질문(summary) 글씨 크기를 답변 글씨 크기와 동일하게 */
body[data-theme="jjeomo"] .faq-item summary {
  font-size: 18.8px;
}

/* 이용 순서: 소개 문장이 짧은 한 줄이라 780px 박스 안에서 텍스트만
   왼쪽으로 쏠려 보였다 — 박스는 이미 중앙(margin:auto)이니 텍스트
   자체도 가운데 정렬해 제목과 시각적으로 맞춘다. */
body[data-theme="jjeomo"] #flow > .section-intro {
  text-align: center;
}

/* 다른 업종과의 차이: 소개 문장도 같은 이유(짧은 한 줄이 780px 박스
   안에서 왼쪽으로 쏠려 보임)로 텍스트 자체를 가운데 정렬 */
body[data-theme="jjeomo"] #compare > .section-intro {
  text-align: center;
}

/* 방문 매너와 주의사항: 소개 문장이 780px 박스 안에서 두 줄로 줄바꿈
   되던 것을 한 줄로 — 실측한 텍스트 폭(796px)이 들어갈 수 있는
   뷰포트(960px 이상, 여유 50px 이상)에서만 nowrap 적용. */
@media (min-width: 960px) {
  body[data-theme="jjeomo"] #etiquette > .section-intro {
    max-width: 900px;
    white-space: nowrap;
  }
}

/* 권장 매너 / 주의 사항 두 칸이 1424px 전체 폭을 다 채워 카드 안 내용에
   비해 지나치게 넓어 보였다 — 그리드 자체 폭을 줄이고 가운데로 모은다. */
@media (min-width: 700px) {
  body[data-theme="jjeomo"] #etiquette .etiquette-grid {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 강남쩜오 후기에서 확인할 부분: 소개 문장 텍스트를 가운데 정렬(제목과
   같은 이유 — 짧은 한 줄이 넓은 박스 안에서 왼쪽으로 쏠려 보임),
   체크리스트도 폭을 줄여 제목 중심축에 맞춰 가운데로 모은다(칸 내부
   글자는 왼쪽 정렬 유지 — 왼쪽 강조선 디자인과 가독성을 위해). */
body[data-theme="jjeomo"] #review > .section-intro {
  text-align: center;
}

/* 카드형 디자인(배경/왼쪽 강조선/박스)을 빼고 순수 글머리 기호 목록으로 —
   목록 자체는 섹션 중앙에 놓되, 항목 각각과 글머리 기호는 왼쪽 정렬 유지 */
body[data-theme="jjeomo"] #review .callout-list {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  list-style: disc;
  padding-left: 1.3em;
}

body[data-theme="jjeomo"] #review .callout-list li {
  padding: 0;
  margin-bottom: 12px;
  border-left: none;
  background: none;
  border-radius: 0;
  text-align: left;
}

body[data-theme="jjeomo"] #review .callout-list li::marker {
  color: var(--cta-b);
}

/* 같은 이유(짧은 한 줄 소개 문장이 넓은 박스 안에서 왼쪽으로 쏠려
   보임)로 아래 세 섹션의 소개 문장도 텍스트 자체를 가운데 정렬 */
body[data-theme="jjeomo"] #price > .section-intro,
body[data-theme="jjeomo"] #etiquette > .section-intro,
body[data-theme="jjeomo"] #recommend > .section-intro {
  text-align: center;
}

/* 강남쩜오 추천 기준: 카드 폭이 1424px 전체를 채워 내용에 비해 지나치게
   넓어 보였다 — 가장 긴 항목 길이에 카드 폭을 맞추고(칸 딱 맞게),
   그 폭으로 줄어든 목록 전체를 제목 중심축에 맞춰 가운데로 모은다. */
body[data-theme="jjeomo"] #recommend .numbered-cards {
  grid-template-columns: minmax(0, max-content);
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* 추천 기준 카드 좌우 폭을 아주 살짝 늘림 (좌우 padding 소폭 확대) */
body[data-theme="jjeomo"] #recommend .numbered-cards li {
  padding-left: 70px;
  padding-right: 32px;
}

/* 가격 안내 문구: 점선 박스 디자인을 빼고 텍스트만 남겨 제목 중심축에
   맞춰 가운데 정렬 */
body[data-theme="jjeomo"] #price .note {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* 가격 카드(주대/TC/룸비·추가 비용) 제목 두 줄(라벨+값) 글씨 3px씩 확대,
   아래 설명 문단은 양쪽 정렬 */
body[data-theme="jjeomo"] #price .stat-card .stat-label {
  font-size: 15.48px; /* 12.48px + 3px */
}

body[data-theme="jjeomo"] #price .stat-card .stat-value {
  font-size: 20.68px; /* 17.68px + 3px */
}

body[data-theme="jjeomo"] #price .stat-card p {
  text-align: justify;
}

/* 강남쩜오 시스템: 과거/최근 비교 카드가 1424px 전체를 채워 지나치게
   길어 보였다 — 폭을 줄이고 제목 중심축에 맞춰 가운데로 모은다. */
body[data-theme="jjeomo"] #system .shift-compare {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* 강남쩜오 계열 업소 카드: 텍스트를 상하좌우 가운데 정렬 */
body[data-theme="jjeomo"] #related-shops .scroll-strip .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

/* 방문 매너 카드(etiquette-grid) 바로 아래 문단이 카드에 붙어 보이던 것
   보정 — .etiquette-grid 자체에 margin-bottom이 없어 간격이 0이었다. */
body[data-theme="jjeomo"] #etiquette > p:not(.section-intro) {
  margin-top: 24px;
}

/* 추천 기준 소개 문장이 780px 박스에서 두 줄로 줄바꿈되던 것을 한 줄로 —
   실측한 텍스트 폭(922px)이 들어갈 수 있는 뷰포트(1100px 이상, 여유
   60px 이상)에서만 nowrap 적용. */
@media (min-width: 1100px) {
  body[data-theme="jjeomo"] #recommend > .section-intro {
    max-width: 960px;
    white-space: nowrap;
  }
}

/* ============================================================================
   PAGE: 강남업소 — 페이지별 콘텐츠 작업. 다른 페이지에는 영향 없도록
   [data-theme="eopso"]로 스코프한다.
   ============================================================================ */

/* Hero 안에 Header와 동일한 연락 버튼(Kakao ID/오픈채팅/전화) 나열 —
   강남쩜오와 동일한 패턴. header-kakao/header-pending은 Header 전용으로
   900px 미만에서 display:none이 걸려 있으므로 여기서는 항상 보이게
   재정의한다. */
body[data-theme="eopso"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

body[data-theme="eopso"] .hero-contact-row .header-kakao,
body[data-theme="eopso"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지를 강남쩜오와 동일한 크기·위치로 — 컬럼 폭을 그대로
   채우고 오른쪽 끝을 Header 전화 CTA 버튼과 맞춘다. 기존
   max-height:54vh가 정사각 비율보다 낮아 이미지가 잘리므로 해제한다. */
@media (min-width: 1000px) {
  body[data-theme="eopso"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* 하이퍼블릭 계열 / 쩜오 계열 바로가기 카드: 폭을 줄이고 안의 제목·설명을
   좌우/위아래 가운데 정렬 */
body[data-theme="eopso"] .directory-nav-links {
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 12px;
}

body[data-theme="eopso"] .directory-nav-link {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 14px;
}

/* 강남업소, 어떻게 나뉘나: 제목·문단·바로가기 링크 전부 가운데 정렬 —
   text-align만으로는 문단 박스 자체(72ch 폭 제한)가 왼쪽에 붙어 있어
   margin:auto로 박스 자체도 가운데로 옮긴다. */
body[data-theme="eopso"] #grouping {
  text-align: center;
}

body[data-theme="eopso"] #grouping > p {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="eopso"] #grouping .filter-jump {
  justify-content: center;
}

/* 소개 문단 글씨 2px 확대 */
body[data-theme="eopso"] #grouping > p:first-of-type {
  font-size: 18px; /* 16px + 2px */
}

/* 하이퍼블릭 계열 업소 제목 가운데 정렬 */
body[data-theme="eopso"] #highpublic-shops > h2 {
  text-align: center;
}

/* 하이퍼블릭 계열 업소 카드 글씨 확대 — 업소명(제목) +4px, 설명·링크 +2px */
body[data-theme="eopso"] #highpublic-shops .card h3 {
  font-size: 21.6px; /* 17.6px + 4px */
}

body[data-theme="eopso"] #highpublic-shops .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="eopso"] #highpublic-shops .card .card-link {
  font-size: 16.4px; /* 14.4px + 2px */
}

/* 쩜오 계열 업소 제목 가운데 정렬 */
body[data-theme="eopso"] #jjeomo-shops > h2 {
  text-align: center;
}

/* 쩜오 계열 업소 카드: 제목 옆 설명 칸이 1424px 전체를 채워 지나치게
   길어 보였다 — 설명만 따로 줄이면 제목과 떨어져 보이므로, 제목+설명을
   한 덩어리(카드 전체)로 묶어 폭을 줄이고 그 덩어리를 가운데로 옮긴다.
   481px 미만은 카드가 flex-direction:column으로 바뀌므로 건드리지 않는다. */
@media (min-width: 481px) {
  body[data-theme="eopso"] #jjeomo-shops .card-grid.row-style .card {
    width: min(700px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

/* 업소 고를 때 확인할 점: 제목·체크리스트·안내문 전부 가운데로 —
   목록 항목 글자는 왼쪽 정렬 유지(가독성), 안내문은 박스째 가운데 정렬 */
body[data-theme="eopso"] #checklist > h2 {
  text-align: center;
}

/* 박스는 이미 가운데(margin:auto)였지만 780px 폭 안에서 항목들(가장
   긴 줄도 367px)이 왼쪽에 쏠려 보였다 — 폭을 내용에 딱 맞게 줄여서
   블록 자체를 제목 중심축으로 옮긴다. */
body[data-theme="eopso"] #checklist > ul.checklist {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="eopso"] #checklist > .note {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* 체크리스트 항목 글씨 2px 확대 */
body[data-theme="eopso"] #checklist ul.checklist li {
  font-size: 18px; /* 16px + 2px */
}

/* 쩜오 계열 업소 카드 글씨 2px씩 확대 */
body[data-theme="eopso"] #jjeomo-shops .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="eopso"] #jjeomo-shops .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="eopso"] #jjeomo-shops .card .card-link {
  font-size: 16.4px; /* 14.4px + 2px */
}

/* ============================================================================
   PAGE: 강남룸 — 페이지별 콘텐츠 작업. 다른 페이지에는 영향 없도록
   [data-theme="room"]로 스코프한다.
   ============================================================================ */

/* Hero 안에 Header와 동일한 연락 버튼(Kakao ID/오픈채팅/전화) 나열 —
   강남쩜오·강남업소와 동일한 패턴. */
body[data-theme="room"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

body[data-theme="room"] .hero-contact-row .header-kakao,
body[data-theme="room"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지를 강남업소·강남쩜오와 동일한 크기·위치로 */
@media (min-width: 1000px) {
  body[data-theme="room"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* 강남룸이라는 이름 아래 무엇이 있나: 제목·문단 가운데 정렬, 표는 좌우
   폭을 줄여 가운데로. 핵심특징 칸은 좌우 균일한 여백으로 가운데 정렬 */
body[data-theme="room"] #overview {
  text-align: center;
}

body[data-theme="room"] #overview .table-wrap {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="room"] #overview table {
  width: 100%;
}

body[data-theme="room"] #overview th:nth-child(2),
body[data-theme="room"] #overview td:nth-child(2) {
  text-align: center;
}

body[data-theme="room"] #overview > p {
  font-size: 18px; /* 16px + 2px */
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="room"] #overview td {
  font-size: 16.72px; /* 14.72px + 2px */
}

body[data-theme="room"] #overview th {
  font-size: 15.12px; /* 13.12px + 2px */
}

/* 카테고리 섹션 4개(강남하이퍼블릭/강남가라오케/강남역노래방/강남셔츠룸):
   밋밋한 텍스트 나열 대신 아이콘 + 카드 박스 + callout-list + 버튼형
   링크로 구성한 "feature 카드" 디자인 — 한 줄에 2개씩(900px 이상), 모바일은
   1열. */
body[data-theme="room"] .room-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  body[data-theme="room"] .room-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body[data-theme="room"] .room-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 85% 100% at 50% -10%, rgba(var(--cta-rgb), 0.16), transparent 65%),
    radial-gradient(ellipse 60% 80% at 100% 120%, rgba(var(--accent2-rgb), 0.12), transparent 70%),
    var(--color-surface-glass);
  text-align: center;
}

body[data-theme="room"] .room-feature-icon {
  display: block;
  font-size: 2.6rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 14px rgba(var(--accent2-rgb), 0.5));
}

body[data-theme="room"] .room-feature h2 {
  margin-bottom: 24px;
}

body[data-theme="room"] .room-feature .callout-list {
  flex: 1;
  text-align: left;
  margin: 0 0 30px;
  width: 100%;
  box-sizing: border-box;
}

body[data-theme="room"] .room-feature-link {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--cta-grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px -12px rgba(var(--accent2-rgb), 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body[data-theme="room"] .room-feature-link:hover,
body[data-theme="room"] .room-feature-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(var(--accent2-rgb), 0.7);
  text-decoration: none;
  color: #fff;
}

/* 좁은 화면에서는 카드 padding이 커서 "강남하이퍼블릭"(7음절)처럼 긴
   제목이 word-break:keep-all 때문에 줄바꿈되지 못하고 카드 밖으로
   넘쳤다 — padding을 줄이고 글자도 카드 크기에 맞게 낮춘다. */
@media (max-width: 480px) {
  body[data-theme="room"] .room-feature {
    padding: 32px 24px;
  }
  body[data-theme="room"] .room-feature h2 {
    font-size: 2rem;
  }
}

/* 하단 CTA 제목 글씨 2px 축소 — 원래 clamp()의 반응형 크기 조정을
   유지하기 위해 고정값 대신 calc()로 상대적으로 2px만 뺀다. */
body[data-theme="room"] #contact.cta-block h2 {
  font-size: calc(var(--fs-h2) - 2px);
}

/* ============================================================================
   PAGE: 신사역노래방 — 강남쩜오/강남업소/강남룸과 동일하게 Hero 연락
   버튼 + 포스터 이미지 크기·위치를 맞춘다. [data-theme="sinsa"]로 스코프.
   ============================================================================ */
body[data-theme="sinsa"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

body[data-theme="sinsa"] .hero-contact-row .header-kakao,
body[data-theme="sinsa"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지를 강남쩜오·강남업소·강남룸과 동일하게 오른쪽 정렬,
   정사각 비율 유지(잘림 없음) */
@media (min-width: 1000px) {
  body[data-theme="sinsa"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* 강남쩜오처럼 제목 줄바꿈 방지 — 실측 결과 기존 크기(3.5rem)로는 736px가
   필요한데 컨테이너는 722px뿐이라 두 줄로 넘어갔다. 최대 크기를
   3.375rem(54px)으로 살짝 낮추면 709px로 줄어 여유 있게 한 줄에 들어간다. */
body[data-theme="sinsa"] .hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.375rem);
}

@media (min-width: 1000px) {
  body[data-theme="sinsa"] .hero-copy h1 {
    white-space: nowrap;
  }
}

/* 강남쩜오처럼 모든 섹션 대제목(H2) 가운데 정렬 */
body[data-theme="sinsa"] .content-shell section > h2 {
  text-align: center;
}

/* 신사동·가로수길·압구정 위치 비교: 체크리스트 박스는 내용에 맞춰
   좁혀서 제목 기준 가운데로, 안내문도 박스째 가운데 정렬. 글자는
   각각 2px 확대 */
body[data-theme="sinsa"] #areas > ul.checklist {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="sinsa"] #areas > p {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="sinsa"] #areas ul.checklist li {
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="sinsa"] #areas > p {
  font-size: 18px; /* 16px + 2px */
  text-align: center;
}

/* 실측 텍스트 폭(약 855px)이 기존 max-width(72ch≈772px)보다 넓어 줄바꿈
   됐다 — 폭을 900px로 늘리고, 그만큼 들어갈 수 있는 1100px 이상
   화면에서만 줄바꿈을 막는다. */
@media (min-width: 1100px) {
  body[data-theme="sinsa"] #areas > p {
    max-width: 900px;
    white-space: nowrap;
  }
}

/* 신사역 인근 장소 유형 비교 카드 4개: 제목·설명 각각 2px 확대 */
body[data-theme="sinsa"] #types .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="sinsa"] #types .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

/* 관련 페이지: 한 줄에 4개, 텍스트 가운데 정렬 */
@media (min-width: 1000px) {
  body[data-theme="sinsa"] .related-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

body[data-theme="sinsa"] .related-list a {
  text-align: center;
}

/* FAQ: 각 질문 박스를 제목 기준 가운데로(질문/답변 텍스트는 왼쪽 정렬 유지) */
body[data-theme="sinsa"] #faq > .faq-item {
  margin-left: auto;
  margin-right: auto;
}

/* 예약 흐름 + 방문 전 확인사항을 한 카드 안에 2단으로 묶는다 — 신논현
   가라오케(두 개의 분리된 split-panel 박스, 채워진 원형 번호 배지,
   왼쪽 강조선 콜아웃)와는 완전히 다르게: 카드 하나 + 중앙 세로 구분선 +
   테두리만 있는 원형 숫자 + 심플한 체크마크 리스트로 디자인한다. */
body[data-theme="sinsa"] #flow .prep-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-glass);
}

@media (max-width: 760px) {
  body[data-theme="sinsa"] #flow .prep-card {
    grid-template-columns: 1fr;
  }
  body[data-theme="sinsa"] #flow .prep-divider {
    display: none;
  }
}

body[data-theme="sinsa"] #flow .prep-divider {
  width: 1px;
  background: var(--color-border);
}

body[data-theme="sinsa"] #flow .prep-col h3 {
  text-align: center;
  margin-bottom: 20px;
}

body[data-theme="sinsa"] #flow .prep-steps,
body[data-theme="sinsa"] #flow .prep-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body[data-theme="sinsa"] #flow .prep-steps {
  counter-reset: prepstep;
}

body[data-theme="sinsa"] #flow .prep-steps li,
body[data-theme="sinsa"] #flow .prep-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="sinsa"] #flow .prep-steps li::before {
  content: counter(prepstep);
  counter-increment: prepstep;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--cta-b);
  color: var(--cta-b);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-theme="sinsa"] #flow .prep-checks li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--cta-b);
  font-weight: 800;
}

/* FAQ 질문·답변 글씨 각각 2px 확대 */
body[data-theme="sinsa"] #faq .faq-item summary {
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="sinsa"] #faq .faq-answer p {
  font-size: 18px; /* 16px + 2px */
}

/* ============================================================================
   PAGE: 신논현가라오케 — 신사역노래방과 동일한 처리를 적용.
   [data-theme="sinnonhyeon"]로 스코프.
   ============================================================================ */

/* Hero 연락 버튼 표시 */
body[data-theme="sinnonhyeon"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

body[data-theme="sinnonhyeon"] .hero-contact-row .header-kakao,
body[data-theme="sinnonhyeon"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지를 다른 페이지와 동일하게 오른쪽 정렬, 정사각(잘림 없음) */
@media (min-width: 1000px) {
  body[data-theme="sinnonhyeon"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* 제목 줄바꿈 방지 — 신사역노래방과 실측 결과 동일(709px < 722px 컨테이너) */
body[data-theme="sinnonhyeon"] .hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.375rem);
}

@media (min-width: 1000px) {
  body[data-theme="sinnonhyeon"] .hero-copy h1 {
    white-space: nowrap;
  }
}

/* 모든 섹션 대제목(H2) 가운데 정렬 */
body[data-theme="sinnonhyeon"] .content-shell section > h2 {
  text-align: center;
}

/* 신논현가라오케 vs 신논현노래방 비교 카드: 소개 문장 가운데 정렬,
   아이콘 살짝 키우고 note 박스(위치와 동선)는 제목 기준 가운데로 */
body[data-theme="sinnonhyeon"] #types > .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="sinnonhyeon"] #types .stat-card .stat-icon {
  font-size: 2rem;
}

/* 예약 전 확인해볼 점 제목: 38.4px는 너무 작다고 하셔서 3px 키움(41.4px,
   실측 867px) — 대신 960px 폭에서는 넘쳐서(849px) 안전한 1024px
   이상에서만 한 줄로 고정 */
body[data-theme="sinnonhyeon"] #features > h2 {
  font-size: 41.4px;
}

@media (min-width: 1024px) {
  body[data-theme="sinnonhyeon"] #features > h2 {
    white-space: nowrap;
  }
}

/* 예약 전 확인해볼 점(카드 6개): 소개 문장 가운데 정렬 */
body[data-theme="sinnonhyeon"] #features > .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="sinnonhyeon"] #location > .note {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px; /* 16px + 2px */
}

/* 이용 흐름 + 방문 전 확인사항을 한 섹션에 나란히(split.even) — 각
   서브제목(h3)은 칸 기준 가운데, 리스트는 칸 폭을 그대로 채운다.
   기본 .split은 align-items:start라 항목 개수가 달라 두 패널 높이가
   달랐다 — stretch로 바꿔 위아래 테두리를 맞춘다. */
body[data-theme="sinnonhyeon"] #flow .split.even {
  align-items: stretch;
}

body[data-theme="sinnonhyeon"] #flow .flow-block h3 {
  text-align: center;
  margin-bottom: 22px;
}

body[data-theme="sinnonhyeon"] #flow .flow-block ul.callout-list li {
  font-size: 18px; /* 16px + 2px */
}

/* FAQ: 각 질문 박스 제목 기준 가운데 정렬, 질문·답변 글자 2px 확대 */
body[data-theme="sinnonhyeon"] #faq > .faq-item {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="sinnonhyeon"] #faq .faq-item summary {
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="sinnonhyeon"] #faq .faq-answer p {
  font-size: 18px; /* 16px + 2px */
}

/* 카테고리 고를 때 확인할 점: 제목 가운데, 목록 박스는 내용에 맞춰
   좁혀서 가운데로(글머리+본문이 항상 붙어있으므로 자연히 함께 옮겨짐),
   글자는 2px 확대 */
body[data-theme="room"] #checklist > h2 {
  text-align: center;
}

body[data-theme="room"] #checklist > ul.checklist {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="room"] #checklist ul.checklist li {
  font-size: 18px; /* 16px + 2px */
}

/* ============================================================================
   PAGE: 강남임팩트 / 강남도깨비 / 강남타이밍 / 강남구구단 — 강남쩜오·강남업소·
   강남룸과 동일하게 Hero 연락 버튼 + 포스터 이미지 크기·위치를 맞춘다.
   ============================================================================ */
body[data-theme="impact"] .hero-contact-row,
body[data-theme="dokkaebi"] .hero-contact-row,
body[data-theme="timing"] .hero-contact-row,
body[data-theme="gugudan"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

body[data-theme="impact"] .hero-contact-row .header-kakao,
body[data-theme="impact"] .hero-contact-row .header-pending,
body[data-theme="dokkaebi"] .hero-contact-row .header-kakao,
body[data-theme="dokkaebi"] .hero-contact-row .header-pending,
body[data-theme="timing"] .hero-contact-row .header-kakao,
body[data-theme="timing"] .hero-contact-row .header-pending,
body[data-theme="gugudan"] .hero-contact-row .header-kakao,
body[data-theme="gugudan"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지를 다른 페이지와 동일하게 오른쪽 정렬, 정사각(잘림 없음) */
@media (min-width: 1000px) {
  body[data-theme="impact"] .hero-visual-frame,
  body[data-theme="dokkaebi"] .hero-visual-frame,
  body[data-theme="timing"] .hero-visual-frame,
  body[data-theme="gugudan"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* ============================================================================
   PAGE: 강남블렌딩 — 다른 페이지와 동일하게 좌우 배치(hero-poster-grid)로
   전환. 단, 원본 이미지가 정사각이 아니므로(1400x1120) 비율은 유지한 채
   오른쪽 정렬만 맞춘다(잘림·왜곡 없음).
   ============================================================================ */
body[data-theme="blending"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

body[data-theme="blending"] .hero-contact-row .header-kakao,
body[data-theme="blending"] .hero-contact-row .header-pending {
  display: inline-flex;
}

@media (min-width: 1000px) {
  body[data-theme="blending"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* ============================================================================
   PAGE: 강남유앤미 / 강남달토 / 강남엘리트 / 강남사라있네 / 강남도파민 /
   강남하이퍼블릭 / 강남가라오케 / 강남역노래방 / 강남셔츠룸 — 다른 개별
   업소·카테고리 페이지와 동일하게 Hero 연락 버튼 + 포스터 이미지 크기·위치를
   맞춘다.
   ============================================================================ */
body[data-theme="uandme"] .hero-contact-row,
body[data-theme="dalto"] .hero-contact-row,
body[data-theme="elite"] .hero-contact-row,
body[data-theme="sarainne"] .hero-contact-row,
body[data-theme="dopamine"] .hero-contact-row,
body[data-theme="hyperpublic"] .hero-contact-row,
body[data-theme="karaoke"] .hero-contact-row,
body[data-theme="yeoknorae"] .hero-contact-row,
body[data-theme="shirtsroom"] .hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

body[data-theme="uandme"] .hero-contact-row .header-kakao,
body[data-theme="uandme"] .hero-contact-row .header-pending,
body[data-theme="dalto"] .hero-contact-row .header-kakao,
body[data-theme="dalto"] .hero-contact-row .header-pending,
body[data-theme="elite"] .hero-contact-row .header-kakao,
body[data-theme="elite"] .hero-contact-row .header-pending,
body[data-theme="sarainne"] .hero-contact-row .header-kakao,
body[data-theme="sarainne"] .hero-contact-row .header-pending,
body[data-theme="dopamine"] .hero-contact-row .header-kakao,
body[data-theme="dopamine"] .hero-contact-row .header-pending,
body[data-theme="hyperpublic"] .hero-contact-row .header-kakao,
body[data-theme="hyperpublic"] .hero-contact-row .header-pending,
body[data-theme="karaoke"] .hero-contact-row .header-kakao,
body[data-theme="karaoke"] .hero-contact-row .header-pending,
body[data-theme="yeoknorae"] .hero-contact-row .header-kakao,
body[data-theme="yeoknorae"] .hero-contact-row .header-pending,
body[data-theme="shirtsroom"] .hero-contact-row .header-kakao,
body[data-theme="shirtsroom"] .hero-contact-row .header-pending {
  display: inline-flex;
}

/* 포스터 이미지를 다른 페이지와 동일하게 오른쪽 정렬, 정사각(잘림 없음) */
@media (min-width: 1000px) {
  body[data-theme="uandme"] .hero-visual-frame,
  body[data-theme="dalto"] .hero-visual-frame,
  body[data-theme="elite"] .hero-visual-frame,
  body[data-theme="sarainne"] .hero-visual-frame,
  body[data-theme="dopamine"] .hero-visual-frame,
  body[data-theme="hyperpublic"] .hero-visual-frame,
  body[data-theme="karaoke"] .hero-visual-frame,
  body[data-theme="yeoknorae"] .hero-visual-frame,
  body[data-theme="shirtsroom"] .hero-visual-frame {
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    margin-right: 0;
  }
}

/* ============================================================================
   PAGE: 강남타이밍 / 강남구구단 / 강남도깨비 / 강남블렌딩 / 강남임팩트 —
   본문 제목·문단 전체 가운데 정렬
   ============================================================================ */
body[data-theme="timing"] .content-shell section > h2,
body[data-theme="timing"] .content-shell section > h3,
body[data-theme="gugudan"] .content-shell section > h2,
body[data-theme="gugudan"] .content-shell section > h3,
body[data-theme="dokkaebi"] .content-shell section > h2,
body[data-theme="dokkaebi"] .content-shell section > h3,
body[data-theme="blending"] .content-shell section > h2,
body[data-theme="blending"] .content-shell section > h3,
body[data-theme="impact"] .content-shell section > h2,
body[data-theme="impact"] .content-shell section > h3,
body[data-theme="uandme"] .content-shell section > h2,
body[data-theme="uandme"] .content-shell section > h3,
body[data-theme="dalto"] .content-shell section > h2,
body[data-theme="dalto"] .content-shell section > h3,
body[data-theme="elite"] .content-shell section > h2,
body[data-theme="elite"] .content-shell section > h3,
body[data-theme="sarainne"] .content-shell section > h2,
body[data-theme="sarainne"] .content-shell section > h3,
body[data-theme="dopamine"] .content-shell section > h2,
body[data-theme="dopamine"] .content-shell section > h3,
body[data-theme="hyperpublic"] .content-shell section > h2,
body[data-theme="hyperpublic"] .content-shell section > h3,
body[data-theme="karaoke"] .content-shell section > h2,
body[data-theme="karaoke"] .content-shell section > h3,
body[data-theme="shirtsroom"] .content-shell section > h2,
body[data-theme="shirtsroom"] .content-shell section > h3,
body[data-theme="yeoknorae"] .content-shell section > h2,
body[data-theme="yeoknorae"] .content-shell section > h3 {
  text-align: center;
}

body[data-theme="timing"] .content-shell section > h3,
body[data-theme="gugudan"] .content-shell section > h3,
body[data-theme="dokkaebi"] .content-shell section > h3,
body[data-theme="blending"] .content-shell section > h3,
body[data-theme="impact"] .content-shell section > h3,
body[data-theme="uandme"] .content-shell section > h3,
body[data-theme="dalto"] .content-shell section > h3,
body[data-theme="elite"] .content-shell section > h3,
body[data-theme="sarainne"] .content-shell section > h3,
body[data-theme="dopamine"] .content-shell section > h3,
body[data-theme="hyperpublic"] .content-shell section > h3,
body[data-theme="karaoke"] .content-shell section > h3,
body[data-theme="shirtsroom"] .content-shell section > h3,
body[data-theme="yeoknorae"] .content-shell section > h3 {
  margin-top: 40px;
  margin-bottom: 18px;
}

body[data-theme="timing"] .content-shell section > h3:first-child,
body[data-theme="gugudan"] .content-shell section > h3:first-child,
body[data-theme="dokkaebi"] .content-shell section > h3:first-child,
body[data-theme="blending"] .content-shell section > h3:first-child,
body[data-theme="impact"] .content-shell section > h3:first-child,
body[data-theme="uandme"] .content-shell section > h3:first-child,
body[data-theme="dalto"] .content-shell section > h3:first-child,
body[data-theme="elite"] .content-shell section > h3:first-child,
body[data-theme="sarainne"] .content-shell section > h3:first-child,
body[data-theme="dopamine"] .content-shell section > h3:first-child,
body[data-theme="hyperpublic"] .content-shell section > h3:first-child,
body[data-theme="karaoke"] .content-shell section > h3:first-child,
body[data-theme="shirtsroom"] .content-shell section > h3:first-child,
body[data-theme="yeoknorae"] .content-shell section > h3:first-child {
  margin-top: 0;
}

body[data-theme="timing"] .content-shell section > p:not(.section-intro),
body[data-theme="gugudan"] .content-shell section > p:not(.section-intro),
body[data-theme="dokkaebi"] .content-shell section > p:not(.section-intro),
body[data-theme="blending"] .content-shell section > p:not(.section-intro),
body[data-theme="impact"] .content-shell section > p:not(.section-intro),
body[data-theme="uandme"] .content-shell section > p:not(.section-intro),
body[data-theme="dalto"] .content-shell section > p:not(.section-intro),
body[data-theme="elite"] .content-shell section > p:not(.section-intro),
body[data-theme="sarainne"] .content-shell section > p:not(.section-intro),
body[data-theme="dopamine"] .content-shell section > p:not(.section-intro),
body[data-theme="hyperpublic"] .content-shell section > p:not(.section-intro),
body[data-theme="karaoke"] .content-shell section > p:not(.section-intro),
body[data-theme="shirtsroom"] .content-shell section > p:not(.section-intro),
body[data-theme="yeoknorae"] .content-shell section > p:not(.section-intro) {
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: 18px; /* 16px + 2px */
}

body[data-theme="timing"] .content-shell section > p.section-intro,
body[data-theme="gugudan"] .content-shell section > p.section-intro,
body[data-theme="dokkaebi"] .content-shell section > p.section-intro,
body[data-theme="blending"] .content-shell section > p.section-intro,
body[data-theme="impact"] .content-shell section > p.section-intro,
body[data-theme="uandme"] .content-shell section > p.section-intro,
body[data-theme="dalto"] .content-shell section > p.section-intro,
body[data-theme="elite"] .content-shell section > p.section-intro,
body[data-theme="sarainne"] .content-shell section > p.section-intro,
body[data-theme="dopamine"] .content-shell section > p.section-intro,
body[data-theme="hyperpublic"] .content-shell section > p.section-intro,
body[data-theme="karaoke"] .content-shell section > p.section-intro,
body[data-theme="shirtsroom"] .content-shell section > p.section-intro,
body[data-theme="yeoknorae"] .content-shell section > p.section-intro {
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="timing"] .content-shell section > .note,
body[data-theme="gugudan"] .content-shell section > .note,
body[data-theme="dokkaebi"] .content-shell section > .note,
body[data-theme="blending"] .content-shell section > .note,
body[data-theme="impact"] .content-shell section > .note,
body[data-theme="uandme"] .content-shell section > .note,
body[data-theme="dalto"] .content-shell section > .note,
body[data-theme="elite"] .content-shell section > .note,
body[data-theme="sarainne"] .content-shell section > .note,
body[data-theme="dopamine"] .content-shell section > .note,
body[data-theme="hyperpublic"] .content-shell section > .note,
body[data-theme="karaoke"] .content-shell section > .note,
body[data-theme="shirtsroom"] .content-shell section > .note,
body[data-theme="yeoknorae"] .content-shell section > .note {
  text-align: center;
  background: none;
  border: none;
  padding: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="timing"] #faq .faq-item summary,
body[data-theme="gugudan"] #faq .faq-item summary,
body[data-theme="dokkaebi"] #faq .faq-item summary,
body[data-theme="blending"] #faq .faq-item summary,
body[data-theme="impact"] #faq .faq-item summary,
body[data-theme="uandme"] #faq .faq-item summary,
body[data-theme="dalto"] #faq .faq-item summary,
body[data-theme="elite"] #faq .faq-item summary,
body[data-theme="sarainne"] #faq .faq-item summary,
body[data-theme="dopamine"] #faq .faq-item summary,
body[data-theme="hyperpublic"] #faq .faq-item summary,
body[data-theme="karaoke"] #faq .faq-item summary,
body[data-theme="shirtsroom"] #faq .faq-item summary,
body[data-theme="yeoknorae"] #faq .faq-item summary {
  justify-content: space-between;
  text-align: left;
}

body[data-theme="timing"] #faq > .faq-item,
body[data-theme="gugudan"] #faq > .faq-item,
body[data-theme="dokkaebi"] #faq > .faq-item,
body[data-theme="blending"] #faq > .faq-item,
body[data-theme="impact"] #faq > .faq-item,
body[data-theme="uandme"] #faq > .faq-item,
body[data-theme="dalto"] #faq > .faq-item,
body[data-theme="elite"] #faq > .faq-item,
body[data-theme="sarainne"] #faq > .faq-item,
body[data-theme="dopamine"] #faq > .faq-item,
body[data-theme="hyperpublic"] #faq > .faq-item,
body[data-theme="karaoke"] #faq > .faq-item,
body[data-theme="shirtsroom"] #faq > .faq-item,
body[data-theme="yeoknorae"] #faq > .faq-item {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="timing"] #faq .faq-answer p,
body[data-theme="gugudan"] #faq .faq-answer p,
body[data-theme="dokkaebi"] #faq .faq-answer p,
body[data-theme="blending"] #faq .faq-answer p,
body[data-theme="impact"] #faq .faq-answer p,
body[data-theme="uandme"] #faq .faq-answer p,
body[data-theme="dalto"] #faq .faq-answer p,
body[data-theme="elite"] #faq .faq-answer p,
body[data-theme="sarainne"] #faq .faq-answer p,
body[data-theme="dopamine"] #faq .faq-answer p,
body[data-theme="hyperpublic"] #faq .faq-answer p,
body[data-theme="karaoke"] #faq .faq-answer p,
body[data-theme="shirtsroom"] #faq .faq-answer p,
body[data-theme="yeoknorae"] #faq .faq-answer p {
  text-align: left;
}

/* 관련 업소: 한 줄에 4개, 텍스트 가운데 정렬 */
@media (min-width: 1000px) {
  body[data-theme="timing"] .related-list,
  body[data-theme="gugudan"] .related-list,
  body[data-theme="dokkaebi"] .related-list,
  body[data-theme="blending"] .related-list,
  body[data-theme="impact"] .related-list,
  body[data-theme="uandme"] .related-list,
  body[data-theme="dalto"] .related-list,
  body[data-theme="elite"] .related-list,
  body[data-theme="sarainne"] .related-list,
  body[data-theme="dopamine"] .related-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

body[data-theme="timing"] .related-list a,
body[data-theme="gugudan"] .related-list a,
body[data-theme="dokkaebi"] .related-list a,
body[data-theme="blending"] .related-list a,
body[data-theme="impact"] .related-list a,
body[data-theme="uandme"] .related-list a,
body[data-theme="dalto"] .related-list a,
body[data-theme="elite"] .related-list a,
body[data-theme="sarainne"] .related-list a,
body[data-theme="dopamine"] .related-list a,
body[data-theme="hyperpublic"] .related-list a {
  text-align: center;
}

/* 가격 항목 아이콘/글자 확대 + 가운데 정렬 */
body[data-theme="timing"] #price .stat-card,
body[data-theme="gugudan"] #price .stat-card,
body[data-theme="dokkaebi"] #location .stat-card,
body[data-theme="dokkaebi"] #benefits .stat-card,
body[data-theme="blending"] #price .stat-card,
body[data-theme="blending"] #benefits .stat-card,
body[data-theme="blending"] #location .stat-card,
body[data-theme="impact"] #price .stat-card,
body[data-theme="impact"] #location .stat-card,
body[data-theme="uandme"] #price .stat-card,
body[data-theme="uandme"] #system .stat-card,
body[data-theme="uandme"] #benefits .stat-card,
body[data-theme="uandme"] #location .stat-card,
body[data-theme="dalto"] #location .stat-card,
body[data-theme="dalto"] #price .stat-card,
body[data-theme="dalto"] #benefits .stat-card,
body[data-theme="dalto"] #partner .stat-card,
body[data-theme="elite"] #location .stat-card,
body[data-theme="elite"] #price .stat-card,
body[data-theme="elite"] #benefits .stat-card,
body[data-theme="sarainne"] #price .stat-card,
body[data-theme="sarainne"] #location .stat-card,
body[data-theme="sarainne"] #lineup .stat-card,
body[data-theme="dopamine"] #price .stat-card,
body[data-theme="dopamine"] #location .stat-card,
body[data-theme="dopamine"] #benefits .stat-card,
body[data-theme="dopamine"] #operation .stat-card,
body[data-theme="hyperpublic"] #price .stat-card,
body[data-theme="karaoke"] #price .stat-card,
body[data-theme="karaoke"] #drinks .stat-card,
body[data-theme="karaoke"] #location .stat-card,
body[data-theme="shirtsroom"] #price .stat-card,
body[data-theme="yeoknorae"] #price .stat-card {
  text-align: center;
}

body[data-theme="timing"] #price .stat-icon,
body[data-theme="gugudan"] #price .stat-icon,
body[data-theme="dokkaebi"] #location .stat-icon,
body[data-theme="dokkaebi"] #benefits .stat-icon,
body[data-theme="blending"] #price .stat-icon,
body[data-theme="blending"] #benefits .stat-icon,
body[data-theme="blending"] #location .stat-icon,
body[data-theme="impact"] #price .stat-icon,
body[data-theme="impact"] #location .stat-icon,
body[data-theme="uandme"] #price .stat-icon,
body[data-theme="uandme"] #system .stat-icon,
body[data-theme="uandme"] #benefits .stat-icon,
body[data-theme="uandme"] #location .stat-icon,
body[data-theme="dalto"] #location .stat-icon,
body[data-theme="dalto"] #price .stat-icon,
body[data-theme="dalto"] #benefits .stat-icon,
body[data-theme="dalto"] #partner .stat-icon,
body[data-theme="elite"] #location .stat-icon,
body[data-theme="elite"] #price .stat-icon,
body[data-theme="elite"] #benefits .stat-icon,
body[data-theme="sarainne"] #price .stat-icon,
body[data-theme="sarainne"] #location .stat-icon,
body[data-theme="sarainne"] #lineup .stat-icon,
body[data-theme="dopamine"] #price .stat-icon,
body[data-theme="dopamine"] #location .stat-icon,
body[data-theme="dopamine"] #benefits .stat-icon,
body[data-theme="dopamine"] #operation .stat-icon,
body[data-theme="hyperpublic"] #price .stat-icon,
body[data-theme="karaoke"] #price .stat-icon,
body[data-theme="karaoke"] #drinks .stat-icon,
body[data-theme="karaoke"] #location .stat-icon,
body[data-theme="shirtsroom"] #price .stat-icon,
body[data-theme="yeoknorae"] #price .stat-icon {
  font-size: 2.4rem;
}

body[data-theme="timing"] #price .stat-label,
body[data-theme="gugudan"] #price .stat-label,
body[data-theme="dokkaebi"] #location .stat-label,
body[data-theme="dokkaebi"] #benefits .stat-label,
body[data-theme="blending"] #price .stat-label,
body[data-theme="blending"] #benefits .stat-label,
body[data-theme="blending"] #location .stat-label,
body[data-theme="impact"] #price .stat-label,
body[data-theme="impact"] #location .stat-label,
body[data-theme="uandme"] #price .stat-label,
body[data-theme="uandme"] #system .stat-label,
body[data-theme="uandme"] #benefits .stat-label,
body[data-theme="uandme"] #location .stat-label,
body[data-theme="dalto"] #location .stat-label,
body[data-theme="dalto"] #price .stat-label,
body[data-theme="dalto"] #benefits .stat-label,
body[data-theme="dalto"] #partner .stat-label,
body[data-theme="elite"] #location .stat-label,
body[data-theme="elite"] #price .stat-label,
body[data-theme="elite"] #benefits .stat-label,
body[data-theme="sarainne"] #price .stat-label,
body[data-theme="sarainne"] #location .stat-label,
body[data-theme="sarainne"] #lineup .stat-label,
body[data-theme="dopamine"] #price .stat-label,
body[data-theme="dopamine"] #location .stat-label,
body[data-theme="dopamine"] #benefits .stat-label,
body[data-theme="dopamine"] #operation .stat-label,
body[data-theme="hyperpublic"] #price .stat-label,
body[data-theme="karaoke"] #price .stat-label,
body[data-theme="karaoke"] #drinks .stat-label,
body[data-theme="karaoke"] #location .stat-label,
body[data-theme="shirtsroom"] #price .stat-label,
body[data-theme="yeoknorae"] #price .stat-label {
  font-size: 18px; /* 12.48px -> 18px */
}

body[data-theme="timing"] .content-shell section > .note p,
body[data-theme="gugudan"] .content-shell section > .note p,
body[data-theme="dokkaebi"] .content-shell section > .note p,
body[data-theme="blending"] .content-shell section > .note p,
body[data-theme="impact"] .content-shell section > .note p,
body[data-theme="uandme"] .content-shell section > .note p,
body[data-theme="dalto"] .content-shell section > .note p,
body[data-theme="elite"] .content-shell section > .note p,
body[data-theme="sarainne"] .content-shell section > .note p,
body[data-theme="dopamine"] .content-shell section > .note p,
body[data-theme="hyperpublic"] .content-shell section > .note p,
body[data-theme="karaoke"] .content-shell section > .note p,
body[data-theme="shirtsroom"] .content-shell section > .note p,
body[data-theme="yeoknorae"] .content-shell section > .note p {
  margin: 0 0 8px;
}

body[data-theme="timing"] .content-shell section > .note p:last-child,
body[data-theme="gugudan"] .content-shell section > .note p:last-child,
body[data-theme="dokkaebi"] .content-shell section > .note p:last-child,
body[data-theme="blending"] .content-shell section > .note p:last-child,
body[data-theme="impact"] .content-shell section > .note p:last-child,
body[data-theme="uandme"] .content-shell section > .note p:last-child,
body[data-theme="dalto"] .content-shell section > .note p:last-child,
body[data-theme="elite"] .content-shell section > .note p:last-child,
body[data-theme="sarainne"] .content-shell section > .note p:last-child,
body[data-theme="dopamine"] .content-shell section > .note p:last-child,
body[data-theme="hyperpublic"] .content-shell section > .note p:last-child,
body[data-theme="karaoke"] .content-shell section > .note p:last-child,
body[data-theme="shirtsroom"] .content-shell section > .note p:last-child,
body[data-theme="yeoknorae"] .content-shell section > .note p:last-child {
  margin-bottom: 0;
}

/* 강남달토 공간 카드: 가운데 정렬 */
body[data-theme="dalto"] #facility .card,
body[data-theme="dalto"] #package .card,
body[data-theme="dalto"] #checklist .card,
body[data-theme="dalto"] #system .card,
body[data-theme="elite"] #facility .card,
body[data-theme="elite"] #system .card,
body[data-theme="elite"] #package .card,
body[data-theme="elite"] #checklist .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="dalto"] #package .card h3 {
  margin: 0;
}

/* 강남엘리트 카드 글자 2px 확대 */
body[data-theme="elite"] #facility .card h3,
body[data-theme="elite"] #system .card h3,
body[data-theme="elite"] #package .card h3,
body[data-theme="elite"] #checklist .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="elite"] #facility .card p,
body[data-theme="elite"] #system .card p,
body[data-theme="elite"] #package .card p,
body[data-theme="elite"] #checklist .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

/* 강남사라있네 카드: 가운데 정렬 + 글자 2px 확대 */
body[data-theme="sarainne"] #facility .card,
body[data-theme="sarainne"] #business .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="sarainne"] #facility .card h3,
body[data-theme="sarainne"] #business .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="sarainne"] #facility .card p,
body[data-theme="sarainne"] #business .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="sarainne"] #facility .card-grid,
body[data-theme="sarainne"] #business .card-grid {
  column-gap: 8px;
}

/* 강남도파민 카드: 가운데 정렬 + 글자 2px 확대 */
body[data-theme="dopamine"] #facility .card,
body[data-theme="dopamine"] #table .card,
body[data-theme="dopamine"] #tips .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="dopamine"] #facility .card h3,
body[data-theme="dopamine"] #table .card h3,
body[data-theme="dopamine"] #tips .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="dopamine"] #facility .card p,
body[data-theme="dopamine"] #table .card p,
body[data-theme="dopamine"] #tips .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="dopamine"] #facility .card-grid,
body[data-theme="dopamine"] #table .card-grid,
body[data-theme="dopamine"] #tips .card-grid {
  column-gap: 8px;
}

/* 강남하이퍼블릭 카드: 가운데 정렬 + 글자 2px 확대 */
body[data-theme="hyperpublic"] #why .card,
body[data-theme="hyperpublic"] #reservation .card,
body[data-theme="hyperpublic"] #location .card,
body[data-theme="hyperpublic"] #terms .card,
body[data-theme="hyperpublic"] #compare .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="hyperpublic"] #why .card h3,
body[data-theme="hyperpublic"] #reservation .card h3,
body[data-theme="hyperpublic"] #location .card h3,
body[data-theme="hyperpublic"] #terms .card h3,
body[data-theme="hyperpublic"] #compare .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="hyperpublic"] #why .card p,
body[data-theme="hyperpublic"] #reservation .card p,
body[data-theme="hyperpublic"] #location .card p,
body[data-theme="hyperpublic"] #terms .card p,
body[data-theme="hyperpublic"] #compare .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="hyperpublic"] #why .card-grid,
body[data-theme="hyperpublic"] #reservation .card-grid,
body[data-theme="hyperpublic"] #location .card-grid,
body[data-theme="hyperpublic"] #terms .card-grid,
body[data-theme="hyperpublic"] #compare .card-grid {
  column-gap: 8px;
}

body[data-theme="hyperpublic"] #compare .card .card-link {
  font-size: 16.4px; /* 14.4px + 2px */
  margin-top: 4px;
}

/* 강남하이퍼블릭 관련 업소: 한 줄에 1개씩, 이름/지역 구분 표시 */
body[data-theme="hyperpublic"] #related-shops .related-list {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 18px auto 0;
  gap: 12px;
}

body[data-theme="hyperpublic"] #related-shops .related-list a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 16px;
  padding: 18px 22px;
  text-align: left;
}

body[data-theme="hyperpublic"] #related-shops .related-list a::after {
  content: "→";
  color: var(--cta-b);
  font-weight: 700;
  flex-shrink: 0;
}

body[data-theme="hyperpublic"] #related-shops .related-list .rl-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

body[data-theme="hyperpublic"] #related-shops .related-list .rl-loc {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: right;
  white-space: nowrap;
}

/* 강남가라오케 카드: 가운데 정렬 + 글자 2px 확대 */
body[data-theme="karaoke"] #why .card,
body[data-theme="karaoke"] #facility .card,
body[data-theme="karaoke"] #flow .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="karaoke"] #why .card h3,
body[data-theme="karaoke"] #facility .card h3,
body[data-theme="karaoke"] #flow .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="karaoke"] #why .card p,
body[data-theme="karaoke"] #facility .card p,
body[data-theme="karaoke"] #flow .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="karaoke"] #why .card-grid,
body[data-theme="karaoke"] #facility .card-grid,
body[data-theme="karaoke"] #flow .card-grid {
  column-gap: 8px;
}

/* 강남가라오케 비교표: 좌우 칸 폭 균등 정렬, 스크롤 없이 딱 맞게 */
body[data-theme="karaoke"] #compare .table-wrap {
  overflow-x: visible;
}

body[data-theme="karaoke"] #compare table {
  table-layout: fixed;
  min-width: 0;
  width: 100%;
}

body[data-theme="karaoke"] #compare th,
body[data-theme="karaoke"] #compare td {
  white-space: normal;
  text-align: center;
  padding: 10px 6px;
  font-size: 15.12px; /* 13.12px + 2px */
  word-break: keep-all;
}

body[data-theme="karaoke"] #compare th:first-child,
body[data-theme="karaoke"] #compare td:first-child {
  color: var(--cta-b);
  font-weight: 700;
}

/* 강남셔츠룸 카드: 가운데 정렬 + 글자 2px 확대 */
body[data-theme="shirtsroom"] #summary .card,
body[data-theme="shirtsroom"] #location .card,
body[data-theme="shirtsroom"] #facility .card,
body[data-theme="shirtsroom"] #criteria .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="shirtsroom"] #summary .card h3,
body[data-theme="shirtsroom"] #location .card h3,
body[data-theme="shirtsroom"] #facility .card h3,
body[data-theme="shirtsroom"] #criteria .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="shirtsroom"] #summary .card p,
body[data-theme="shirtsroom"] #location .card p,
body[data-theme="shirtsroom"] #facility .card p,
body[data-theme="shirtsroom"] #criteria .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="shirtsroom"] #summary .card-grid,
body[data-theme="shirtsroom"] #location .card-grid,
body[data-theme="shirtsroom"] #facility .card-grid,
body[data-theme="shirtsroom"] #criteria .card-grid {
  column-gap: 8px;
}

/* 강남셔츠룸 위치 카드와 아래 안내 사이 여백 */
body[data-theme="shirtsroom"] #location .card-grid {
  margin-bottom: 32px;
}

/* 강남셔츠룸 관련 페이지 링크: 텍스트 가운데 정렬 */
body[data-theme="shirtsroom"] #related .related-list a {
  text-align: center;
}

/* 강남셔츠룸 방문 전 확인사항 박스: 제목 기준 가운데로, 텍스트도 가운데 정렬.
   폭은 내용에 맞춰 줄이되(width:fit-content) 텍스트 양옆 여백은 넉넉히 유지. */
body[data-theme="shirtsroom"] #checklist .aside-card {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 32px;
  text-align: center;
}

body[data-theme="shirtsroom"] #checklist .aside-card ul.checklist {
  padding-left: 0;
  list-style-position: inside;
}

/* 강남역노래방 카드: 가운데 정렬 + 글자 2px 확대 */
body[data-theme="yeoknorae"] #types .card,
body[data-theme="yeoknorae"] #service .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="yeoknorae"] #types .card h3,
body[data-theme="yeoknorae"] #service .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="yeoknorae"] #types .card p,
body[data-theme="yeoknorae"] #service .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="yeoknorae"] #types .card-grid,
body[data-theme="yeoknorae"] #service .card-grid {
  column-gap: 8px;
}

/* 강남역노래방 역별 카드: 텍스트 상하좌우 가운데 정렬 + 고정 높이로 통일
   (줄바꿈 시 마지막 줄만 카드 수가 적어 flex 기본 정렬로는 다른 줄과
   높이가 안 맞을 수 있어 min-height로 모든 카드 높이를 명시적으로 맞춘다). */
body[data-theme="yeoknorae"] #stations .scroll-strip .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 140px;
  box-sizing: border-box;
}

/* 넓은 화면(≥900px)에서는 카드 5개가 스크롤 없이 다 들어오므로, 가로 스크롤
   대신 줄바꿈 + 가운데 정렬로 제목 중심축에 맞춘다. 900px 미만은 실제로
   넘쳐서 스크롤이 필요하므로 기존 가로 스크롤을 그대로 유지한다. */
@media (min-width: 900px) {
  body[data-theme="yeoknorae"] #stations .scroll-strip {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}

/* 강남역노래방 관련 페이지: 텍스트 가운데 정렬 */
body[data-theme="yeoknorae"] #related .related-list a {
  text-align: center;
}

/* 강남하이퍼블릭 위치 카드와 아래 안내 사이 여백 */
body[data-theme="hyperpublic"] #location .card-grid {
  margin-bottom: 32px;
}

/* 강남하이퍼블릭 용어 카드와 아래 안내 사이 여백 */
body[data-theme="hyperpublic"] #terms .card-grid {
  margin-bottom: 32px;
}

/* 강남도파민 기본 테이블 구성 카드와 아래 안내 사이 여백 */
body[data-theme="dopamine"] #table .card-grid {
  margin-bottom: 32px;
}

/* 강남달토 이용 시스템 카드와 아래 문단 사이 여백 */
body[data-theme="dalto"] #system .card-grid {
  margin-bottom: 32px;
}

/* 강남달토 카드 그리드: 좌우 간격 축소 */
body[data-theme="dalto"] #facility .card-grid,
body[data-theme="dalto"] #package .card-grid,
body[data-theme="dalto"] #checklist .card-grid,
body[data-theme="dalto"] #system .card-grid {
  column-gap: 8px;
}

/* 강남달토 H1 글자 확대 */
body.subpage[data-theme="dalto"] h1.h1-long {
  font-size: calc(clamp(1.75rem, 3.2vw, 2.5rem) + 10px);
}

@media (min-width: 768px) {
  body.subpage[data-theme="dalto"] h1.h1-long {
    font-size: calc(clamp(1.9rem, 3.4vw, 2.9rem) + 10px);
  }
}

/* 강남달토 이용 시스템 타임라인: 가운데 정렬 */
body[data-theme="dalto"] #system .timeline-v {
  max-width: 480px;
  margin: 0 auto;
  padding-left: 0;
  border-left: none;
}

body[data-theme="dalto"] #system .timeline-v li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 34px 0;
}

body[data-theme="dalto"] #system .timeline-v li:last-child {
  padding-bottom: 2px;
}

body[data-theme="dalto"] #system .timeline-v li::before {
  position: static;
  margin-bottom: 10px;
}

body[data-theme="dalto"] #system .timeline-v .step-title,
body[data-theme="dalto"] #system .timeline-v .step-desc {
  text-align: center;
}

/* 강남유앤미 특징 카드: 가운데 정렬 + 글자 확대 */
body[data-theme="uandme"] #why .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="uandme"] #why .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="uandme"] #why .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

/* 강남유앤미 가격 섹션 아이콘/글자 확대 */
body[data-theme="uandme"] #price .stat-icon {
  font-size: 3rem;
}

body[data-theme="uandme"] #price .stat-label {
  font-size: 20px;
}

body[data-theme="uandme"] #price .stat-value {
  font-size: 18px;
}

/* 강남도깨비 가격 섹션 아이콘/글자 확대 + 가운데 정렬 */
body[data-theme="dokkaebi"] #price .stat-card {
  text-align: center;
}

body[data-theme="dokkaebi"] #price .stat-icon {
  font-size: 2.4rem;
}

/* 강남블렌딩 기본 테이블 구성 목록: 내용에 맞춰 가운데 배치 */
body[data-theme="blending"] #price ul.checklist {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* 강남임팩트 특징/시설/이용안내 카드: 상하좌우 가운데 정렬 */
body[data-theme="impact"] #why .card,
body[data-theme="impact"] #facility .card,
body[data-theme="impact"] #system .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-theme="impact"] #why .card h3,
body[data-theme="impact"] #facility .card h3,
body[data-theme="impact"] #system .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="impact"] #why .card p,
body[data-theme="impact"] #facility .card p,
body[data-theme="impact"] #system .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

/* 강남블렌딩의 공간 카드: 가운데 정렬 + 글자 확대 */
body[data-theme="blending"] #facility .card {
  text-align: center;
}

body[data-theme="blending"] #facility .card h3 {
  font-size: 19.6px; /* 17.6px + 2px */
}

body[data-theme="blending"] #facility .card p {
  font-size: 17.04px; /* 15.04px + 2px */
}

body[data-theme="dokkaebi"] #price .stat-label {
  font-size: 18px; /* 12.48px -> 18px */
}

/* 강남도깨비 층별 룸 수 / 영업시간 표: 좌우 폭 줄이고 가운데 배치, 칸 너비 균등 */
body[data-theme="dokkaebi"] #building .table-wrap,
body[data-theme="dokkaebi"] #checklist .table-wrap {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="dokkaebi"] #building table,
body[data-theme="dokkaebi"] #checklist table {
  table-layout: fixed;
  min-width: 0;
}

body[data-theme="dokkaebi"] #building th,
body[data-theme="dokkaebi"] #building td,
body[data-theme="dokkaebi"] #checklist th,
body[data-theme="dokkaebi"] #checklist td {
  width: 50%;
  text-align: center;
  white-space: normal;
}

/* 쩜오·하이퍼블릭 하위 페이지 가격표(주대/TC/RT): 넓은 화면에서 표가 컨테이너
   전체 폭으로 늘어져 좌우가 휑해 보이던 것을 살짝만 좁혀 가운데로 모은다. */
body[data-theme="impact"] #price .table-wrap,
body[data-theme="blending"] #price .table-wrap,
body[data-theme="dokkaebi"] #price .table-wrap,
body[data-theme="gugudan"] #price .table-wrap,
body[data-theme="timing"] #price .table-wrap,
body[data-theme="uandme"] #price .table-wrap,
body[data-theme="dalto"] #price .table-wrap,
body[data-theme="elite"] #price .table-wrap,
body[data-theme="sarainne"] #price .table-wrap,
body[data-theme="dopamine"] #price .table-wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 쩜오·하이퍼블릭 하위 페이지 가격표(주대/TC/RT): 칸 너비 균등 + 좌우 여백
   줄여 스크롤 없이 화면에 맞추고, 텍스트는 가운데 정렬한다. */
body[data-theme="impact"] #price table,
body[data-theme="blending"] #price table,
body[data-theme="dokkaebi"] #price table,
body[data-theme="gugudan"] #price table,
body[data-theme="timing"] #price table,
body[data-theme="uandme"] #price table,
body[data-theme="dalto"] #price table,
body[data-theme="elite"] #price table,
body[data-theme="sarainne"] #price table,
body[data-theme="dopamine"] #price table {
  table-layout: fixed;
  min-width: 0;
  width: 100%;
}

body[data-theme="impact"] #price th,
body[data-theme="impact"] #price td,
body[data-theme="blending"] #price th,
body[data-theme="blending"] #price td,
body[data-theme="dokkaebi"] #price th,
body[data-theme="dokkaebi"] #price td,
body[data-theme="gugudan"] #price th,
body[data-theme="gugudan"] #price td,
body[data-theme="timing"] #price th,
body[data-theme="timing"] #price td,
body[data-theme="uandme"] #price th,
body[data-theme="uandme"] #price td,
body[data-theme="dalto"] #price th,
body[data-theme="dalto"] #price td,
body[data-theme="elite"] #price th,
body[data-theme="elite"] #price td,
body[data-theme="sarainne"] #price th,
body[data-theme="sarainne"] #price td,
body[data-theme="dopamine"] #price th,
body[data-theme="dopamine"] #price td {
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  padding: 10px 8px;
}

/* 강남구구단 오시는 길 교통수단 카드: 가운데 정렬 */
body[data-theme="gugudan"] #location .stat-card {
  text-align: center;
}

