/* ════════════════════════════════════════════════════
   Monami France — style.css
   Antigravity layout · Cursor editorial aesthetics
════════════════════════════════════════════════════ */

/* ─ Design Tokens ─────────────────────────────────── */
:root {
  --cream:       #F4EFE7;
  --cream-d:     #E8E0D4;
  --cream-dd:    #DDD4C6;
  --warm-white:  #FAF7F2;
  --gold:        #B38A3C;
  --gold-d:      #967232;
  --gold-lt:     #C4A066;
  --bronze:      #B38A3C;
  --bronze-dark: #2C231A;
  --burgundy:    #7B2D3E;
  --soft-rose:   #E8D5D0;
  --brown:       #2C231A;
  --brown-mid:   #4A3D32;
  --brown-soft:  #69707A;
  --ink:         #181513;
  --ink-m:       #3D3530;
  --charcoal:    #181513;
  --seine-gray:  #69707A;
  --olive-gray:  #70725F;
  --mid-gray:    #888888;
  --muted:       #70725F;
  --line:        #D5CFC4;
  --white:       #FFFFFF;
  --font-serif-kr: "Noto Serif KR", serif;
  --font-ui:       "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-s:        var(--font-ui);
  --font-n:        var(--font-ui);
  --ease:        cubic-bezier(.22,.61,.36,1);
  --ease-out:    cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --r:           8px;
}

/* ── Booking process ─────────────────────────────────── */
.booking-process {
  padding: 82px 24px;
  background: var(--cream, #f8f4ec);
}

.booking-process__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.booking-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.booking-process__grid li {
  min-width: 0;
  padding: 28px 24px;
  border: 1px solid rgba(126, 93, 52, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.booking-process__number {
  display: block;
  margin-bottom: 18px;
  color: var(--bronze, #9a7445);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.booking-process__grid h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.35;
}

.booking-process__grid p {
  margin: 0;
  color: var(--text-muted, #655f57);
  font-size: 14px;
  line-height: 1.75;
}

.booking-process__action {
  margin-top: 30px;
  text-align: center;
}

/* ── Compact magazine cards ───────────────────────────── */
.mag-card__summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mag-accordion summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.mag-accordion[open] .mag-accordion__content {
  display: block;
}

/* ── Home FAQ ─────────────────────────────────────────── */
.home-faq {
  padding: 82px 24px;
  background: #fff;
}

.home-faq__inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.home-faq__list {
  margin-top: 34px;
  border-top: 1px solid rgba(50, 42, 34, 0.18);
}

.home-faq__list details {
  border-bottom: 1px solid rgba(50, 42, 34, 0.18);
}

.home-faq__list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 52px 16px 4px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

.home-faq__list summary::-webkit-details-marker {
  display: none;
}

.home-faq__list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bronze, #9a7445);
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 300;
}

.home-faq__list details[open] summary::after {
  content: "−";
}

.home-faq__list details > p {
  margin: 0;
  padding: 0 52px 22px 4px;
  color: var(--text-muted, #655f57);
  font-size: 15px;
  line-height: 1.75;
}

.home-faq__list summary:focus-visible {
  outline: 2px solid var(--bronze, #9a7445);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .booking-process,
  .home-faq {
    padding: 60px 20px;
  }

  .booking-process__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .booking-process__grid li {
    padding: 22px 20px;
  }

  .booking-process__number {
    margin-bottom: 10px;
  }

  .booking-process__action .btn {
    width: 100%;
    max-width: 360px;
  }

  .home-faq__list {
    margin-top: 26px;
  }

  .home-faq__list summary {
    min-height: 58px;
    padding: 14px 42px 14px 0;
    font-size: 16px;
  }

  .home-faq__list summary::after {
    right: 2px;
  }

  .home-faq__list details > p {
    padding: 0 38px 20px 0;
    font-size: 14px;
    line-height: 1.7;
  }
}

/* The home magazine now uses the same native accordion at every viewport. */
@media (min-width: 641px) {
  .mag-accordion[open] .mag-accordion__content {
    display: block;
  }
}

/* ─ Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  word-break: keep-all;
  overflow-wrap: normal;
}
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
p,
a,
button,
input,
textarea,
select,
li,
label {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
h1, h2, h3, p {
  word-break: keep-all;
}
p {
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }


/* ════════════════════════════════════════════════════
   BUTTON SYSTEM
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.015em;
  border-radius: 40px;
  border: 1px solid transparent;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), transform .16s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Kakao — dark bronze, white text, gold border */
.btn--kakao {
  background: var(--bronze-dark);
  color: rgba(255,255,255,.92);
  border-color: rgba(201,168,76,.45);
}
.btn--kakao:hover {
  background: #2e2010;
  border-color: rgba(201,168,76,.75);
}
/* Bronze filled */
.btn--bronze {
  background: var(--gold);
  color: var(--white);
  border-color: transparent;
}
.btn--bronze:hover {
  background: #8A6B32;
}
/* Ghost — glass on dark bg */
.btn--ghost {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.50);
}
/* Outline — thin gold border, cream bg */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--bronze);
}
/* Sizes */
.btn--sm  { padding: 7px 15px; font-size: 11px; }
.btn--lg  { padding: 14px 32px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(36px, 5vw, 84px);
  background: rgba(244, 239, 231, 0.90);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(139, 105, 20, 0.16);
  box-shadow: 0 8px 28px rgba(61, 43, 31, 0.06);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(244, 239, 231, 0.97);
  box-shadow: 0 2px 24px rgba(61, 43, 31, 0.10);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}
.logo__mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 105, 20, 0.45);
  background: transparent;
  color: #8B6914;
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo__mark.sm { width: 26px; height: 26px; font-size: 10px; }
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__name {
  font-family: var(--font-s);
  font-size: 21px; font-weight: 600; letter-spacing: .04em; line-height: 1;
  color: #3D2B1F;
}
.logo__tag {
  font-size: 11px; letter-spacing: .12em; color: #7A6654; line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
  flex: 1 1 auto;
  min-width: 0;
}
.nav-item {
  padding: 5px 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.4;
  color: #3D2B1F;
  white-space: nowrap;
  border-radius: 3px;
  transition: color .18s;
}
.nav-item:hover { color: var(--bronze); }

/* ── Desktop nav dropdown (차량 / 미술관 / 테마 투어) ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 10;
  min-width: 210px;
  padding: 6px 0;
  background: #FDFBF8;
  border: 1px solid rgba(139, 105, 20, 0.18);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(61, 43, 31, 0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-dropdown__panel::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__link {
  display: block;
  padding: 9px 16px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .02em;
  color: #3D2B1F;
  white-space: nowrap;
  transition: background .14s ease, color .14s ease;
}
.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible {
  background: rgba(139, 105, 20, 0.07);
  color: var(--bronze);
  outline: none;
}

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

/* Header buttons */
.site-header .btn--sm {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 6px;
  white-space: nowrap;
}
/* "프라이빗 상담하기" — outline with dark brown border */
.site-header .btn--outline {
  background: transparent;
  color: #3D2B1F;
  border-color: rgba(61, 43, 31, 0.55);
}
.site-header .btn--outline:hover {
  background: rgba(61, 43, 31, 0.07);
  border-color: #3D2B1F;
  color: #3D2B1F;
}
/* "카카오 상담" — warm bronze fill */
.site-header .btn--kakao {
  background: var(--bronze-dark);
  color: #F9F6F0;
  border-color: var(--bronze-dark);
}
.site-header .btn--kakao:hover {
  background: #2e2010;
  border-color: #2e2010;
  color: #F9F6F0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle .bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s var(--ease);
}
.menu-toggle.is-open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 52px 0 0 0;
  z-index: 999;
  background: var(--cream);
  padding: 24px 24px 40px;
  border-top: 1px solid var(--line);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__link,
.mobile-nav__sub a {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  letter-spacing: .04em;
  display: block;
}
.mobile-nav__group {
  border-bottom: 1px solid var(--line);
}
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 14px 0;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav__toggle::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  color: var(--bronze);
  line-height: 1;
  transition: transform .15s ease;
}
.mobile-nav__group.is-open .mobile-nav__toggle::after {
  content: '−';
}
.mobile-nav__sub {
  display: none;
  padding: 0 0 6px 12px;
}
.mobile-nav__group.is-open .mobile-nav__sub {
  display: block;
}
.mobile-nav__sub a {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 400;
  color: #5C4A3A;
  border-bottom: none;
}
.mobile-nav__sub a:last-child {
  padding-bottom: 14px;
}
.mobile-nav a.btn {
  border-bottom: none;
  margin-top: 16px;
  display: inline-flex;
}


/* ════════════════════════════════════════════════════
   PAGE UPPER GRID  (hero slider + sidebar)
════════════════════════════════════════════════════ */
.page-upper-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  height: clamp(480px, 62vh, 640px);
}

/* ── Main Column ── */
.main-col {
  position: relative;
  overflow: hidden;
}


/* ════════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
}

/* ── Slides ── */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease);
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
}
/* Hero slide 1 — 파리 시내·루브르 에디토리얼 톤 */
.slide-bg-1 {
  background-image: url('../images/cur-louvre.jpg');
  background-color: #181513;
  background-position: center 32%;
}
.slide-bg-2 {
  background-image: url('../images/cur-versailles.jpg');
  background-color: #2C231A;
  background-position: center 38%;
}
.slide-bg-3 {
  background-image: url('../images/cur-orangerie.jpg');
  background-color: #181513;
  background-position: center 42%;
}

.slide-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,21,19,0.76) 0%, rgba(24,21,19,0.48) 48%, rgba(24,21,19,0.18) 100%),
    linear-gradient(180deg, rgba(24,21,19,0.20) 0%, rgba(24,21,19,0.58) 100%);
  z-index: 1;
}
.slide-vignette--paris {
  background:
    linear-gradient(90deg, rgba(24,21,19,0.82) 0%, rgba(24,21,19,0.55) 52%, rgba(24,21,19,0.22) 100%),
    linear-gradient(180deg, rgba(24,21,19,0.28) 0%, rgba(24,21,19,0.65) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 52px;
  max-width: 680px;
}
.slide-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.78);
  text-transform: none;
  margin-bottom: 14px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
/* Hero title — Noto Serif KR */
.slide-title {
  font-family: "Noto Serif KR", serif !important;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
  max-width: 760px;
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.slide-title em,
.title-accent,
.slide-title span,
.slide-title .title-accent {
  font-family: "Noto Serif KR", serif !important;
  font-weight: 500;
  font-style: normal !important;
  display: block;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.90);
}
.slide-sub {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,.86);
  margin-bottom: 28px;
  line-height: 1.72;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slide-actions .btn {
  min-height: 48px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: -0.015em;
  text-transform: none;
}

/* ── Slider Controls ── */
.slider-controls {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slide-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-s);
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.counter-sep { color: rgba(255,255,255,.30); font-size: 10px; }
.slider-btns { display: flex; gap: 6px; }
.slider-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.slider-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}


/* ════════════════════════════════════════════════════
   HERO DECO LAYER
════════════════════════════════════════════════════ */
.hero-deco-layer {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

/* ── Compass ── */
.deco-compass {
  position: absolute;
  left: 4%;
  bottom: 22%;
  width: 52px; height: 52px;
  opacity: .50;
  animation: compass-spin 32s linear infinite;
}
@keyframes compass-spin { to { transform: rotate(360deg); } }

.compass-ring {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(201,168,76,.55);
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.cp {
  position: absolute;
  font-size: 8px; font-weight: 600; letter-spacing: .06em;
  color: rgba(201,168,76,.85);
  line-height: 1;
}
.cp-n { top: 3px;  left: 50%; transform: translateX(-50%); }
.cp-s { bottom: 3px; left: 50%; transform: translateX(-50%); }
.cp-e { right: 4px; top: 50%; transform: translateY(-50%); }
.cp-w { left: 4px;  top: 50%; transform: translateY(-50%); }
.compass-v, .compass-h {
  position: absolute;
  background: rgba(201,168,76,.35);
}
.compass-v { width: 1px; height: 60%; }
.compass-h { height: 1px; width: 60%; }
.compass-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); z-index: 1;
}

/* ── Bokeh ── */
.deco-bokeh { position: absolute; inset: 0; pointer-events: none; }
.bokeh {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  filter: blur(12px);
  animation: bokeh-float 8s ease-in-out infinite;
}
.b1 { width: 80px; height: 80px; top: 15%; left: 8%;  animation-delay: 0s; }
.b2 { width: 50px; height: 50px; top: 60%; left: 20%; animation-delay: 1.2s; }
.b3 { width: 35px; height: 35px; top: 25%; left: 55%; animation-delay: 2.4s; }
.b4 { width: 60px; height: 60px; top: 70%; left: 70%; animation-delay: .8s; }
.b5 { width: 25px; height: 25px; top: 40%; left: 85%; animation-delay: 3.1s; }
@keyframes bokeh-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: .7; }
  50%       { transform: translateY(-14px) scale(1.06); opacity: 1; }
}


/* ════════════════════════════════════════════════════
   HERO SIDEBAR
════════════════════════════════════════════════════ */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--cream);
  border-left: 1px solid rgba(44,35,26,.12);
  scrollbar-width: none;
}
.hero-sidebar::-webkit-scrollbar { display: none; }

.sb-card {
  padding: 24px 22px 22px;
  border-bottom: 1px solid rgba(44,35,26,.10);
}
.sb-card:last-child { border-bottom: none; }

/* 카드별 배경 위계 — 브랜드 카드 우선 */
.sb-brand {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #FAF7F2 0%, #F4EFE7 100%);
  padding: 28px 22px 26px;
  border-bottom: 1px solid rgba(44,35,26,.08);
}
.sb-review {
  flex: 0 0 auto;
  background: rgba(244,239,231,0.65);
  padding: 14px 18px 16px;
  opacity: 0.9;
}
.sb-magazine {
  flex: 0 0 auto;
  background: rgba(232,224,212,0.55);
  padding: 12px 18px 14px;
  opacity: 0.82;
}

/* Brand card */
.sb-brand-name {
  font-family: "Noto Serif KR", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.sb-brand-lead {
  font-family: "Noto Serif KR", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin-bottom: 10px;
}
.sb-brand-tag {
  font-size: 13px;
  color: var(--seine-gray);
  line-height: 1.68;
  margin-bottom: 14px;
}
.sb-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.sb-features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-m);
  line-height: 1.5;
}
.sb-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  display: inline;
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

/* Review card — 덜 강조 */
.sb-review .sb-label {
  font-size: 10px;
  margin-bottom: 8px;
  color: var(--olive-gray);
}
.sb-review-carousel { position: relative; min-height: 56px; }
.rv-item {
  display: none;
  animation: rv-fade-in .4s var(--ease);
}
.rv-item.active { display: block; }
@keyframes rv-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.rv-item blockquote {
  font-family: var(--font-ui);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  color: var(--ink-m);
  margin-bottom: 6px;
}
.rv-item cite { font-size: 11px; color: var(--seine-gray); font-style: normal; }
.rv-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.rv-more { font-size: 11px; color: var(--olive-gray); letter-spacing: -0.01em; font-weight: 500; }
.rv-more:hover { text-decoration: underline; color: #5C3D0A; }
.rv-arrows { display: flex; gap: 6px; }
.rv-arrows button {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(139,105,20,.32);
  font-size: 13px; color: #5C4030;
  background: rgba(249,246,240,.6);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s, color .18s, background .18s;
}
.rv-arrows button:hover { border-color: var(--bronze); color: var(--bronze); background: rgba(249,246,240,.9); }

/* Magazine card — 덜 강조 */
.sb-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--olive-gray);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-new {
  background: var(--gold);
  color: var(--white);
  font-size: 8px;
  letter-spacing: .08em;
  padding: 1px 5px;
  border-radius: 10px;
}
.sb-magazine .sb-label { margin-bottom: 6px; }
.sb-mag-thumb {
  width: 100%;
  height: 52px;
  border-radius: 5px;
  background: linear-gradient(135deg, #D8C9AF, #C8B898);
  border: 1px solid rgba(44,35,26,.10);
  margin-bottom: 8px;
  background-image: url('../images/cur-louvre.jpg');
  background-size: cover;
  background-position: center;
}
.sb-mag-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 4px;
}
.sb-mag-sub { font-size: 12px; color: var(--seine-gray); line-height: 1.6; margin-bottom: 6px; }
.sb-mag-links { display: flex; flex-direction: column; gap: 2px; }
.sb-mag-links li { font-size: 11px; color: var(--olive-gray); line-height: 1.5; padding: 1px 0; }

/* Sidebar 버튼 — 아이보리 배경 위에서 다크브라운으로 명확하게 */
.hero-sidebar .btn,
.sb-card .btn {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: .02em;
  background: #3D2B1F;
  color: #F9F6F0;
  border: 1px solid rgba(61,43,31,.20);
}
.hero-sidebar .btn:hover,
.sb-card .btn:hover {
  background: #5C4030;
  color: #F9F6F0;
  border-color: rgba(61,43,31,.30);
  transform: translateY(-1px);
}
/* kakao 버튼은 브론즈 계열로 차별화 */
.hero-sidebar .btn--kakao,
.sb-card .btn--kakao {
  background: #5C3D0A;
  color: #F9F6F0;
  border-color: rgba(92,61,10,.30);
}
.hero-sidebar .btn--kakao:hover,
.sb-card .btn--kakao:hover {
  background: #7A5210;
  border-color: rgba(92,61,10,.45);
}


/* ════════════════════════════════════════════════════
   TRUST CREDENTIALS BAR
════════════════════════════════════════════════════ */
.trust-credentials-bar {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  background: var(--charcoal);
  border-top: 1px solid rgba(179,138,60,.18);
}
.tcb-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
}

/* MRT 수치 배지 */
.tcb-stat {
  font-family: var(--font-s);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.tcb-item--stat .tcb-stat {
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-right: 10px;
}

/* 하단 설명 라인 — 전체 너비 */
.tcb-caption {
  flex-basis: 100%;
  padding: 10px 28px 14px;
  font-size: 11.5px;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.tcb-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.tcb-text { display: flex; flex-direction: column; gap: 2px; }
.tcb-text strong {
  font-size: 11.5px; font-weight: 600; color: var(--white); letter-spacing: .04em; line-height: 1.2;
}
.tcb-text span { font-size: 10px; color: rgba(255,255,255,.52); line-height: 1.4; }
.tcb-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
  align-self: stretch;
}


/* ════════════════════════════════════════════════════
   SHARED SECTION UTILITY
════════════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--bronze);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

.curation-board h2,
.why-section h2 {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}


/* ════════════════════════════════════════════════════
   CURATION BOARD — editorial cards with img
════════════════════════════════════════════════════ */
.curation-board {
  padding: 62px 72px 100px;
  max-width: 1500px;
  margin: 0 auto;
}

.curation-board__head {
  max-width: 680px;
  margin-bottom: 20px;
}
.curation-board__head .curation-board__intro {
  font-size: 16px; color: var(--ink-m); line-height: 1.80; margin-top: 6px;
}

/* ── Two-group layout ── */
.curation-group {
  margin-bottom: 64px;
}
.curation-group:last-child { margin-bottom: 0; }

.curation-subhead {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.curation-subhead__en {
  font-size: 10px;
  letter-spacing: .20em;
  color: var(--bronze);
  text-transform: uppercase;
  font-weight: 700;
}
.curation-subhead__ko {
  font-size: 14px;
  color: var(--ink-m);
  line-height: 1.6;
}

/* 3+2 centered desktop grid */
.curation-group__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
/* Each card spans 2 of 6 columns → 3 per row */
.curation-group__grid > .cur-card { grid-column: span 2; }
/* 4th and 5th cards shift inward to visually center the orphan row */
.curation-group__grid > .cur-card:nth-child(4) { grid-column: 2 / span 2; }
.curation-group__grid > .cur-card:nth-child(5) { grid-column: 4 / span 2; }


/* ── cur-card — editorial card ── */
.cur-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(40,32,14,.06);
  transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow .36s var(--ease);
  opacity: 0;
  transform: translateY(28px);
}
.cur-card--link {
  position: relative;
  cursor: pointer;
}
.cur-card__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.cur-card__stretched-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* 카드 본문은 stretched-link 클릭 통과 — 카카오 등 보조 버튼만 직접 클릭 */
.cur-card--link .cur-card__visual,
.cur-card--link .cur-card__body {
  pointer-events: none;
}
.cur-card--link .cur-card__timeselect,
.cur-card--link .cur-card__ampm a,
.cur-card--link .cur-card__actions .cur-card__kakao,
.cur-card--link .cur-card__actions [data-kakao-inquiry] {
  pointer-events: auto;
}
.cur-card--link .cur-card__timeselect,
.cur-card--link .cur-card__ampm a {
  position: relative;
  z-index: 2;
}
.cur-card__cta {
  display: none;
}
.cur-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.cur-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(40,32,14,.12);
}
.cur-card.in-view:hover { transform: translateY(-4px); }

/* Stagger delays (per group grid) */
.curation-group__grid > .cur-card:nth-child(1) { transition-delay: .05s; }
.curation-group__grid > .cur-card:nth-child(2) { transition-delay: .10s; }
.curation-group__grid > .cur-card:nth-child(3) { transition-delay: .15s; }
.curation-group__grid > .cur-card:nth-child(4) { transition-delay: .20s; }
.curation-group__grid > .cur-card:nth-child(5) { transition-delay: .25s; }

.cur-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-dd);
  flex-shrink: 0;
}
/* 카드별 폴백 배경색 (data-order 기준 · 01–13 순차) */
.cur-card[data-order="1"]  .cur-card__visual { background: #8A7040; } /* 01 파리+베르사유 — 골드 */
.cur-card[data-order="2"]  .cur-card__visual { background: #4A6045; } /* 02 지베르니 — 정원 그린 */
.cur-card[data-order="3"]  .cur-card__visual { background: #7A6848; } /* 03 베르사유 오후 — 웜 베이지 */
.cur-card[data-order="4"]  .cur-card__visual { background: #5A3040; } /* 04 부르고뉴 — 딥 와인 */
.cur-card[data-order="5"]  .cur-card__visual { background: #4A5060; } /* 05 벨기에 — 슬레이트 */
.cur-card[data-order="6"]  .cur-card__visual { background: #1A1820; } /* 06 VIP — 딥 다크 */
.cur-card[data-order="7"]  .cur-card__visual { background: #6B5D4A; } /* 07 루브르 — 스톤 */
.cur-card[data-order="8"]  .cur-card__visual { background: #5A4D3A; } /* 08 오르세 — 웜 브라운 */
.cur-card[data-order="9"]  .cur-card__visual { background: #4A5A4D; } /* 09 오랑주리 — 뮤티드 그린 */
.cur-card[data-order="10"] .cur-card__visual { background: #4A5040; } /* 10 로댕 — 정원 */
.cur-card[data-order="11"] .cur-card__visual { background: #7A4830; } /* 11 퐁피두(재개 예정) */
.cur-card[data-order="12"] .cur-card__visual { background: #7A4830; } /* 12 테마 — 미식 */
.cur-card[data-order="13"] .cur-card__visual { background: #2A2848; } /* 13 테마 — 야경 */
.cur-card[data-order="14"] .cur-card__visual { background: #6B4A52; } /* 14 테마 — 맞춤 프라이빗 문화 산책 */

.cur-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.8s var(--ease-out), opacity .3s;
}
.cur-card:hover .cur-card__img { transform: scale(1.06); }

/* 카드별 이미지 포커스 미세 조정 */
.cur-card[data-order="1"] .cur-card__img  { object-position: 50% 44%; } /* 파리+베르사유: 건물 중심 */
.cur-card[data-order="5"] .cur-card__img  { object-position: 74% 44%; } /* 벨기에: 좌하단 워터마크 비노출 우선 */
.cur-card[data-order="8"] .cur-card__img  { object-position: 50% 28%; } /* 오르세: 시계+얼굴 우선 */
.cur-card[data-order="10"] .cur-card__img { object-position: 50% 50%; } /* 로댕: 중앙 조형/건물 균형 */
.cur-card[data-order="11"] .cur-card__img { object-position: 56% 46%; } /* 퐁피두: 인물+스카이라인 균형 */
.cur-card[data-order="13"] .cur-card__img { object-position: 50% 50%; } /* 야경: 개선문 중심 */
.cur-card[data-order="14"] .cur-card__img { object-position: 50% 72%; } /* 맞춤 워킹: 하단 인물 영역 우선 */

.cur-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,20,8,.30) 0%, transparent 60%);
  pointer-events: none;
}
.cur-card__num {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-s);
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  line-height: 1;
}
.cur-card__vip-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  padding: 3px 8px; border-radius: 12px;
}

.cur-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cur-card__body h3 {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px; font-weight: 600; line-height: 1.4; letter-spacing: -0.03em; color: var(--ink);
}
/* 반일 투어 공통 안내 문구 */
.curation-halfday-note {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
  padding: 18px 24px 4px;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* 투어 시간 정보 라인 */
.cur-card__time {
  font-size: 0.72rem;
  color: var(--bronze);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  opacity: 0.85;
}

.cur-card__desc {
  font-size: 15px; color: var(--ink-m); line-height: 1.72; flex: 1;
}

/* 시간 선택 — 루브르·오르세·오랑주리, 가격보다 먼저 노출되는 작은 선택 칩 */
.cur-card__timeselect {
  margin-top: 10px;
}
.cur-card__timeselect-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bronze);
  margin-bottom: 6px;
}

/* 가격 — 차분하고 작게, 카드 하단부에 배치 (첫인상 강조 금지) */
.cur-card__price-block {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(44, 35, 26, 0.08);
}
.cur-card__price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.35;
}
.cur-card__price--quote {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.cur-card__price-detail {
  font-size: 11px;
  color: var(--muted);
  margin: 3px 0 0;
  line-height: 1.45;
}
.cur-card__price-note {
  font-size: 11px;
  color: var(--bronze);
  margin: 2px 0 0;
}
.cur-card__tags {
  display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px;
}
.cur-card__tags span {
  font-size: 10px; letter-spacing: .06em; color: var(--bronze);
  background: rgba(139,105,20,.08);
  border: 1px solid rgba(139,105,20,.16);
  padding: 3px 8px; border-radius: 12px;
}
.cur-card__actions {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cur-card__actions .btn {
  width: auto;
  flex: 0 1 auto;
}

/* 루브르·오르세·오랑주리 카드 — 오전/오후 선택 칩 (상세보기보다 가벼운 보조 버튼) */
.cur-card__ampm {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* 시간 선택 칩 — 카카오 CTA와 구분되는 가벼운 pill. 메인 CTA 아님 */
.btn--time-chip {
  background: rgba(255,255,255,0.65);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  width: auto;
  text-transform: none;
}
.btn--time-chip:hover {
  border-color: var(--gold);
  color: var(--bronze);
  background: rgba(255,255,255,0.9);
}


/* ════════════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════════════ */
.why-section {
  background: var(--cream-d);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 0 112px;
}
.why-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
}

.section-head {
  max-width: 560px;
  margin-bottom: 56px;
}
.section-head p {
  font-size: 16px; color: var(--ink-m); line-height: 1.78;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.why-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.why-card.in-view { opacity: 1; transform: translateY(0); }
.why-card:nth-child(2) { transition-delay: .08s; }
.why-card:nth-child(3) { transition-delay: .16s; }
.why-card:nth-child(4) { transition-delay: .24s; }

.why-card__label {
  font-size: 9px; letter-spacing: .16em; color: var(--gold); text-transform: uppercase;
  font-weight: 600; margin-bottom: 10px;
}
.why-card h3 {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.4; letter-spacing: -0.03em;
}
.why-card p { font-size: 15px; color: var(--ink-m); line-height: 1.80; }

/* Guide spotlight */
.guide-spotlight {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 40px;
  background: var(--ink);
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,.18);
}
.guide-spotlight__content { flex: 1; }
.guide-spotlight__label {
  font-size: 9px; letter-spacing: .16em; color: var(--gold); text-transform: uppercase;
  font-weight: 600; margin-bottom: 10px;
}
.guide-spotlight__content h3 {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 19px; font-weight: 600; color: var(--white); line-height: 1.4; letter-spacing: -0.03em; margin-bottom: 10px;
}
.guide-spotlight__content p {
  font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.82;
}
.guide-spotlight__tags {
  display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px;
}
.guide-spotlight__tags span {
  font-size: 10px; color: rgba(201,168,76,.85);
  border: 1px solid rgba(201,168,76,.25);
  padding: 3px 10px; border-radius: 12px;
  background: rgba(201,168,76,.08);
}
.guide-spotlight__cta { flex-shrink: 0; }


/* ════════════════════════════════════════════════════
   CONSULT GUIDE — 3단계 안내 블록
════════════════════════════════════════════════════ */
.consult-guide {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 760px;
  background: var(--warm-white);
  border-radius: 16px;
  border: 1px solid rgba(139,105,20,.10);
  overflow: hidden;
}
.cg-item {
  flex: 1;
  padding: 20px 22px;
}
.cg-item--vip {
  background: rgba(123,45,62,.04);
}
.cg-type {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bronze);
  letter-spacing: .05em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.cg-desc {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.5;
  margin: 0;
}
.cg-divider {
  width: 1px;
  background: rgba(139,105,20,.12);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .consult-guide { flex-direction: column; }
  .cg-divider    { width: 100%; height: 1px; }
}

/* ════════════════════════════════════════════════════
   PRIVATE CONSULTATION FORM
════════════════════════════════════════════════════ */
.consult-section {
  background: #1A1208;
  padding: 100px 0 112px;
  border-top: 1px solid rgba(201,168,76,.14);
}
.consult-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

/* 헤드 */
.consult-head {
  text-align: center;
  margin-bottom: 56px;
}
.consult-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.consult-title {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 500;
  color: #F9F6F0;
  line-height: 1.36;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.consult-desc {
  font-size: 16px;
  color: rgba(249,246,240,.72);
  line-height: 1.85;
}
.consult-desc--discount {
  font-size: 13px;
  color: var(--gold-lt);
  margin-top: 2px;
}
.hide-mobile { /* 모바일 <br> 제거용 */  }

/* 패널 */
.consult-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 14px;
  padding: 48px 52px 52px;
  position: relative;
}

/* 폼 레이아웃 */
.consult-form { display: flex; flex-direction: column; gap: 28px; }

.cf-row { display: flex; gap: 24px; }
.cf-row--2 > .cf-field { flex: 1; }

.cf-field { display: flex; flex-direction: column; gap: 10px; }

/* 라벨 */
.cf-label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(249,246,240,.90);
  letter-spacing: .02em;
}
.cf-req { color: var(--gold); margin-left: 2px; }
.cf-hint {
  font-size: 13px;
  font-weight: 400;
  color: rgba(249,246,240,.48);
  margin-left: 4px;
}

/* 입력 공통 */
.cf-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 8px;
  font-family: var(--font-n);
  font-size: 16px;
  color: #F9F6F0;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.cf-input::placeholder { color: rgba(249,246,240,.36); }
.cf-input:focus {
  border-color: rgba(201,168,76,.72);
  background: rgba(255,255,255,.09);
}

/* select 화살표 */
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.cf-select option { background: #1A1208; color: #F9F6F0; }

/* textarea */
.cf-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.75;
}

/* 체크박스 그리드 */
.cf-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 그룹형 체크박스 (원하는 투어) */
.cf-checks--grouped {
  flex-direction: column;
  gap: 0;
}
.cf-checks--grouped .cf-check {
  margin-bottom: 8px;
}
.cf-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 14px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(139,105,20,.20);
}
.cf-group-label:first-child { margin-top: 0; }
.cf-checks--grouped .cf-check + .cf-check {
  margin-top: 0;
}
.cf-check {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.cf-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cf-check span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(249,246,240,.75);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 100px;
  transition: background .18s, border-color .18s, color .18s;
  white-space: nowrap;
  cursor: pointer;
}
.cf-check input:checked + span {
  background: rgba(201,168,76,.22);
  border-color: rgba(201,168,76,.70);
  color: var(--gold-lt);
  font-weight: 600;
}
.cf-check:hover span {
  background: rgba(201,168,76,.10);
  border-color: rgba(201,168,76,.45);
  color: #F9F6F0;
}

/* 제출 버튼 */
.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 16px 28px;
  margin-top: 8px;
  background: linear-gradient(135deg, #C9A84C 0%, #A88830 100%);
  color: #1A1208;
  border: none;
  border-radius: 10px;
  font-family: var(--font-n);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(201,168,76,.30);
  transition: background .22s, box-shadow .22s, transform .16s;
}
.cf-submit:hover {
  background: linear-gradient(135deg, #DDB95A 0%, #C9A84C 100%);
  box-shadow: 0 8px 36px rgba(201,168,76,.45);
  transform: translateY(-1px);
}
.cf-submit:active { transform: translateY(0); }

.cf-note {
  text-align: center;
  font-size: 14px;
  color: rgba(249,246,240,.45);
  margin-top: 12px;
  line-height: 1.6;
}

/* 토스트 */
.cf-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #2E2010;
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-lt);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  z-index: 10;
}
/* 문의 유형 — 3개 설명형 라디오 카드 */
.cf-checks--type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cf-checks--type .cf-check {
  border: 1.5px solid rgba(139,105,20,.20);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.cf-checks--type .cf-check:has(input:checked) {
  border-color: var(--burgundy);
  background: rgba(123,45,62,.06);
}
.cf-checks--type input[type="radio"] {
  display: none;
}
.type-card__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.type-card__text strong {
  font-size: 0.85rem;
  color: rgba(249,246,240,.88);
  font-weight: 700;
}
.type-card__text span {
  font-size: 0.75rem;
  color: rgba(249,246,240,.45);
  line-height: 1.4;
}
.type-card--vip .type-card__text strong {
  color: var(--gold-lt);
}

/* VIP 문의 유형 항목 강조 */
.cf-check--vip {
  border-color: rgba(201,168,76,.30) !important;
}
.cf-checks--type .cf-check--vip:has(input:checked) {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,.10) !important;
}

@media (max-width: 640px) {
  .cf-checks--type { grid-template-columns: 1fr; }
}

.cf-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 72px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand {
  font-family: var(--font-s); font-size: 14px; font-weight: 600;
  color: var(--white); letter-spacing: .04em;
}
.footer-tag { font-size: 9px; color: rgba(255,255,255,.35); letter-spacing: .12em; text-transform: uppercase; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.32); line-height: 1.7; }


/* ════════════════════════════════════════════════════
   FIXED CTAs
════════════════════════════════════════════════════ */
.fixed-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bronze-dark);
  border: 1px solid rgba(201,168,76,.50);
  color: rgba(255,255,255,.92);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: background .2s, border-color .2s, transform .2s;
}
.fixed-cta:hover {
  background: #2e2010;
  border-color: rgba(201,168,76,.75);
  transform: translateY(-2px);
}

.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(249,246,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  gap: 10px;
}


/* ════════════════════════════════════════════════════
   REAL REVIEWS
════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--cream);
  padding: 56px 0 60px;
  border-top: 1px solid var(--line);
}
.reviews-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
}

/* 신뢰를 돕는 짧은 후기 3개 */
.rv-grid--4 {
  grid-template-columns: repeat(3, 1fr);
}
.rv-grid--4 .review-card:nth-child(n + 4) {
  display: none;
}
.reviews-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.reviews-section__head > div {
  min-width: 0;
}
.reviews-write-button {
  flex: 0 0 auto;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(61, 43, 31, .28);
  background: transparent;
  color: var(--mid-gray);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.reviews-write-button:hover,
.reviews-write-button:focus-visible {
  color: var(--bronze);
  border-color: var(--bronze);
}
.reviews-write-button:focus-visible {
  outline: 2px solid rgba(139, 105, 20, .22);
  outline-offset: 4px;
}

/* 후기 섹션 신뢰 헤더 */
.reviews-trust-header {
  display: none;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px 24px;
  background: var(--warm-white);
  border-radius: 22px;
  border: 1px solid rgba(139,105,20,.12);
}
.rth-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.rth-score {
  font-family: var(--font-s);
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}
.rth-star {
  font-size: 1.4rem;
  color: var(--gold);
}
.rth-divider {
  width: 1px;
  height: 36px;
  background: rgba(139,105,20,.15);
  flex-shrink: 0;
}
.rth-count {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.rth-count strong {
  font-family: var(--font-s);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.rth-count span {
  font-size: 0.75rem;
  color: var(--mid-gray);
  letter-spacing: .04em;
}
.rth-text {
  flex: 1;
  border-left: 1px solid rgba(139,105,20,.12);
  padding-left: 24px;
  margin-left: 8px;
}
.rth-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.rth-text p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .reviews-trust-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .rth-text {
    border-left: none;
    border-top: 1px solid rgba(139,105,20,.12);
    padding-left: 0;
    padding-top: 16px;
    margin-left: 0;
  }
  .rth-divider { width: 32px; height: 1px; }
}

/* 후기 섹션 CTA */
.reviews-cta {
  text-align: center;
  margin-top: 24px;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  min-height: 218px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.review-card.in-view { opacity: 1; transform: translateY(0); }
.review-card:nth-child(2) { transition-delay: .08s; }
.review-card:nth-child(3) { transition-delay: .16s; }
.review-card:nth-child(4) { transition-delay: .06s; }
.review-card:nth-child(5) { transition-delay: .12s; }
.review-card:nth-child(6) { transition-delay: .18s; }

.review-card__stars {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .06em;
}
.review-card blockquote {
  font-family: var(--font-s);
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
}
.review-card__person {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.review-card__avatar {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e9dfcf, #d8c6ac);
  color: var(--burgundy);
  font-family: var(--font-s);
  font-size: 18px;
  font-weight: 700;
}
.review-card__identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.review-card__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-m);
  letter-spacing: .06em;
}
.review-card__tour {
  font-size: 10.5px;
  color: var(--bronze);
}


/* ════════════════════════════════════════════════════
   PARIS MAGAZINE
════════════════════════════════════════════════════ */
.magazine-section {
  background: var(--cream-d);
  padding: 100px 0 112px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.magazine-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
}

.section-head--row {
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head--row > div { max-width: 480px; }

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

.mag-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow .3s;
}
.mag-card.in-view { opacity: 1; transform: translateY(0); }
.mag-card:nth-child(2) { transition-delay: .10s; }
.mag-card:nth-child(3) { transition-delay: .20s; }
.mag-card:hover { box-shadow: 0 8px 32px rgba(40,32,14,.10); }

.mag-card__visual {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-dd);
}
.mag-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.mag-card:hover .mag-card__img { transform: scale(1.04); }

.mag-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  flex: 1;
}
.mag-card__cat {
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--bronze);
  text-transform: uppercase;
  font-weight: 600;
}
.mag-card__body h3 {
  font-family: var(--font-s);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.mag-card__body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
  flex: 0 0 auto;
  margin: 0;
}
.mag-card__link {
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: .06em;
  margin-top: 0;
  transition: color .18s;
}
.mag-card__link:hover { color: var(--gold-d); }

/* ── Paris Magazine — card body accordion ───────────────── */
.mag-card__body p.mag-card__summary { flex: 0 0 auto; }

.mag-accordion { margin-top: 0; }
.mag-accordion summary {
  cursor: pointer;
  display: block;
}
.mag-accordion summary::-webkit-details-marker { display: none; }

.mag-accordion__content {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 0;
}

.mag-accordion__content p {
  flex: initial;
  font-size: 14px;
  color: var(--ink-m);
  line-height: 2.0;
  margin: 0 0 16px;
}
.mag-accordion__content p:last-child { margin-bottom: 0; }

.mag-accordion__signoff {
  font-family: "Noto Serif KR", serif;
  font-size: 18px !important;
  color: var(--ink);
  margin: 10px 0 16px !important;
  line-height: 1.35;
}

.mag-accordion__cta {
  margin-top: 4px;
}

/* Desktop: 확장 칼럼은 카드 밖 전체폭 패널에서 표시 */
.mag-column-panels {
  display: none;
  margin-top: 18px;
}
.mag-column-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px 24px;
  scroll-margin-top: 90px; /* 고정 헤더 오버레이 보정 */
}
.mag-column-panel__head {
  margin-bottom: 0;
}
.mag-column-panel .mag-card__cat {
  margin: 0 0 8px;
}
.mag-column-panel h3 {
  margin: 0;
  font-family: var(--font-s);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.mag-column-panel p.mag-card__summary {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
  flex: initial;
}

@media (max-width: 640px) {
  .mag-accordion__content p { font-size: 13.5px; margin-bottom: 14px; }
}

@media (min-width: 641px) {
  .mag-column-panels { display: block; }
  /* PC에서는 카드 내부 details가 열리더라도 높이 증가/중복이 생기지 않도록 숨김 */
  .mag-accordion[open] .mag-accordion__content { display: block; }
}


/* ════════════════════════════════════════════════════
   ABOUT / LEAD GUIDE
════════════════════════════════════════════════════ */
.about-section {
  background: var(--ink);
  padding: 100px 0 112px;
}
.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.88;
  margin-bottom: 14px;
}
.about-credentials {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.about-cred { display: flex; flex-direction: column; gap: 4px; }
.about-cred__num {
  font-family: var(--font-s);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-cred__label {
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}

.about-quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 10px;
  padding: 40px 36px;
}
.about-quote__inner { position: relative; }
.about-quote__mark {
  font-family: var(--font-s);
  font-size: 72px;
  color: rgba(201,168,76,.25);
  line-height: .7;
  margin-bottom: 12px;
}
.about-quote__text {
  font-family: var(--font-ui);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
  margin-bottom: 20px;
}
.about-quote__attr {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.about-quote__tags {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.about-quote__tags span {
  font-size: 10px;
  color: rgba(201,168,76,.80);
  border: 1px solid rgba(201,168,76,.22);
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(201,168,76,.07);
}


/* ════════════════════════════════════════════════════
   TABLET  ≤ 1100px
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .curation-group__grid { grid-template-columns: repeat(3, 1fr); }
  .curation-group__grid > .cur-card { grid-column: span 1; }
  .curation-group__grid > .cur-card:nth-child(4),
  .curation-group__grid > .cur-card:nth-child(5) { grid-column: auto; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .rv-grid, .rv-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mag-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { gap: 48px; }
  .tcb-text span { display: none; }
  /* 1100px 이하: 메뉴 간격 자연스럽게 줄어듦 (clamp가 처리) */
  .site-header { padding: 0 clamp(24px, 3.5vw, 48px); gap: 20px; }
  .site-header .btn--sm { padding: 10px 13px; font-size: 13px; }
}


/* ════════════════════════════════════════════════════
   상단 메뉴가 6개(차량·미술관·테마 투어 포함)로 늘어나
   900~1220px 구간에서 버튼과 겹치므로 이 구간은 햄버거 메뉴로 전환
════════════════════════════════════════════════════ */
@media (max-width: 1220px) and (min-width: 901px) {
  .main-nav    { display: none; }
  .menu-toggle { display: flex; }
  .site-header .btn--outline { display: none; }
}


/* ════════════════════════════════════════════════════
   TABLET  ≤ 900px
════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .page-upper-grid { grid-template-columns: 1fr; height: auto; }
  .hero-slider     { height: clamp(320px, 56vw, 520px); }
  .hero-sidebar    { display: none; }
  .site-header     { padding: 0 18px; min-height: 60px; height: 60px; gap: 12px; }
  .main-nav        { display: none; }
  .menu-toggle     { display: flex; }
  /* 모바일: "프라이빗 상담하기" 버튼 숨김 */
  .site-header .btn--outline { display: none; }
  /* 모바일 첫 화면 CTA 과밀 방지: 헤더 카카오 버튼 숨기고 하단 고정바 CTA 유지 */
  .site-header .btn--kakao { display: none; }

  .curation-board  { padding: 72px 32px 80px; }
  .why-section__inner { padding: 0 32px; }
  .why-section     { padding: 72px 0 80px; }
  .reviews-inner   { padding: 0 32px; }
  .reviews-section { padding: 72px 0 80px; }
  .magazine-inner  { padding: 0 32px; }
  .magazine-section { padding: 72px 0 80px; }
  .about-inner     { padding: 0 32px; grid-template-columns: 1fr; gap: 40px; }
  .about-section   { padding: 72px 0 80px; }
  .consult-section { padding: 72px 0 80px; }
  .consult-inner   { padding: 0 24px; }
  .consult-panel   { padding: 36px 28px 40px; }
  .site-footer     { padding: 28px 24px; }
  .guide-spotlight { flex-direction: column; align-items: flex-start; gap: 24px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 16px; }

  .trust-credentials-bar { flex-wrap: wrap; }
  .tcb-item  { flex: 1 1 45%; }
  .tcb-divider { display: none; }
}

/* Mobile hero: keep the complete content below the 60px sticky header. */
@media (max-width: 767px) {
  :root {
    --mobile-header-height: 60px;
  }

  .hero-slider {
    height: clamp(535px, calc(100svh - 132px), 620px);
    min-height: 535px;
  }

  .slide {
    align-items: center;
    padding-top: calc(var(--mobile-header-height) + 24px + env(safe-area-inset-top, 0px));
    padding-bottom: 64px;
    box-sizing: border-box;
  }

  .slide-content {
    width: 100%;
    max-width: 560px;
    padding: 0 20px;
  }

  .slide-eyebrow {
    margin: 0 0 10px;
    line-height: 1.5;
  }

  .slide-title {
    margin: 0;
    font-size: clamp(27px, 7.5vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .slide-sub {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.6;
    word-break: keep-all;
  }

  .slide-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .slide-actions .btn {
    width: 100%;
    max-width: 300px;
    min-height: 48px;
    padding: 12px 18px;
    justify-content: center;
    font-size: 15px;
  }

  .cur-card__visual {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .cur-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}


/* ════════════════════════════════════════════════════
   MOBILE  ≤ 640px
════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .curation-board       { padding: 48px 14px 64px; }
  .curation-group       { margin-bottom: 40px; }
  .curation-group__grid { grid-template-columns: 1fr; gap: 14px; }
  .curation-subhead__ko { font-size: 13px; }

  .curation-board__head h2 { font-size: 1.65rem; }
  .curation-board__intro   { font-size: 15px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 56px 0 64px; }
  .why-section__inner { padding: 0 16px; }
  .guide-spotlight { padding: 24px 20px; border-radius: 6px; }

  .reviews-section { padding: 56px 0 64px; }
  .reviews-inner   { padding: 0 16px; }
  .rv-grid, .rv-grid--4 { grid-template-columns: 1fr; gap: 14px; }
  .reviews-cta     { flex-direction: column; gap: 10px; }

  .magazine-section { padding: 56px 0 64px; }
  .magazine-inner   { padding: 0 16px; }
  .mag-grid         { grid-template-columns: 1fr; gap: 16px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }

  .about-section  { padding: 56px 0 64px; }
  .about-inner    { padding: 0 16px; grid-template-columns: 1fr; gap: 32px; }
  .about-credentials { gap: 20px; flex-wrap: wrap; }
  .about-quote    { padding: 28px 22px; }
  .about-quote__text { font-size: 16px; }

  .consult-section  { padding: 56px 0 64px; }
  .consult-inner    { padding: 0 16px; }
  .consult-panel    { padding: 28px 18px 32px; border-radius: 10px; }
  .consult-head     { margin-bottom: 36px; }
  .consult-title    { font-size: 1.85rem; }
  .hide-mobile      { display: none; }
  .cf-row           { flex-direction: column; gap: 20px; }
  .cf-row--2        { flex-direction: column; }
  .cf-input         { font-size: 16px; }
  .cf-submit        { font-size: 16px; min-height: 54px; }
  .cf-toast         { white-space: normal; text-align: center; width: calc(100% - 32px); bottom: -88px; }

  .trust-credentials-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px 14px;
  }
  .tcb-divider { display: none; }
  .tcb-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border-radius: 8px;
  }
  .tcb-item--stat .tcb-stat {
    font-size: 1.1rem;
    margin-right: 8px;
    min-width: auto;
  }
  .tcb-text strong { font-size: 12px; }
  .tcb-text span { font-size: 10.5px; line-height: 1.45; }
  .tcb-caption {
    flex-basis: 100%;
    padding: 8px 0 0;
    font-size: 11px;
    line-height: 1.55;
    text-align: left;
  }
  .slide-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .slide-actions .btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    padding: 12px 10px;
  }
  .bottom-bar .btn {
    font-size: 12.5px;
    padding: 10px 12px;
    white-space: nowrap;
    min-height: 42px;
  }
  /* 모바일 풀메뉴가 열리면 하단 CTA를 숨겨 CTA 중복 노출 방지 */
  .mobile-nav.is-open ~ .bottom-bar {
    display: none;
  }
  /* 모바일 카드 버튼 2개 유지 + 텍스트 답답함 완화 */
  .featured-grid .cur-card__actions {
    gap: 6px;
  }
  .featured-grid .cur-card__actions .btn {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 12.5px;
    line-height: 1.35;
  }
  .fixed-cta  { display: none; }
  .bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body { padding-bottom: 64px; }

  .site-footer { padding: 24px 16px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}


/* ════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* ════════════════════════════════════════════════════
   TOUR CATEGORY TABS + PANELS
   tc- prefix · added for categorised tour section
════════════════════════════════════════════════════ */

/* ── Category tab selector ── */
.tc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 36px;
  padding: 0 28px;
}
.tc-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 44px;
  padding: 24px 16px 20px;
  background: var(--cream);
  border: 2px solid rgba(139,105,20,.16);
  border-radius: 14px;
  cursor: pointer;
  transition: all .22s;
  text-align: center;
  font-family: var(--font-n);
}
.tc-tab:hover { background: var(--cream-d); border-color: rgba(139,105,20,.20); }
.tc-tab.active {
  background: var(--ink);
  border-color: var(--ink);
}
.tc-tab__en {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--bronze);
  text-transform: uppercase;
}
.tc-tab.active .tc-tab__en { color: rgba(201,168,76,.55); }
.tc-tab__ko {
  font-family: var(--font-s);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.tc-tab.active .tc-tab__ko { color: #FDFBF8; }
.tc-tab__desc {
  font-size: 11.5px;
  color: var(--mid-gray);
  line-height: 1.45;
}
.tc-tab.active .tc-tab__desc { color: rgba(249,246,240,.38); }

/* ── Panel show/hide ── */
.tc-panel { display: none; }
.tc-panel.active { display: block; }

/* ── Recommend text in cards ── */
.cur-card__recommend {
  font-size: 11.5px;
  color: var(--mid-gray);
  line-height: 1.5;
  margin: 0 0 14px;
  padding-left: 10px;
  border-left: 2px solid rgba(139,105,20,.16);
}

/* ── Inactive card (퐁피두 재개 예정) ── */
#tour-pompidou,
#tour-custom-walking {
  scroll-margin-top: 88px;
}
.cur-card--inactive {
  opacity: .70;
  pointer-events: auto;
}
.cur-card--inactive:hover {
  transform: none;
  box-shadow: none;
}
.cur-card__img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--cream-dd) 0%, var(--cream-d) 100%);
}
.cur-card__status-badge {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(123,45,62,.82);
  color: #FDFBF8;
  border-radius: 20px;
  padding: 3px 10px;
  z-index: 2;
}
#tour-pompidou .cur-card__status-badge {
  top: auto;
  bottom: 10px;
  left: 12px;
  right: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  background: rgba(253, 251, 248, 0.94);
  color: #3D2B1F;
  border: 1px solid rgba(139, 105, 20, 0.28);
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.08);
}

/* ── Bundle discount notice ── */
.tc-bundle-notice {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1044px;
  margin: 52px auto 0;
  padding: 22px 28px;
  background: rgba(139,105,20,.04);
  border: 1px solid rgba(139,105,20,.13);
  border-radius: 12px;
}
.tc-bundle-notice__text { flex: 1; }
.tc-bundle-notice__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 5px;
}
.tc-bundle-notice__desc {
  font-size: 13px;
  color: var(--ink-m);
  line-height: 1.65;
}
.tc-bundle-notice .btn { flex-shrink: 0; white-space: nowrap; }

/* 테마투어 2카드 — 균형 배치 */
.curation-group__grid--theme > .cur-card { grid-column: span 3; }
@media (max-width: 1100px) {
  .curation-group__grid--theme > .cur-card { grid-column: span 2; }
}

@media (max-width: 900px) and (min-width: 481px) {
  .tc-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    padding: 0 16px 4px;
    gap: 10px;
  }
  .tc-tabs::-webkit-scrollbar { display: none; }
  .tc-tab {
    flex: 0 0 min(248px, 78vw);
    scroll-snap-align: start;
    padding: 18px 14px 16px;
    border-radius: 10px;
    min-height: 48px;
  }
  .tc-tab__ko { font-size: 1.2rem; }
}

@media (max-width: 760px) {
  .tc-bundle-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 40px 16px 0;
  }
}
@media (max-width: 480px) {
  .tc-tabs {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding: 0 16px;
    gap: 8px;
  }
  .tc-tab {
    flex: none;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 16px 18px;
    min-height: 48px;
  }
  .tc-tab__en { display: none; }
  .tc-tab__desc { font-size: 11px; }
  .tc-tab__ko { font-size: 1.25rem; }
}


/* ════════════════════════════════════════════════════
   MOBILE OPTIMISATION IMPROVEMENTS
   모바일 최우선 · 터치 타깃 · 폰트 크기 · 여백
════════════════════════════════════════════════════ */

/* ── Shared mobile base ── */
@media (max-width: 640px) {
  /* Font floors */
  body { font-size: 15px; }
  p, li { font-size: 15px; }

  /* Touch-friendly buttons – min 44px height */
  .btn {
    min-height: 44px;
    padding: 11px 20px;
    font-size: 14px;
  }
  .btn--sm {
    min-height: 44px;
    padding: 9px 16px;
    font-size: 13.5px;
  }
  .tc-tab { min-height: 48px; }

  /* Prevent horizontal scroll */
  .curation-board,
  .curation-group,
  .curation-group__grid,
  .tc-tabs,
  .tc-bundle-notice { max-width: 100%; overflow-x: hidden; }

  /* Cards: 1 column on mobile */
  .curation-group__grid {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
    gap: 14px;
  }
  .curation-group__grid > .cur-card { grid-column: 1 !important; }

  /* Section padding reduction to avoid excessive length */
  .curation-board { padding: 56px 0 64px; }
  .curation-subhead { padding: 0 16px; }
  .curation-halfday-note { margin: 16px 16px 0; }

  /* cur-card mobile tuning */
  .cur-card__body { padding: 18px 16px; }
  .cur-card__body h3 { font-size: 16px; }
  .cur-card__desc { font-size: 14px; line-height: 1.72; }
  .cur-card__actions { flex-wrap: wrap; gap: 8px; }
  .cur-card__actions .btn { flex: 1 1 calc(50% - 4px); min-width: 0; text-align: center; justify-content: center; }
  /* 모바일에서 인물/가이드가 더 잘 보이도록 포커스 추가 조정 */
  .cur-card[data-order="1"] .cur-card__img  { object-position: 50% 46%; }
  .cur-card[data-order="5"] .cur-card__img  { object-position: 78% 46%; }
  .cur-card[data-order="8"] .cur-card__img  { object-position: 50% 24%; }
  .cur-card[data-order="10"] .cur-card__img { object-position: 50% 56%; }
  .cur-card[data-order="11"] .cur-card__img { object-position: 58% 42%; }
  .cur-card[data-order="13"] .cur-card__img { object-position: 50% 52%; }
  .cur-card[data-order="14"] .cur-card__img { object-position: 50% 78%; }

  /* Why / Reviews / Magazine */
  .why-grid { gap: 10px; }
  .why-card { padding: 20px 18px; }

  /* Info cards in tour detail pages — already 1 col on mobile via per-page CSS */
}


/* ════════════════════════════════════════════════════
   CAR TOURS GRID — 5 cards · 3+2 desktop layout
════════════════════════════════════════════════════ */
#car-tours .cur-card__body {
  display: flex;
  flex-direction: column;
}
#car-tours .cur-card__actions {
  margin-top: auto;
}
@media (min-width: 1025px) {
  #car-tours .curation-group__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
  }
  #car-tours .cur-card,
  #car-tours .cur-card--vip {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  #car-tours .curation-group__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  #car-tours .cur-card,
  #car-tours .cur-card--vip {
    grid-column: auto !important;
    grid-row: auto !important;
    max-width: none;
    margin: 0;
  }
}
@media (max-width: 640px) {
  #car-tours .curation-group__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #car-tours .cur-card,
  #car-tours .cur-card--vip {
    grid-column: auto !important;
    grid-row: auto !important;
    max-width: none;
    margin: 0;
  }
}


/* ════════════════════════════════════════════════════
   MOBILE POLISH
   Sky/green accents · Kakao CTA · trust chips · safe-area
════════════════════════════════════════════════════ */
:root {
  --brand-sky-blue: #7AB2D3;
  --brand-green: #73C6B6;
  --btn-kakao-bg: #FEE500;
  --btn-kakao-text: #191919;
}

/* Small accent — card tags (bronze CTA buttons unchanged) */
.cur-card__tags span {
  background-color: #F0F6F9;
  color: var(--brand-sky-blue);
  border: 1px solid rgba(122, 178, 211, 0.45);
}

/* Active tab — green underline accent on gold/dark tab shell */
.tc-tab.active {
  border-bottom-color: var(--brand-green);
}

/* Kakao buttons — official yellow (bronze .btn--bronze untouched) */
.btn--kakao,
.site-header .btn--kakao,
.hero-sidebar .btn--kakao,
.sb-card .btn--kakao,
.bottom-bar .btn--kakao,
.consult-panel .btn--kakao {
  background-color: var(--btn-kakao-bg);
  color: var(--btn-kakao-text);
  border-color: rgba(0, 0, 0, 0.08);
}
.btn--kakao:hover,
.site-header .btn--kakao:hover,
.hero-sidebar .btn--kakao:hover,
.sb-card .btn--kakao:hover,
.bottom-bar .btn--kakao:hover,
.consult-panel .btn--kakao:hover {
  background-color: #f0dc00;
  color: var(--btn-kakao-text);
  border-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  /* Trust bar — 2-column chips on cream (desktop dark bar unchanged above 768px) */
  .trust-credentials-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    justify-content: center;
  }
  .trust-credentials-bar .tcb-item {
    flex: 0 1 calc(50% - 8px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }
  .trust-credentials-bar .tcb-text {
    text-align: center;
  }
  .trust-credentials-bar .tcb-item strong {
    font-size: 13px;
    color: var(--brand-green);
    display: block;
    margin-bottom: 4px;
  }
  .trust-credentials-bar .tcb-item span {
    font-size: 11px;
    line-height: 1.35;
    color: #666;
  }
  .trust-credentials-bar .tcb-divider,
  .trust-credentials-bar .tcb-stat,
  .trust-credentials-bar .tcb-icon,
  .trust-credentials-bar .tcb-caption {
    display: none;
  }
}

@media (max-width: 640px) {
  /* iPhone home indicator — bottom bar + page scroll padding */
  .bottom-bar {
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}


/* ════════════════════════════════════════════════════
   TYPOGRAPHY — Noto Serif KR headings · Pretendard UI
════════════════════════════════════════════════════ */

.curation-board__head h2,
.section-head h2,
.about-section h2,
.consult-title {
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.36;
}

.cur-card h3,
.mag-card h3,
.cur-card__body h3,
.mag-card__body h3,
.why-card h3,
.btn,
button {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.about-quote__text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.72;
  font-style: normal;
}

.slide-sub,
.slide-eyebrow,
.btn,
.main-nav a,
.nav-dropdown__link,
.mobile-nav__link,
.mobile-nav__sub a,
.mobile-nav__toggle,
input,
textarea,
select,
p,
li,
label {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
}

span,
.cur-card__desc,
.cur-card__recommend,
.consult-desc,
.cf-label,
.cf-note {
  font-family: var(--font-ui);
  font-weight: 400;
}

.btn,
button {
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* English labels — Pretendard (no Cormorant on Korean) */
.section-eyebrow,
.tc-tab__en,
.why-card__label,
.guide-spotlight__label {
  font-family: var(--font-ui);
  letter-spacing: .12em;
}

.slide-eyebrow {
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: .1em;
}

/* Hero — Noto Serif KR only */
.slide-title,
.slide-title em,
.slide-title span,
.slide-title .title-accent {
  font-family: "Noto Serif KR", serif !important;
  font-style: normal !important;
  overflow-wrap: normal !important;
}
.slide-title {
  font-weight: 600 !important;
}
.title-accent,
.slide-title .title-accent {
  font-weight: 500 !important;
}

/* 투어 상세페이지 하단 고정 CTA(.td-sticky) 안에서는 버튼 위쪽에 뜨도록 위치만 보정 */
.td-sticky .cf-toast {
  bottom: 78px;
}

/* 투어 상세페이지 데스크톱용 토스트 래퍼 (.td-sticky는 데스크톱에서 숨김이라 별도 앵커 필요) */
.td-toast-desktop {
  display: none;
}
@media (min-width: 768px) {
  .td-toast-desktop {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    pointer-events: none;
  }
  .td-toast-desktop .cf-toast {
    bottom: 24px;
  }
}

/* Compact review trust block: secondary to tours and booking. */
@media (max-width: 900px) {
  .reviews-section {
    padding: 60px 0 64px;
  }

  .reviews-section__head {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 48px 0 52px;
  }

  .reviews-section__head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .reviews-section__head h2 {
    margin-bottom: 12px;
  }

  .reviews-write-button {
    align-self: flex-start;
  }

  .reviews-trust-header {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    text-align: left;
  }

  .reviews-trust-header .rth-divider,
  .reviews-trust-header .rth-text {
    display: none;
  }

  .rv-grid.rv-grid--4 {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 28px);
    gap: 12px;
    overflow-x: auto;
    padding: 0 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
  }

  .rv-grid--4 .review-card {
    min-height: 210px;
    scroll-snap-align: start;
  }

  .reviews-cta {
    flex-direction: row;
    margin-top: 16px;
  }
}

/* Home tour priority — signature tours first, secondary tours compact. */
.tour-choice-guide {
  margin: 28px 0 52px;
  padding: 22px;
  border: 1px solid rgba(139, 105, 20, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .42);
}

.tour-choice-guide__title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.tour-choice-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tour-choice-guide__grid a {
  display: flex;
  min-width: 0;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}

.tour-choice-guide__grid a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.tour-choice-guide__grid a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.tour-choice-guide__grid strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.tour-choice-guide__grid span {
  color: var(--ink-m);
  font-size: 12px;
  line-height: 1.45;
}

#vehicle-tours,
#museum-tours,
#special-tours,
#other-tours {
  scroll-margin-top: 88px;
}

.curation-group--priority .curation-subhead__ko {
  color: var(--ink);
  font-weight: 500;
}

.featured-grid.featured-grid--special {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.curation-group--special {
  padding: 32px;
  border-radius: 12px;
  background: rgba(232, 224, 212, .46);
}

.cur-card__popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(61, 43, 31, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
}

.home-other-tours {
  margin-top: 8px;
  background: rgba(221, 212, 198, .48);
}

.home-other-tours > summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}

.home-other-tours > summary > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-other-tours > summary strong {
  color: var(--ink);
  font-size: 14px;
}

.home-other-tours > summary small {
  color: var(--ink-m);
  font-size: 12px;
  font-weight: 400;
}

.home-other-tours__toggle::before {
  content: '열기 +';
  color: var(--bronze);
  font-size: 12px;
  white-space: nowrap;
}

.home-other-tours[open] .home-other-tours__toggle::before {
  content: '닫기 −';
}

.home-other-tours .extra-tours__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px 20px 20px;
}

@media (max-width: 900px) {
  .tour-choice-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-grid.featured-grid--special {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-other-tours .extra-tours__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .tour-choice-guide {
    margin: 22px 0 38px;
    padding: 14px;
  }

  .tour-choice-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tour-choice-guide__grid a {
    min-height: 76px;
    padding: 11px 12px;
  }

  .tour-choice-guide__grid strong {
    font-size: 12.5px;
  }

  .tour-choice-guide__grid span {
    font-size: 11px;
  }

  .curation-group--special {
    padding: 24px 16px;
  }

  .featured-grid.featured-grid--special,
  .home-other-tours .extra-tours__grid {
    grid-template-columns: 1fr;
  }

  .home-other-tours > summary {
    min-height: 68px;
    padding: 14px 16px;
  }
}
