:root {
  --brand: #6b4423;
  --brand-deep: #3d2817;
  --brand-soft: #8b6f47;
  --gold: #b8954f;
  --gold-text: #8b6f3a;
  --gold-soft: #c9a86b;
  --gold-glow: #e8d7b3;
  --champagne: #f3ead9;
  --ink: #1a1208;
  --ink-soft: #5a4534;
  --ink-muted: #6b5640;
  --cream: #fbf7f1;
  --cream-soft: #f3ead9;
  --white: #ffffff;
  --line: #e8dcc8;
  --line-soft: #f0e6d4;
  --kakao: #fee500;
  --kakao-text: #181600;

  --shadow-xs: 0 1px 2px rgba(44, 31, 20, 0.06);
  --shadow-sm: 0 2px 8px rgba(44, 31, 20, 0.06), 0 1px 2px rgba(44, 31, 20, 0.04);
  --shadow: 0 8px 28px -4px rgba(44, 31, 20, 0.10), 0 2px 6px rgba(44, 31, 20, 0.06);
  --shadow-md: 0 14px 40px -8px rgba(44, 31, 20, 0.16), 0 4px 12px rgba(44, 31, 20, 0.08);
  --shadow-lg: 0 24px 60px -12px rgba(44, 31, 20, 0.22), 0 8px 18px rgba(44, 31, 20, 0.10);
  --shadow-gold: 0 14px 40px -10px rgba(184, 149, 79, 0.35);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }

body {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  word-wrap: break-word;
  letter-spacing: -0.01em;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 22px; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(232, 220, 200, 0.6);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 4px;
  margin-bottom: 2px;
  align-self: flex-end;
}
.nav-cta-row { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  background: var(--kakao);
  color: var(--kakao-text);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.nav-tel {
  background: var(--brand-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: none;
  align-items: center;
  gap: 6px;
  transition: all 0.25s var(--ease);
}
.nav-tel:hover { background: var(--brand); }
@media (min-width: 480px) { .nav-tel { display: inline-flex; } }

/* === Hero === */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 184, 150, 0.32), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184, 149, 79, 0.10), transparent 70%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 79, 0.45), transparent);
}
.hero .ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .ornament::before, .hero .ornament::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero .ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  border: 1px solid rgba(232, 215, 179, 0.25);
  box-shadow: 0 4px 14px rgba(61, 40, 23, 0.18);
}
.hero h1 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--brand-deep);
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero p.lead {
  font-size: clamp(15px, 2.4vw, 18px);
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
  letter-spacing: -0.005em;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(232, 220, 200, 0.6);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta strong { color: var(--brand-deep); font-weight: 700; }

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.btn:hover::before { opacity: 1; }
.btn-kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  box-shadow: 0 8px 24px -6px rgba(254, 229, 0, 0.55), 0 2px 6px rgba(0,0,0,0.06);
}
.btn-kakao:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(254, 229, 0, 0.65), 0 4px 10px rgba(0,0,0,0.1); }
.btn-tel {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(61, 40, 23, 0.4), 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(184, 149, 79, 0.3);
}
.btn-tel:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(61, 40, 23, 0.5), 0 4px 10px rgba(0,0,0,0.1); }
.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--brand); background: #fff; }

/* === Video (세로 9:16 쇼츠 포맷) === */
.video-section {
  padding: 40px 0 48px;
}
.video-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 6px rgba(26, 18, 10, 0.04);
  background: #1a120a;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(184, 149, 79, 0.18);
}
.video-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .video-grid { max-width: 360px; gap: 12px; }
}
.video-caption {
  text-align: center;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.video-caption .real {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 4px 12px rgba(61, 40, 23, 0.18);
}
.video-caption .copy-warn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  border: 1px dashed var(--line);
}
.video-caption .copy-warn { color: #4a3520; }
.video-caption .copy-warn strong { color: #8b1a1a; font-weight: 800; }

/* === Comparison table === */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
  position: relative;
}
.compare-grid::before {
  content: 'VS';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  background: linear-gradient(135deg, var(--cream), #fff);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(184, 149, 79, 0.3);
  z-index: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; gap: 12px; }
  .compare-grid::before { display: none; }
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.compare-card.win {
  background: linear-gradient(180deg, #fffaf0, #fff);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.compare-card .label {
  display: inline-block;
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
}
.compare-card.lose .label { color: var(--ink-soft); background: var(--cream-soft); font-weight: 800; }
.compare-card.win .label { color: var(--brand); background: rgba(184, 149, 79, 0.2); border: 1px solid rgba(184, 149, 79, 0.45); font-weight: 800; }
.compare-card h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.compare-card.lose h3 { color: var(--ink-soft); }
.compare-card ul { padding-left: 0; list-style: none; font-size: 14px; line-height: 1.7; }
.compare-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.compare-card.win ul li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--brand);
  font-weight: 800;
  font-size: 16px;
}
.compare-card.lose ul li::before {
  content: '✕';
  position: absolute;
  left: 4px;
  color: #c4a47e;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.7;
}
.compare-card.lose ul li { text-decoration: line-through; opacity: 0.85; }

/* === Checklist === */
.checklist {
  background: linear-gradient(135deg, #fff, #fdf7ea);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 28px;
  border: 1px solid var(--line);
  position: relative;
}
.checklist h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 19px;
  color: var(--brand-deep);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
@media (max-width: 720px) { .checklist-grid { grid-template-columns: 1fr; gap: 10px; } }
.checklist-grid .check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.checklist-grid .check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(184, 149, 79, 0.25);
}
.checklist-grid .check-text strong { color: var(--brand-deep); font-weight: 700; }
@media (max-width: 720px) {
  .checklist { padding: 26px 22px; border-radius: var(--radius); }
}

/* === Persona cards (이런 분께 추천) === */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 880px) { .persona-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .persona-grid { grid-template-columns: 1fr; } }
.persona {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.persona:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.persona .ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--cream-soft), #fff);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.persona h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 16px;
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.persona p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

/* === Detail page (subkeyword-focused) === */
.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.detail-stat {
  background: linear-gradient(180deg, #fff, #fdf7ea);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.detail-stat .num {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.detail-stat .label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .detail-stat .num { font-size: 18px; }
  .detail-stat { padding: 14px 8px; }
}

.related-subs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.related-subs a {
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease-out);
}
.related-subs a:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}
.related-subs a.current { background: var(--gold); color: #fff; border-color: var(--gold); pointer-events: none; }

/* === Table of Contents === */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin: 22px auto;
  max-width: 760px;
  backdrop-filter: blur(6px);
}
.toc-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-right: 8px;
  border-right: 1px solid var(--line);
  margin-right: 4px;
}
.toc a {
  font-size: 13px;
  color: var(--brand-deep);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease-out);
}
.toc a:hover { background: var(--brand); color: var(--gold-glow); border-color: var(--gold-soft); }

/* === Last updated === */
.last-updated {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 14px 0 0;
  letter-spacing: -0.01em;
}
.last-updated span { color: var(--brand); font-weight: 700; }
.last-updated time { font-weight: 600; color: var(--brand-deep); }

/* === Style card meta details === */
.style-card .style-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
}
.style-card .style-meta dt {
  color: var(--brand);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.style-card .style-meta dd { color: var(--ink-soft); }

/* === Sections === */
.section { padding: 80px 0; position: relative; }
.section-tight { padding: 56px 0; }
.section h2 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: clamp(26px, 4.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.3;
}
.section h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin: 18px auto 0;
  border-radius: 2px;
}
.section p.section-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 24px auto 40px;
  font-size: 16px;
  line-height: 1.75;
}

.section.alt { background: linear-gradient(180deg, var(--cream) 0%, #f7eedd 100%); }
.section.dark { background: linear-gradient(135deg, #2a1f14 0%, #3d2817 100%); color: #f7eedd; }
.section.dark h2 { color: #fff; }
.section.dark h2::after { background: linear-gradient(90deg, var(--gold-soft), var(--gold-glow)); }
.section.dark p.section-lead { color: rgba(247, 238, 221, 0.78); }

/* === Features === */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; gap: 14px; }
}
.feature {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.feature:hover::before { opacity: 1; }
.feature-ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--cream-soft), #fff);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-xs);
}
.feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* === Pricing === */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 720px) {
  .pricing-table { grid-template-columns: 1fr; max-width: 380px; margin: 28px auto 0; gap: 14px; }
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 24px 30px;
  text-align: center;
  position: relative;
  transition: all 0.35s var(--ease-out);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.price-card.featured {
  background: linear-gradient(180deg, #fffaf0 0%, #fff 50%);
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-gold), 0 4px 16px rgba(184, 149, 79, 0.15);
  transform: translateY(-6px);
}
.price-card.featured::before {
  content: '⭐ 인기';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 6px 14px rgba(61, 40, 23, 0.25);
}
.price-card .duration {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 13px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-card .amount {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-card .amount .won {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 3px;
  letter-spacing: 0;
}
.price-card .time {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.price-card .desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.6;
}
.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.price-note strong { color: var(--brand-deep); }

/* === Trust grid === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; gap: 16px; } }
.trust-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.trust-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.trust-card .ico {
  font-size: 30px;
  margin-bottom: 14px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--cream-soft), #fff);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.trust-card h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 19px;
  color: var(--brand-deep);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.trust-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }
.trust-card ul { padding-left: 0; list-style: none; color: var(--ink-soft); font-size: 14px; }
.trust-card ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}
.trust-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}
.trust-card ul li strong { color: var(--brand-deep); font-weight: 700; }
.trust-card .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.trust-card .tag-row span {
  background: var(--cream-soft);
  color: var(--brand-deep);
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* === Style cards === */
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 720px) { .style-grid { grid-template-columns: 1fr; gap: 12px; } }
.style-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.style-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-soft);
}
.style-card h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  color: var(--brand-deep);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.style-card .meta {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  background: rgba(184, 149, 79, 0.18);
  border-radius: 999px;
  border: 1px solid rgba(184, 149, 79, 0.4);
}
.style-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

/* === Booking info === */
.booking-info {
  background: linear-gradient(135deg, #fff8ec 0%, #fbf2dc 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-top: 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.booking-info::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(184, 149, 79, 0.15), transparent 70%);
  border-radius: 50%;
}
.booking-info h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  color: var(--brand-deep);
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-info ul {
  padding-left: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.95;
}
.booking-info ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}
.booking-info ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.booking-info ul li strong { color: var(--brand-deep); font-weight: 700; }

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

/* === Reviews === */
.reviews-section {
  background: linear-gradient(180deg, #f7eedd 0%, #f0e3c4 100%);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .reviews { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 16px; }
}
.review {
  background: #1c1c1e;
  border-radius: var(--radius);
  padding: 20px 18px;
  color: #ececec;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid rgba(184, 149, 79, 0.15);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2c2c2e;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(184, 149, 79, 0.25);
}
.review-name { font-weight: 600; font-size: 13.5px; color: #ececec; }
.review-time { font-size: 11px; color: #8e8e93; margin-left: auto; }
.bubble-row { display: flex; gap: 8px; align-items: flex-end; }
.bubble-row.me { justify-content: flex-end; }
.bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 13.5px;
  word-break: break-word;
  line-height: 1.5;
}
.bubble.them { background: #2c2c2e; color: #ececec; border-top-left-radius: 4px; }
.bubble.me { background: #fee500; color: #181600; border-top-right-radius: 4px; font-weight: 500; }

.review-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 720px) { .review-img-grid { grid-template-columns: 1fr; max-width: 400px; margin: 24px auto 0; } }
.review-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #1c1c1e;
  border: 1px solid rgba(184, 149, 79, 0.15);
  transition: transform 0.35s var(--ease-out);
}
.review-img:hover { transform: translateY(-3px); }
.review-img img { display: block; width: 100%; height: auto; }

/* === Process steps === */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.step {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  box-shadow: 0 4px 12px rgba(61, 40, 23, 0.25);
  border: 1px solid var(--gold-soft);
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
}
.step p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* === Region grid === */
.region-section {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.region-hot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.region-hot a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  padding: 8px 16px;
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border: 1.5px solid var(--gold-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 1px 3px rgba(184, 149, 79, 0.12);
}
.region-hot a:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(61, 40, 23, 0.25);
}
.region-hot a::before { content: '🔥'; font-size: 12px; }

.region-search-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto 18px;
}
.region-search {
  width: 100%;
  padding: 13px 18px 13px 44px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b4423' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 14px center;
  background-size: 18px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.region-search:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 149, 79, 0.18); }
.region-search::placeholder { color: var(--ink-muted); }

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media (min-width: 540px) { .region-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .region-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .region-grid { grid-template-columns: repeat(6, 1fr); } }
.region-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 6px;
  background: var(--cream-soft);
  border: 1px solid transparent;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--brand-deep);
  font-weight: 600;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.15s var(--ease-out);
  letter-spacing: -0.02em;
  line-height: 1.2;
  word-break: keep-all;
}
.region-grid a:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  transform: translateY(-1px);
  border-color: var(--gold-soft);
}
.region-grid a.hidden { display: none; }
.region-no-result {
  text-align: center;
  padding: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  display: none;
}
.region-no-result.show { display: block; }
.region-toggle {
  margin-top: 22px;
  text-align: center;
}
.region-toggle button {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--brand-deep);
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease-out);
}
.region-toggle button:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.region-grid.collapsible { max-height: 200px; overflow: hidden; position: relative; }
.region-grid.collapsible::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}
.region-grid.collapsible.expanded { max-height: none; }
.region-grid.collapsible.expanded::after { display: none; }

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq {
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 28px;
  transition: background 0.2s var(--ease);
}
.faq:last-child { border-bottom: none; }
.faq[open] { background: rgba(243, 234, 217, 0.4); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 200;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .faq { padding: 18px 22px; }
  .faq summary { font-size: 15px; }
}

/* === Final CTA === */
.cta-section {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(212, 184, 150, 0.18), transparent 70%),
    linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, var(--brand-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section h2 { color: var(--gold-glow); }
.cta-section h2::after { background: linear-gradient(90deg, var(--gold-soft), var(--gold-glow)); }
.cta-section p { color: rgba(247, 238, 221, 0.88); margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* === Footer === */
.site-footer {
  background: #1f1610;
  color: #b8a890;
  padding: 48px 0 32px;
  font-size: 13px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 79, 0.4), transparent);
}
.site-footer .wrap { display: flex; flex-direction: column; gap: 14px; }
.site-footer .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #2d2218;
}
.site-footer .foot-logo {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-footer .foot-logo::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 2px;
  align-self: flex-end;
}
.site-footer a { color: var(--gold-soft); transition: color 0.2s var(--ease); }
.site-footer a:hover { color: var(--gold-glow); }
.site-footer .copy {
  font-size: 12px;
  color: #a89878;
  padding-top: 14px;
  border-top: 1px solid #2d2218;
  line-height: 1.7;
}

/* === Floating CTA === */
.float-stack {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-cta {
  background: var(--kakao);
  color: var(--kakao-text);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px -6px rgba(254, 229, 0, 0.55), 0 4px 10px rgba(0,0,0,0.15);
  animation: bounce 2.6s ease-in-out infinite;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease);
}
.float-cta:hover { transform: scale(1.04); }
.float-cta.tel {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  box-shadow: 0 12px 32px -6px rgba(61, 40, 23, 0.55), 0 4px 10px rgba(0,0,0,0.2);
  animation-delay: 0.3s;
  border: 1px solid var(--gold-soft);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* === Region page specific === */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 18px 0 4px;
  letter-spacing: -0.01em;
}
.breadcrumb a { color: var(--brand); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand-deep); text-decoration: underline; }

.region-hero {
  padding: 32px 0 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 184, 150, 0.22), transparent 70%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}
.region-hero h1 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.035em;
  line-height: 1.32;
  margin-bottom: 16px;
}
.region-hero h1 .hl {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.region-hero p { color: var(--ink-soft); font-size: 16px; max-width: 660px; margin: 0 auto 26px; line-height: 1.8; }

.kw-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 18px; }
.kw-tags span {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
  backdrop-filter: blur(4px);
}

.content-block {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 20px 0;
  transition: all 0.3s var(--ease-out);
}
.content-block:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.content-block h3 {
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  font-size: 20px;
  color: var(--brand-deep);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.content-block p { color: var(--ink-soft); margin-bottom: 10px; line-height: 1.8; font-size: 15px; }
.content-block ul { padding-left: 0; list-style: none; color: var(--ink-soft); }
.content-block ul li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  line-height: 1.75;
}
.content-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.related-list a {
  font-size: 13px;
  color: var(--brand-deep);
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-out);
  letter-spacing: -0.01em;
}
.related-list a:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--gold-glow);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

/* === Utils === */
.text-center { text-align: center; }
.mt-lg { margin-top: 36px; }
.hidden { display: none; }

/* === Responsive tweaks === */
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 44px; }
  .float-cta { padding: 12px 18px; font-size: 13.5px; }
  .float-stack { right: 14px; bottom: 16px; gap: 8px; }
  .price-card.featured { transform: none; }
  .booking-info { padding: 28px 22px; border-radius: var(--radius); }
  .content-block { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
