/* 깔끔한친구들 — brand layer over the Wanted Design System.
   Deep navy + teal(mint) point + generous white. Pretendard from the DS. */

:root {
  /* Brand */
  --navy-900: #071B2E;
  --navy-800: #0B2540;
  --navy-700: #12365B;
  --navy-600: #1B4A78;
  --mint-600: #0E9E92;
  --mint-500: #13B5A6;
  --mint-400: #2EC9BB;
  --mint-soft: #E8F7F4;
  --mint-tint: #F1FBF9;
  --ink: #0E2033;

  /* Re-point the Wanted primary onto our mint so DS Button/links/focus follow */
  --blue-50: var(--mint-500);
  --blue-50-2: var(--mint-500);
  --primary-normal: var(--mint-500);
  --primary-normal-2: var(--mint-500);
  --primary-strong: var(--mint-600);
  --primary-heavy: var(--mint-600);
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

/* ---- Scroll snap assist (gentle: only corrects when settling near a region) ---- */
@media (prefers-reduced-motion: no-preference) and (min-width: 721px) {
  html { scroll-snap-type: y proximity; }
}
@media (max-width: 720px) {
  html { scroll-snap-type: none; }
}
.snap { scroll-snap-align: start; scroll-margin-top: 64px; }
.hero.snap { scroll-margin-top: 0; }
/* Sections taller than the viewport must not force-snap their top (bottom would clip) */
@media (min-width: 721px) {
  .snap { scroll-snap-stop: normal; }
}
body {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}
::selection { background: var(--mint-500); color: #fff; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--mint-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--mint-500); display: inline-block;
}
.section-title {
  font-family: var(--font-brand);
  font-weight: 700; letter-spacing: -0.03em; color: var(--navy-800);
  font-size: clamp(28px, 4.4vw, 44px); line-height: 1.22;
  margin: 16px 0 0; text-wrap: balance;
}
.section-lead {
  font-size: clamp(16px, 2vw, 19px); line-height: 1.7;
  color: var(--label-neutral); margin: 18px 0 0; max-width: 640px;
}

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .5s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .05s; }
.reveal[data-d="2"] { transition-delay: .1s; }
.reveal[data-d="3"] { transition-delay: .15s; }
.reveal[data-d="4"] { transition-delay: .2s; }
.reveal[data-d="5"] { transition-delay: .25s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- Header ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav .brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-brand); font-weight: 800; letter-spacing: -0.02em; font-size: 20px; white-space: nowrap; }
.brand-logo { height: 38px; width: auto; display: block; transition: filter .3s ease; }
/* Over the dark hero (nav not scrolled) the dark-text logo is inverted to white */
.nav:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.nav .brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--mint-500); box-shadow: 0 0 0 4px rgba(19,181,166,.22); }
.nav .brand-mark { color: #fff; }
.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-color: var(--line-normal-neutral); box-shadow: 0 1px 0 rgba(16,54,91,.04); }
.nav.scrolled .brand-mark { color: var(--navy-800); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: rgba(255,255,255,.86); font-size: 15px; font-weight: 600; text-decoration: none; transition: color .2s; white-space: nowrap; }
.nav.scrolled .nav-links a { color: var(--label-neutral); }
.nav-links a:hover { color: var(--mint-400); }
.nav.scrolled .nav-links a:hover { color: var(--mint-600); }

/* ---- Nav dropdown (서비스 상품) ---- */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-chev { transition: transform .2s ease; opacity: .8; }
.nav-drop:hover .nav-chev { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 208px; padding: 8px; border-radius: 14px;
  background: #fff; box-shadow: 0 12px 34px rgba(7,27,46,.16); border: 1px solid var(--line-normal-neutral);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-drop:hover .nav-menu,
.nav-drop:focus-within .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(6px); }
/* Bridge the gap so the menu doesn't close between trigger and panel */
.nav-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav-menu a {
  display: block; padding: 11px 14px; border-radius: 9px; font-size: 14.5px; font-weight: 600;
  color: var(--label-neutral) !important; white-space: nowrap; transition: background .15s, color .15s;
}
.nav-menu a:hover { background: var(--mint-soft); color: var(--mint-600) !important; }
.nav-menu a { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.soon { font-size: 10.5px; font-weight: 700; color: var(--label-assistive); background: rgba(112,115,124,.12); padding: 2px 7px; border-radius: 999px; letter-spacing: 0; }
.nav-mobile .svc .soon { margin-left: 8px; }
.nav-phone { font-family: var(--font-brand); font-weight: 800; letter-spacing: -0.01em; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---- 모바일 네비 (햄버거 메뉴) — 상세페이지와 동일 ---- */
.nav-burger {
  display: none; background: none; border: 0; padding: 6px; cursor: pointer; color: #fff;
  align-items: center; justify-content: center; border-radius: 8px; line-height: 0;
  transition: color .2s, background .15s;
}
.nav-burger:hover { background: rgba(127,127,127,.12); }
.nav.scrolled .nav-burger, .nav.menu-open .nav-burger { color: var(--navy-800); }
.nav.menu-open { background: rgba(255,255,255,.98); backdrop-filter: blur(6px); border-color: var(--line-normal-neutral); box-shadow: 0 1px 0 rgba(16,54,91,.04); }
.nav.menu-open .brand-logo { filter: none; }
.nav-mobile {
  position: absolute; top: 72px; left: 0; right: 0; background: #fff;
  border-bottom: 1px solid var(--line-normal-neutral); box-shadow: 0 16px 34px rgba(7,27,46,.14);
  display: flex; flex-direction: column; padding: 8px 0 14px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  max-height: calc(100vh - 72px); overflow-y: auto; z-index: 50;
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: none; }
.nav-mobile a { padding: 14px 24px; font-size: 16px; font-weight: 600; color: var(--navy-800); text-decoration: none; letter-spacing: -0.01em; }
.nav-mobile a:hover { color: var(--mint-600); }
.nav-mobile a.svc { padding: 12px 24px 12px 38px; font-size: 15px; color: var(--label-neutral); }
.nav-mobile a.svc .soon { margin-left: 8px; }
.nav-mobile .sub-label { padding: 14px 24px 4px; font-size: 12px; font-weight: 800; letter-spacing: .05em; color: var(--label-assistive); }
@media (min-width: 901px) { .nav-mobile { display: none; } }
@media (max-width: 900px) {
  .nav-burger { display: inline-flex; }
  .nav-phone { display: none !important; }
}

/* ---- Hero ---- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg image-slot { width: 100%; height: 100%; display: block; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 18% center; display: block; z-index: 1; background: var(--navy-900);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,27,46,.78) 0%, rgba(7,27,46,.52) 40%, rgba(7,27,46,.72) 100%),
    radial-gradient(120% 90% at 15% 20%, rgba(11,37,64,.55), rgba(7,27,46,.85));
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 96px; padding-bottom: 56px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em;
  backdrop-filter: blur(6px);
}
.hero-badge .k { color: var(--mint-400); font-weight: 800; }
.hero-badge .sep { color: rgba(255,255,255,.4); }
.hero-slides { position: relative; margin: 26px 0 0; min-height: clamp(210px, 40vw, 360px); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.hero-slide h1 {
  font-family: var(--font-brand); color: #fff; margin: 0;
  font-weight: 800; letter-spacing: -0.035em;
  font-size: clamp(30px, 5.6vw, 60px); line-height: 1.3;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
  word-break: keep-all; overflow-wrap: normal;
}
.hero-slide h1 .hi { color: var(--mint-400); }
.hero-sub { margin-top: 22px; color: rgba(255,255,255,.9); font-size: clamp(15px,1.9vw,18px); line-height: 1.7; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-dots { display: flex; gap: 9px; margin-top: 40px; }
.hero-dots button { width: 30px; height: 4px; border-radius: 4px; border: none; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; transition: background .3s, width .3s; }
.hero-dots button.active { background: var(--mint-400); width: 46px; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; letter-spacing: .06em; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: heroLine 2s ease-in-out infinite; transform-origin: top; }
@keyframes heroLine { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ---- Hero: 모바일 최적화 (상세페이지 phero처럼 영상이 보기 좋게) ---- */
@media (max-width: 720px) {
  /* 세로로 긴 폰 화면에서 영상이 과도하게 확대·잘리지 않도록 중앙 정렬 + 높이 완화 */
  .hero { min-height: 86svh; align-items: flex-end; }
  /* 인물 얼굴이 위쪽에 오도록 크롭 위치 조정 */
  .hero-video { object-position: 50% 20%; }
  /* 하단 스크림을 더 진하게 — 본문이 인물 몸통(어두운 영역) 위에 놓이도록 */
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7,27,46,.14) 0%, rgba(7,27,46,.30) 40%, rgba(7,27,46,.80) 74%, rgba(7,27,46,.95) 100%),
      radial-gradient(150% 80% at 20% 30%, rgba(11,37,64,.30), rgba(7,27,46,.55));
  }
  /* 텍스트 블록을 화면 하단으로 최대한 내림 (얼굴을 가리지 않게) */
  .hero-inner { padding-top: 80px; padding-bottom: 12px; }
  .hero-badge { margin-top: 0; padding: 7px 14px; font-size: 12px; }
  .hero-slides { margin-top: 14px; min-height: clamp(132px, 38vw, 170px); }
  .hero-slide h1 { font-size: clamp(26px, 7.6vw, 38px); line-height: 1.26; }
  .hero-sub { margin-top: 14px; font-size: 15px; line-height: 1.6; }
  .hero-dots { margin-top: 18px; }
  .hero-scroll { display: none; }
}
@media (max-width: 720px) and (min-height: 780px) {
  /* 큰 폰(넉넉한 세로)에서는 풀뷰에 가깝게 */
  .hero { min-height: 92svh; }
}

/* ---- Trust bar ---- */
.trust { background: var(--navy-800); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.trust-item { text-align: center; padding: 40px 14px; position: relative; }
.trust-item + .trust-item::before { content:""; position:absolute; left:0; top:50%; transform: translateY(-50%); height: 54px; width: 1px; background: rgba(255,255,255,.12); }
.trust-num { font-family: var(--font-brand); font-weight: 800; letter-spacing: -0.03em; font-size: clamp(26px, 3.3vw, 42px); line-height: 1; color: #fff; white-space: nowrap; }
.trust-num .u { color: var(--mint-400); font-size: 0.6em; margin-left: 2px; font-weight: 700; }
.trust-label { margin-top: 12px; font-size: 14.5px; color: rgba(255,255,255,.66); font-weight: 500; letter-spacing: -0.01em; }
@media (max-width: 820px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { padding: 30px 10px; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item { border-top: 1px solid rgba(255,255,255,.1); }
  .trust-item:nth-child(-n+2) { border-top: none; }
  .trust-item:nth-child(odd)::after { content:""; position:absolute; right:0; top:26px; bottom:26px; width:1px; background: rgba(255,255,255,.1); }
}

/* ---- Differentiators ---- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 620px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card { padding: 30px 28px 32px; height: 100%; }
.diff-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mint-soft); color: var(--mint-600); margin-bottom: 22px;
}
.diff-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy-800); margin: 0 0 10px; }
.diff-card p { font-size: 15.5px; line-height: 1.66; color: var(--label-neutral); margin: 0; }
.diff-no { font-family: var(--font-brand); font-size: 13px; font-weight: 800; color: var(--mint-500); letter-spacing: .04em; }

/* ---- Gallery ---- */
.gallery { background: var(--mint-tint); }
.gal-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 168px; gap: 16px; margin-top: 48px; }
.gal-grid image-slot { width: 100%; height: 100%; display: block; }
.g1 { grid-column: span 7; grid-row: span 2; }
.g2 { grid-column: span 5; }
.g3 { grid-column: span 5; }
.g4 { grid-column: span 4; }
.g5 { grid-column: span 4; }
.g6 { grid-column: span 4; }
@media (max-width: 760px) {
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .g1 { grid-column: span 2; grid-row: span 2; }
  .g2,.g3,.g4,.g5,.g6 { grid-column: span 1; grid-row: span 1; }
}
.gal-quote { text-align: center; margin-top: 60px; }
.gal-quote p { font-family: var(--font-brand); font-weight: 700; letter-spacing: -0.025em; color: var(--navy-700); font-size: clamp(22px, 3.4vw, 34px); line-height: 1.4; margin: 0; text-wrap: balance; }
.gal-quote .mk { color: var(--mint-500); }

/* ---- Services ---- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.svc-photo { width: 100%; height: 190px; }
.svc-photo image-slot { width: 100%; height: 100%; display: block; }
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-tag { align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--mint-600); background: var(--mint-soft); padding: 5px 10px; border-radius: 999px; letter-spacing: -0.01em; }
.svc-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy-800); margin: 14px 0 8px; }
.svc-card p { font-size: 14.5px; line-height: 1.6; color: var(--label-neutral); margin: 0 0 20px; flex: 1; }
.svc-actions { display: flex; gap: 10px; }

/* ---- Reviews ---- */
.reviews { background: var(--navy-900); color: #fff; overflow: hidden; }
.rev-top { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .rev-top { grid-template-columns: 1fr; gap: 28px; } }
.rev-score { display: flex; align-items: baseline; gap: 6px; }
.rev-score .big { font-family: var(--font-brand); font-weight: 800; font-size: clamp(64px, 12vw, 108px); line-height: .9; letter-spacing: -0.04em; color: #fff; }
.rev-score .max { font-size: 26px; font-weight: 700; color: rgba(255,255,255,.4); }
.rev-title { font-family: var(--font-brand); font-size: clamp(26px,3.6vw,38px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.3; margin: 0; color: #fff; text-wrap: balance; }
.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
@media (max-width: 860px) { .rev-cards { grid-template-columns: 1fr; } }
.rev-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 26px 24px; }
.rev-card .quote { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.9); margin: 16px 0 22px; font-weight: 500; }
.rev-meta { display: flex; align-items: center; gap: 12px; }
.rev-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--mint-600); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-brand); }
.rev-name { font-size: 14.5px; font-weight: 700; color: #fff; }
.rev-svc { font-size: 12.5px; color: rgba(255,255,255,.55); }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 20px; } }
.faq-list { border-top: 1px solid var(--line-normal-neutral); }

/* ---- Final CTA ---- */
.final { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff; text-align: center; }
.final::before, .final::after { content:""; position:absolute; border-radius:50%; }
.final::before { width: 420px; height: 420px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(46,201,187,.28), transparent 70%); }
.final::after { width: 380px; height: 380px; left: -120px; bottom: -180px; background: radial-gradient(circle, rgba(19,181,166,.22), transparent 70%); }
.final-inner { position: relative; z-index: 1; padding: 116px 0; }
.final h2 { font-family: var(--font-brand); font-weight: 800; letter-spacing: -0.035em; font-size: clamp(30px, 5vw, 54px); line-height: 1.18; margin: 18px 0 0; text-wrap: balance; }
.final p { font-size: 18px; color: rgba(255,255,255,.82); margin: 18px 0 0; }
.final-cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.final .eyebrow { color: var(--mint-400); }
.final .eyebrow::before { background: var(--mint-400); }

/* ---- Footer ---- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.6); padding: 64px 0 130px; }
@media (min-width: 721px) { .footer { padding-bottom: 64px; } }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }
.foot-brand { font-family: var(--font-brand); font-weight: 800; font-size: 22px; color: #fff; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.foot-logo { height: 42px; width: auto; display: block; filter: brightness(0) invert(1); }
.foot-slo { margin-top: 14px; color: rgba(255,255,255,.5); font-size: 15px; }
.foot-biz { margin-top: 18px; display: flex; flex-direction: column; gap: 5px; font-size: 13.5px; color: rgba(255,255,255,.5); letter-spacing: -0.01em; }
.foot-biz a { color: rgba(255,255,255,.62); text-decoration: none; }
.foot-biz a:hover { color: var(--mint-400); }
.foot-phone { font-family: var(--font-brand); font-weight: 800; font-size: 26px; color: #fff; letter-spacing: -0.01em; }
.foot-h { color: rgba(255,255,255,.4); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.foot-grid a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 15px; }
.foot-grid a:hover { color: var(--mint-400); }
.foot-line { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.4); }

/* ---- Mobile fixed action bar ---- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line-normal-neutral); }
.mbar a { flex: 1; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 16px; text-decoration: none; letter-spacing: -0.01em; }
.mbar .call { background: var(--navy-800); color: #fff; flex: 0 0 52px; }
.mbar .kakao { background: #FEE500; color: #3A1D1D; }
.mbar .book { background: var(--mint-500); color: #fff; }
@media (max-width: 720px) { .mbar { display: flex; } }

/* ---- Common button pieces ---- */
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Fixed quick menu (right-bottom) ---- */
.quick {
  position: fixed; right: 22px; bottom: 26px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.q-btn {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-decoration: none; color: #fff; cursor: pointer;
  box-shadow: 0 8px 20px rgba(7,27,46,.26);
  transition: transform .15s ease, box-shadow .15s ease;
}
.q-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(7,27,46,.34); }
.q-btn span { font-size: 10.5px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.q-call { background: var(--navy-700); }
.q-kakao { background: #FEE500; color: #3A1D1D; }
.q-book { background: var(--mint-500); }
@media (max-width: 720px) {
  .quick { display: none; }
}
