/* ============================================================
   Common — Reset · Tokens · Typography · Header · Footer · Quick · Overlay · Buttons · Reveal
   ============================================================ */

/* ====================== Reset ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "tnum";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { width: 100%; height: 100%; object-fit: cover; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: normal; color: var(--mint); font-weight: 700; }

/* ====================== Tokens ====================== */
:root {
  --mint:      #ffad0e;
  --mint-d:    #e89a00;
  --mint-l:    #ffc947;
  --mint-soft: #fff8e6;
  --ink:       #191916;
  --ink-2:     #2a2e33;
  --ink-soft:  #4a5057;
  --gray:      #6b7178;
  --gray-l:    #9ba0a6;
  --line:      #e8eaed;
  --line-2:    #d2d6da;
  --bg:        #ffffff;
  --bg-soft:   #fafaf8;
  --bg-mint:   #fff9ed;
  --dark:      #191916;

  --naver: #03C75A;
  --kakao: #FEE500;

  --container: 1480px;
  --gutter: clamp(20px, 3vw, 40px);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease:    cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.4, 0, 1, 1);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.mo_br { display: none; }
.sound_only { position: absolute; top: 0; left: 0; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; font-size: 0; line-height: 0; }

/* ======================================
   스크롤바 스타일 (Webkit)
   ====================================== */
html::-webkit-scrollbar {
  width: 2px;
}

html::-webkit-scrollbar-track {
  background: #111;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--mint);
  border-radius: 100px;
}
/* ====================== Reveal ====================== */
/*
  JS(common.js)가 transitionDelay를 직접 주입:
  - sec-head 자식: 0, 0.13, 0.26s 순차
  - 그리드 아이템(data-delay): 0.5s 기점 + 0.06~0.24s 간격
  여기 CSS는 초기 hidden 상태와 transition 속도만 담당
*/
[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease-out,
    transform 0.75s ease-out;
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
[data-anim].is-in {
  opacity: 1;
  transform: none;
}

/* anim-pending: 애니 진행 중
   - 자기 자신: pointer-events만 차단 (transition은 살림 — 애니메이션 작동용)
   - 자식 *: transition:none으로 hover 시각효과 동결 */
.anim-pending { pointer-events: none !important; }
.anim-pending * { pointer-events: none !important; }

[data-anim="fade"]       { transform: none; }
[data-anim="fade-up"]    { transform: translateY(22px); }
[data-anim="fade-down"]  { transform: translateY(-14px); }
[data-anim="fade-left"]  { transform: translateX(22px); }
[data-anim="fade-right"] { transform: translateX(-22px); }


/*
  CSS fallback delay: JS 실행 전 순간에도 opacity:0 보장.
  실제 값은 JS가 style.transitionDelay로 덮어씀.
*/
[data-delay="100"] { transition-delay: 0.55s; }
[data-delay="200"] { transition-delay: 0.75s; }
[data-delay="300"] { transition-delay: 0.95s; }
[data-delay="400"] { transition-delay: 1.15s; }
[data-delay="500"] { transition-delay: 1.35s; }
/* delay 없는 첫 그리드 아이템도 숨김 보장 */
.treat-grid > [data-anim]:not([data-delay]),
.ba-vert-grid > [data-anim]:not([data-delay]),
.impl-steps-grid > [data-anim]:not([data-delay]) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ====================== Buttons ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  transition: all .35s var(--ease);
  white-space: nowrap;
  letter-spacing: 0;
}
.btn i { font-size: 16px; line-height: 1; }
.btn-primary { background: var(--mint); color: #1a1a00; border-color: var(--mint); }
.btn-primary:hover { background: var(--mint-d); border-color: var(--mint-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,173,14,.28); }
.btn-mint { background: var(--mint); color: #fff; border-color: var(--mint); }
.btn-mint:hover { background: var(--mint-d); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn-line { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn-line-light { background: transparent; border-color: rgba(255,255,255,0.25); color: #fff; }
.btn-line-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--mint); color: #fff; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-white-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ====================== Brand marks ====================== */
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}
.naver-mark   { background: var(--naver); color: #fff; font-weight: 900; }
.blog-mark    { background: var(--naver); color: #fff; font-weight: 900; }
.kakao-mark   { background: var(--kakao); }
.talktalk-mark { background: #fff; border: 1.5px solid var(--naver); }

/* ====================== Section Title ====================== */
.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  color:  var(--gray);;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow.mint { color: var(--mint); }
.sec-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head .eyebrow { display: block; }
.sec-title {
  font-size: clamp(34px, 3.6vw, 60px);
  font-weight:800;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.sec-title.light { color: #fff; }
.sec-desc {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ====================== Header ====================== */


#gnb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s var(--ease), border-color .4s;
}
#gnb.sc {
  box-shadow: 0 2px 40px rgba(0,0,0,.06);
  border-bottom-color: transparent;
}

.gnb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { width: 190px; }

/* GNB */
.gnav { display: flex; align-items: stretch; height: 76px; }
.gnav-list { display: flex; height: 100%; }
.gnav-item { position: relative; display: flex; align-items: center; height: 100%; }
.gnav-link {
  display: flex; align-items: center;
  height: 100%; padding: 0 18px;
  font-size: 16px; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s;
  letter-spacing: -0.01em; white-space: nowrap;
}
.gnav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
  border-radius: 2px 2px 0 0;
}
.gnav-item:hover .gnav-link { color: var(--ink); }
.gnav-item:hover .gnav-link::after { transform: scaleX(1); }
/* 현재 페이지 활성 */
.gnav-item.is-active .gnav-link { color: var(--ink); font-weight: 600; }
.gnav-item.is-active .gnav-link::after { transform: scaleX(1); }

/* 드롭다운 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 168px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 0;
  box-shadow: 0 20px 48px -12px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  pointer-events: none;
  z-index: 10;
}
.gnav-item:hover .dropdown,
.gnav-item:focus-within .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: color .2s, background .2s;
}
.dropdown a:hover { color: var(--ink); background: var(--bg-soft); }

/* 우측 */
.gnb-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* 전화번호 */
.gnb-tel {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1;
  padding-left: 20px;
  transition: color .25s;
}
.gnb-tel:hover { color: var(--gray); }
.gnb-tel i {
  font-size: 18px; color: var(--mint);
  flex-shrink: 0;
}

/* 햄버거 — 3선 동일 굵기, 둥근 끝 */
.hbg {
  width: 38px; height: 38px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer; flex-shrink: 0;
}
.hbg span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.23,1,.32,1), opacity .2s;
  transform-origin: center;
}
.hbg span + span { margin-top: 5px; }
.hbg.op span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.op span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.op span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 메인페이지 스크롤 전 투명 */
.is-main #gnb:not(.sc) {
  background: transparent;
  border-color: transparent;
}
.is-main #gnb:not(.sc) .gnav-link { color: rgba(255,255,255,.75); }
.is-main #gnb:not(.sc) .gnav-item:hover .gnav-link { color: #fff; }
.is-main #gnb:not(.sc) .gnav-link::after { background: rgba(255,255,255,.8); }
/* 메인 투명 헤더 — 아이콘 흰색 계열 */
.is-main #gnb:not(.sc) .gnb-tel { color: rgba(255,255,255,.9); }
.is-main #gnb:not(.sc) .gnb-tel i { color: var(--mint); }
.is-main #gnb:not(.sc) .gnb-tel:hover { color: #fff; }


.is-main #gnb:not(.sc) .hbg { color: #fff; }
/* sc(스크롤) 상태 — 원래 색으로 복귀 (기본값이므로 명시 불필요, 투명 override만 해제) */
.is-main #gnb.sc .gnb-tel i { color: var(--mint); }
.is-main #gnb.sc .gnb-reserve { background: var(--mint); border-color: var(--mint); }
.is-main #gnb.sc .gnb-reserve i { color: var(--ink); }
.is-main #gnb.sc .hbg { color: var(--ink); }

/* ====================== Overlay ====================== */
@keyframes olColIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes olInfoIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ====================== Overlay Menu ====================== */
.overlay-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(18,17,15,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  overflow-y: auto;
}
.overlay-menu.op { opacity: 1; visibility: visible; }

/* 헤더 */
.overlay-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--gutter);
}
.overlay-logo-link img { width: 150px; filter: brightness(0) invert(1); opacity: .8; }
.overlay-logo { display: none; }

.overlay-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 26px; color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: color .2s, border-color .2s, transform .3s var(--ease);
}
.overlay-close:hover { color: #fff; border-color: rgba(255,255,255,.6); transform: rotate(90deg); }

.overlay-inner {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(40px,5vw,64px) var(--gutter) clamp(48px,6vw,72px);
}

/* 메뉴 그리드 — 선 없이 여백으로만 */
.overlay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 48px;
}
.overlay-col { opacity: 0; }

.overlay-menu.op .overlay-col { animation: olColIn .5s cubic-bezier(.16,1,.3,1) both; }
.overlay-menu.op .overlay-col:nth-child(1) { animation-delay: .04s; }
.overlay-menu.op .overlay-col:nth-child(2) { animation-delay: .1s; }
.overlay-menu.op .overlay-col:nth-child(3) { animation-delay: .16s; }
.overlay-menu.op .overlay-col:nth-child(4) { animation-delay: .22s; }
.overlay-menu.op .overlay-col:nth-child(5) { animation-delay: .28s; }

.overlay-col-title {
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.4); text-transform: uppercase;
  margin-bottom: 16px; display: block;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.overlay-links { display: flex; flex-direction: column; gap: 2px; }
.overlay-links a {
  display: block; padding: 9px 0;
  font-size: 22px; font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.overlay-links a:hover { color: #fff; }

/* 하단 정보 3열 — 심플 */
.overlay-info {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; opacity: 0;
}
.overlay-menu.op .overlay-info { animation: olInfoIn .5s cubic-bezier(.16,1,.3,1) .3s both; }

.overlay-info-block {}
.overlay-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.overlay-label i { font-size: 15px; color: var(--mint); }

.overlay-hours { display: flex; flex-direction: column; }
.overlay-hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 16px;
}
.overlay-hours li:last-child { border-bottom: none; }
.overlay-hours li span:first-child { color: rgba(255,255,255,.45); font-weight: 400; }
.overlay-hours li span:last-child { color: #fff; font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }
.overlay-hours li.off { opacity: .25; }
.overlay-mini { margin-top: 14px; font-size: 14px; color: var(--mint); font-weight: 600; }

.overlay-addr { font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 14px; }
.overlay-tel {
  display: block; font-size: clamp(22px,2.5vw,32px); font-weight: 800;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 20px; transition: color .2s;
}
.overlay-tel:hover { color: var(--mint); }
.overlay-map-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.overlay-map-btn {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.45);
  padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color .2s, border-color .2s;
}
.overlay-map-btn:hover { color: #fff; border-color: rgba(255,255,255,.6); }

.overlay-quick { display: flex; flex-direction: column; gap: 12px; }
.overlay-q-btn {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.overlay-q-btn i { font-size: 19px; color: var(--mint); flex-shrink: 0; }
.overlay-q-btn:hover { color: #fff; }

/* ====================== Footer ====================== */
#ft { background: var(--ink); color: rgba(255,255,255,.55); }

/* CTA 띠 — 골드 배경 */
.ft-cta {
  background: var(--mint);
  padding: clamp(28px,3.5vw,48px) 0;
}
.ft-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ft-cta-left { display: flex; flex-direction: column; gap: 8px; }
.ft-cta-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  color: rgba(25,25,22,.4); text-transform: uppercase;
}
.ft-cta-copy {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(20px,2vw,28px); font-weight: 600;
  color: rgba(25,25,22,.82); line-height: 1.4; letter-spacing: -0.01em;
}
.ft-cta-tel { display: none; }
.ft-cta-btns { display: flex; gap: 8px; flex-shrink: 0; }

.ft-btn-reserve {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  background: rgba(25,25,22,.85); color: #fff; border: none;
  transition: background .2s;
}
.ft-btn-reserve:hover { background: var(--ink); }
.ft-btn-consult {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  border: 1px solid rgba(25,25,22,.25); color: rgba(25,25,22,.7);
  transition: border-color .2s, color .2s;
}
.ft-btn-consult:hover { border-color: rgba(25,25,22,.6); color: var(--ink); }

/* 메인 영역 */
.ft-main { padding: clamp(40px,4vw,60px) 0 0; }
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-brand {}
.logo-foot img { opacity: .85; filter: brightness(0) invert(1); }
.ft-addr {
  font-size: 13px; color: rgba(255,255,255,.38);
  margin-top: 20px; line-height: 1.9;
}

.ft-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
  text-transform: uppercase; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-col a {
  display: block; padding: 7px 0;
  font-size: 14px; color: rgba(255,255,255,.55);
  font-weight: 400;
  transition: color .2s;
}
.ft-col a:hover { color: #fff; }
.ft-hours {display:flex; flex-direction:column; gap:0;}
.ft-hours li {display:flex; justify-content:space-between; align-items:center; gap:8px; padding:7px 0; border-bottom:1px solid rgba(255,255,255,.06); font-size:13px;}
.ft-hours li:last-child {border-bottom:none;}
.ft-hours li span {color:rgba(255,255,255,.5);}
.ft-hours li strong {color:rgba(255,255,255,.85); font-weight:700; font-size:14px; letter-spacing:-0.02em; white-space:nowrap;}
.ft-hours li.ft-off {opacity:.35;}
.ft-hours li.ft-note span {font-size:12px; color:var(--mint); font-weight:600;}

.ft-bottom {
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ft-bottom p { font-size: 13px; color: rgba(255,255,255,.35); letter-spacing: .01em; }
.ft-policy { display: flex; gap: 0; }
.ft-policy a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; padding: 0 16px; border-right: 1px solid rgba(255,255,255,.12); }
.ft-policy a:first-child { padding-left: 0; }
.ft-policy a:last-child { border-right: none; }
.ft-policy a:hover { color: #fff; }

/* ====================== Quick (PC) ====================== */
#quick {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: 76px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: -4px 4px 24px rgba(0,0,0,.12);
}

.qbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 6px;
  background: #fff;
  color: #1a1200;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}
.qbtn:hover { background: #fff8e6; }

.qicon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.qicon i { font-size: 26px; color: #ffad0e; }

.qlabel {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: static;
  transform: none;
  background: none;
  padding: 0;
  opacity: 1;
  pointer-events: auto;
  white-space: normal;
  border-radius: 0;
}
.qlabel::after { display: none; }

.qbtn-naver { background: #fff; }
.qbtn-naver:hover { background: #fff8e6; }
.q-naver-n {
  display: block;
  font-size: 28px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  color: #03C75A;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

.qbtn-blog { background: #fff; }
.qbtn-blog:hover { background: #fff8e6; }
.qbtn-blog .brand-mark {
  background: transparent;
  color: #03C75A;
  font-size: 26px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  width: auto; height: auto;
  border-radius: 0;
}

.qbtn-talk { background: #fff; }
.qbtn-talk:hover { background: #fff8e6; }
.qbtn-talk .brand-mark { background: transparent; border: none; }
.qbtn-talk .qicon svg { width: 30px; height: 30px; }

/* 전화 블록 */
.qbtn-tel {
  background: #ffad0e;
  padding: 13px 8px;
  gap: 3px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.qbtn-tel:hover { background: #e89a00; }
.qbtn-tel .qicon i { color: #1a1200; font-size: 22px; }
.qlabel-tel {
  font-size: 13px;
  font-weight: 700;
  color: #1a1200;
  text-align: center;
  line-height: 1.3;
}
.qtel-num {
  font-size: 15px;
  font-weight: 800;
  color: #1a1200;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.02em;
  word-break: break-all;
}

/* TOP 버튼 */
.qbtn-top {
  background: #f5f5f5;
  border-bottom: none;
  border-top: 1px solid #eee;
}
.qbtn-top:hover { background: #eee; }
.qbtn-top .qicon i { font-size: 20px; color: #888; }
.qbtn-top .qlabel { color: #888; }

@media (max-width: 1024px) { #quick { display: none; } }

/* ====================== Mobile bottom bar ====================== */
#mqbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  z-index: 90;
  box-shadow: 0 -2px 12px rgba(0,0,0,.07);
}
.mqitem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px 13px;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  border-right: 1px solid #e8e8e8;
  transition: background .2s;
}
.mqitem:last-child { border-right: none; }
.mqitem:hover { background: #fff8e6; }
.mqicon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: transparent;
}
.mqicon i { font-size: 22px; color: #ffad0e; }
.mqicon-tel i { color: #ffad0e; }
.mqicon-naver {
  font-size: 22px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  color: #03C75A;
  background: transparent;
}
.mqicon-talk {
  font-size: 12px;
  font-weight: 900;
  color: #03C75A;
  background: transparent;
}
.mqicon-photo i { color: #ffad0e; }

/* ============================================================
   Responsive Header/Footer/Overlay/Quickbar
   ============================================================ */
@media (max-width: 1100px) { .gnav { display: none; } }

@media (max-width: 1024px) {
  #mqbar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 900px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .overlay-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .overlay-col { padding-right: 16px; }
  .overlay-info { grid-template-columns: 1fr; gap: 1px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .logo img { width: 150px; }
  .mo_br { display: block; }
  .gnb-tel { display: none; }
  .gnb-inner { height: 64px; padding: 0 16px; }

  .sec-head { margin-bottom: 36px; }
  .sec-title { font-size: 40px; line-height: 1.3; letter-spacing: -0.02em; }
  .sec-desc { font-size: 17px; }
  .eyebrow { font-size: 10px; margin-bottom: 12px; }

  .ft-cta { padding: 28px 0; }
  .ft-cta-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 16px; padding: 0 20px; }
  .ft-cta-left { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .ft-cta-tag { font-size: 12px; }
  .ft-cta-tel { font-size: 28px; }
  .ft-cta-btns { flex-direction: column; gap: 8px; }
  .ft-cta-btns .btn { width: 100%; justify-content: center; padding: 14px 22px; }

  .ft-main { padding: 36px 0 28px; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px 28px; }
  .ft-addr { font-size: 13px; margin-top: 12px; }
  .ft-col h4 { font-size: 10px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ft-col a { padding: 5px 0; font-size: 13.5px; }
  .ft-hours { font-size: 13px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 0 24px; }
  .ft-bottom p { font-size: 11.5px; }
  .ft-policy a { font-size: 12px; }

  /* ── overlay 모바일 ── */
  .overlay-head { padding: 18px 20px; }
  .overlay-logo-link img { width: 130px; }
  .overlay-close { width: 40px; height: 40px; font-size: 22px; }

  .overlay-inner { padding: 0 0 48px; }

  /* 아코디언 그리드 */
  .overlay-grid {
    display: flex; flex-direction: column; gap: 0;
    padding-bottom: 0; margin-bottom: 0;
    border-bottom: none;
  }
  .overlay-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  /* 아코디언 타이틀 */
  .overlay-col-title {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    margin-bottom: 0;
    border-bottom: none;
    font-size: 17px; font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: 0; text-transform: none;
    cursor: pointer;
  }
  .overlay-col-title::after {
    content: "+";
    font-size: 22px; font-weight: 300;
    color: rgba(255,255,255,.4);
    transition: transform .3s, color .2s;
    flex-shrink: 0;
  }
  .overlay-col.is-open .overlay-col-title { color: #fff; }
  .overlay-col.is-open .overlay-col-title::after {
    transform: rotate(45deg); color: var(--mint);
  }

  /* 아코디언 내용 */
  .overlay-links {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s cubic-bezier(.16,1,.3,1);
    padding: 0 20px;
  }
  .overlay-col.is-open .overlay-links {
    max-height: 400px;
    padding-bottom: 16px;
  }
  .overlay-links a {
    padding: 13px 0;
    font-size: 18px; font-weight: 500;
    color: rgba(255,255,255,.55);
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .overlay-links a:last-child { border-bottom: none; }
  .overlay-links a:hover { color: #fff; }

  /* 하단 정보 */
  .overlay-info {
    grid-template-columns: 1fr; gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 0;
  }
  .overlay-info-block {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .overlay-info-block:last-child { border-bottom: none; }
  .overlay-label { font-size: 12px; margin-bottom: 16px; padding-bottom: 12px; }

  .overlay-hours li { font-size: 15px; padding: 8px 0; }
  .overlay-hours li span:last-child { font-size: 16px; }
  .overlay-addr { font-size: 15px; }
  .overlay-tel { font-size: 28px; margin-bottom: 16px; }
  .overlay-q-btn { font-size: 17px; }

  .mqitem { font-size: 10.5px; }
  .mqicon { width: 26px; height: 26px; }

  .btn { padding: 13px 22px; font-size: 14.5px; }
}

/* ===== 로그인 팝업 ===== */
.login-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.login-popup-overlay.is-open { opacity: 1; pointer-events: all; }
.login-popup {
  background: #fff;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 400px;
  padding: 44px 36px 36px;
  position: relative;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
  text-align: center;
}
.login-popup-overlay.is-open .login-popup { transform: translateY(0); }
.login-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--gray-l);
  transition: background .2s, color .2s;
}
.login-popup-close:hover { background: var(--bg-soft); color: var(--ink); }
.login-popup-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--mint);
}
.login-popup h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.login-popup-desc { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.login-popup-desc em { color: var(--ink); font-style: normal; font-weight: 600; }
.login-popup-btns { display: flex; flex-direction: column; gap: 10px; }
.login-btn-naver {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px;
  background: #03C75A; color: #fff;
  font-size: 16px; font-weight: 700;
  border-radius: var(--r-md);
  transition: filter .2s;
}
.login-btn-naver:hover { filter: brightness(.92); }
.login-btn-naver-ico {
  width: 24px; height: 24px;
  background: rgba(0,0,0,.15);
  border-radius: 4px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 900; font-size: 14px;
}
.login-btn-kakao {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px;
  background: #FEE500; color: #191919;
  font-size: 16px; font-weight: 700;
  border-radius: var(--r-md);
  transition: filter .2s;
}
.login-btn-kakao:hover { filter: brightness(.95); }
.login-btn-kakao svg { flex-shrink: 0; }
.login-popup-note { margin-top: 16px; font-size: 12px; color: var(--gray-l); line-height: 1.6; }

/* ===== 메인 투명 헤더 ===== */
.is-main #gnb {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .5s var(--ease), border-color .5s, box-shadow .4s;
}
.is-main #gnb.sc {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.is-main #gnb:not(.sc) .logo-text strong { color: #fff; }
.is-main #gnb:not(.sc) .logo-text small  { color: rgba(255,255,255,.55); }
.is-main #gnb:not(.sc) .gnav-link { color: rgba(255,255,255,.85); }
.is-main #gnb:not(.sc) .gnav-item:hover .gnav-link { color: #fff; }

.is-main #gnb:not(.sc) .hbg { color: #fff; }