@charset "UTF-8";
/* =========================================================================
   간다GO · 경기 출장마사지 안내 — Premium Design System
   Pretendard + 프리미엄 팔레트 토큰 + 컴포넌트 오버레이
   ========================================================================= */

/* ---- Pretendard (variable) ---- */
@font-face {
  font-family: "Pretendard";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Variable"), local("Pretendard");
}

/* =========================================================================
   1. 디자인 토큰 — 프리미엄 팔레트로 교체
   ========================================================================= */
:root {
  /* -- Brand / accent (오렌지) -- */
  --color-brand:        #F97316;
  --color-brand-strong: #EA6A0C;
  --color-brand-soft:   #FF8C38;
  --color-brand-tint:   rgba(249, 115, 22, 0.12);
  --color-brand-line:   rgba(249, 115, 22, 0.45);

  /* -- Black base (블랙톤) -- */
  --color-bg:           #060607;
  --color-bg-2:         #0B0B0D;
  --color-surface:      #141416;
  --color-surface-2:    #1B1B1F;
  --color-surface-3:    #26262B;
  --color-hairline:     rgba(255, 255, 255, 0.09);
  --color-hairline-2:   rgba(255, 255, 255, 0.16);

  /* -- Text (밝은 톤 · 고대비) -- */
  --color-text:         #FBFBFC;
  --color-text-soft:    #DADCE1;
  --color-text-muted:   #A6AAB3;
  --color-text-faint:   #74777F;
  --color-on-brand:     #1A0E02;

  /* -- Feedback -- */
  --color-ok:           #34D399;
  --color-warn:         #FBBF24;

  /* -- Radii -- */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* -- Elevation -- */
  --shadow-1: 0 2px 10px rgba(0,0,0,.35);
  --shadow-2: 0 14px 40px rgba(0,0,0,.45);
  --glow-brand: 0 0 0 1px var(--color-brand-line), 0 18px 50px rgba(249,115,22,.22);

  /* -- Typography -- */
  --font-sans: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Segoe UI", Roboto, "Noto Sans KR", sans-serif;

  /* -- Rhythm -- */
  --wrap: 1140px;
  --gap: clamp(16px, 3vw, 28px);
  --section-y: clamp(56px, 8vw, 104px);
}

/* =========================================================================
   2. Reset / base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 450;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--color-text);
  background:
    radial-gradient(1100px 640px at 82% -10%, rgba(249,115,22,.09), transparent 62%),
    radial-gradient(760px 520px at 6% 2%, rgba(255,255,255,.04), transparent 60%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand-soft); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--color-brand); }
h1, h2, h3, h4 { line-height: 1.28; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; color: var(--color-text-soft); }
ul, ol { color: var(--color-text-soft); }
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; border-radius: 6px; }

/* =========================================================================
   3. Layout helpers
   ========================================================================= */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-brand-soft); margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 5vw, 52px); }
.section-head h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); }
.section-head p { color: var(--color-text-muted); font-size: 1.02rem; }
.lead { font-size: 1.08rem; color: var(--color-text-soft); }

/* =========================================================================
   4. 버튼 — 컴포넌트 오버레이
   ========================================================================= */
.btn {
  --_bg: var(--color-surface-2);
  --_fg: var(--color-text);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 13px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .98rem; letter-spacing: -0.01em;
  background: var(--_bg); color: var(--_fg);
  border: 1px solid var(--color-hairline-2);
  cursor: pointer; transition: transform .16s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--brand {
  --_fg: var(--color-on-brand);
  background: linear-gradient(180deg, var(--color-brand-soft), var(--color-brand));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(249,115,22,.34);
}
.btn--brand:hover { color: var(--color-on-brand); box-shadow: 0 16px 34px rgba(249,115,22,.46); filter: saturate(1.05); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { border-color: var(--color-brand-line); color: var(--color-brand-soft); }
.btn--lg { padding: 16px 30px; font-size: 1.04rem; }
.btn--block { display: flex; width: 100%; }

/* =========================================================================
   5. Header / nav
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--color-bg-2) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-hairline);
}
.site-header__inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.14rem; color: var(--color-text); letter-spacing: -0.02em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--color-brand-soft), var(--color-brand-strong));
  color: var(--color-on-brand); font-weight: 900; font-size: .92rem;
}
.brand:hover { color: var(--color-text); }
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav a { color: var(--color-text-soft); font-weight: 600; font-size: .93rem; padding: 8px 12px; border-radius: 10px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--color-text); background: var(--color-surface); }
.header-cta { margin-left: 6px; }
.nav-toggle { display: none; }

/* =========================================================================
   6. Hero
   ========================================================================= */
.hero {
  position: relative; padding-block: clamp(72px, 11vw, 148px); overflow: hidden;
  /* 히어로 배경 이미지: 아래 경로에 이미지를 넣으면 자동 적용됩니다. */
  --hero-image: url("/assets/img/hero.webp");
}
/* 배경 이미지 레이어 */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-image);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* 시인성 확보용 스크림(어두운 오버레이) — 어떤 이미지 위에서도 밝은 글씨가 읽히도록 */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.66) 46%, rgba(0,0,0,.32) 100%),
    linear-gradient(0deg, var(--color-bg) 2%, rgba(6,6,7,.15) 40%, rgba(6,6,7,.35) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1, .hero p { text-shadow: 0 2px 18px rgba(0,0,0,.55); }

/* 하위 페이지용 컴팩트 히어로 */
.hero--compact { padding-block: clamp(48px, 7vw, 88px); }
.hero--compact h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
.hero--compact .lead { color: var(--color-text-soft); }
.hero--compact + .breadcrumb, .breadcrumb + .hero--compact { margin-top: 0; }
.hero h1 { font-size: clamp(2rem, 5.2vw, 3.35rem); font-weight: 850; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--color-brand); }
.hero p { font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: var(--color-text-soft); max-width: 62ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; color: var(--color-text-muted); font-size: .92rem; }
.hero__meta strong { color: var(--color-text); font-weight: 700; }

/* =========================================================================
   7. Cards / grids
   ========================================================================= */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-2));
  border: 1px solid var(--color-hairline); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-1);
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--color-brand-line); box-shadow: var(--shadow-2); }
.card h3 { font-size: 1.16rem; }
.card p { font-size: .95rem; color: var(--color-text-muted); margin-bottom: 0; }
.card__tag { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--color-brand-soft); margin-bottom: 8px; }
.card__more { margin-top: auto; padding-top: 16px; font-weight: 700; font-size: .9rem; color: var(--color-brand-soft); }
.card__more::after { content: " →"; }
a.card { color: inherit; }
a.card:hover { color: inherit; }

/* Link list (내부링크 롱테일) */
.linklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.linklist li { position: relative; }
.linklist a {
  display: block; padding: 14px 18px; border-radius: var(--radius);
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  color: var(--color-text-soft); font-weight: 600; font-size: .96rem;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .16s ease;
}
.linklist a:hover { border-color: var(--color-brand-line); color: var(--color-text); transform: translateX(3px); background: var(--color-surface-2); }
.linklist a::before { content: "↗"; color: var(--color-brand-soft); margin-right: 10px; font-weight: 700; }

/* =========================================================================
   8. Pricing (요금표)
   ========================================================================= */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.price-card {
  position: relative; text-align: center; padding: 34px 26px;
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-2));
  border: 1px solid var(--color-hairline); border-radius: var(--radius-lg);
}
.price-card--featured { border-color: var(--color-brand-line); box-shadow: var(--glow-brand); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--color-brand-soft), var(--color-brand));
  color: var(--color-on-brand); font-weight: 800; font-size: .8rem;
  padding: 6px 16px; border-radius: var(--radius-pill);
}
.price-card__name { font-size: 1.16rem; font-weight: 800; }
.price-card__amt { font-size: clamp(2rem, 5vw, 2.7rem); font-weight: 850; letter-spacing: -0.03em; margin: 8px 0 2px; }
.price-card__amt small { font-size: .9rem; font-weight: 700; color: var(--color-text-muted); }
.price-card__time { color: var(--color-brand-soft); font-weight: 800; margin-bottom: 6px; }
.price-card__desc { color: var(--color-text-muted); font-size: .95rem; margin-bottom: 22px; }

/* =========================================================================
   9. Checklist (예약 전 확인)
   ========================================================================= */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius); padding: 16px 18px; color: var(--color-text-soft);
}
.checklist li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 900; font-size: .8rem;
  background: var(--color-brand-tint); color: var(--color-brand-soft);
}

/* =========================================================================
   10. FAQ (<details>)
   ========================================================================= */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--color-surface); border: 1px solid var(--color-hairline);
  border-radius: var(--radius); padding: 4px 20px; transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--color-brand-line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700;
  color: var(--color-text); display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-brand-soft); font-weight: 800; font-size: 1.3rem; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding-bottom: 18px; margin: 0; color: var(--color-text-muted); font-size: .97rem; }

/* =========================================================================
   11. Prose (지역 상세 본문)
   ========================================================================= */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.35rem, 3vw, 1.7rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.14rem; margin-top: 1.5em; color: var(--color-text); }
.prose p, .prose li { color: var(--color-text-soft); }
.prose ul { padding-left: 1.2em; display: grid; gap: 6px; }
.prose a { border-bottom: 1px solid var(--color-brand-line); }

/* Breadcrumb */
.breadcrumb { padding-block: 18px; font-size: .86rem; color: var(--color-text-muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--color-text-faint); }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-brand-soft); }

/* Notice / policy callout */
.notice {
  border: 1px solid var(--color-hairline-2); border-left: 3px solid var(--color-brand);
  background: var(--color-brand-tint); border-radius: var(--radius);
  padding: 18px 20px; color: var(--color-text-soft); font-size: .95rem;
}

/* =========================================================================
   12. Footer + 오렌지 문의 버튼 + 텔레그램
   ========================================================================= */
.site-footer {
  border-top: 1px solid var(--color-hairline);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.25));
  padding-block: clamp(48px, 7vw, 76px) 32px;
}
.footer-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  background: linear-gradient(140deg, var(--color-surface-2), var(--color-surface));
  border: 1px solid var(--color-hairline); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px); margin-bottom: 44px;
}
.footer-cta__copy h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 6px; }
.footer-cta__copy p { color: var(--color-text-muted); margin: 0; }
.footer-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; }
/* 오렌지 컬러 문의 버튼 */
.btn--inquiry {
  --_fg: var(--color-on-brand);
  background: linear-gradient(180deg, var(--color-brand-soft), var(--color-brand));
  border-color: transparent; box-shadow: 0 10px 24px rgba(249,115,22,.32);
}
.btn--inquiry:hover { color: var(--color-on-brand); box-shadow: 0 16px 34px rgba(249,115,22,.46); }
.btn--inquiry svg { width: 18px; height: 18px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--color-text-muted); font-size: .93rem; font-weight: 500; }
.footer-col a:hover { color: var(--color-brand-soft); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--color-text-muted); font-size: .92rem; }
.footer-biz { display: grid; gap: 6px; margin-top: 14px; font-size: .9rem; color: var(--color-text-muted); }
.footer-biz strong { color: var(--color-text-soft); font-weight: 700; }
.footer-biz .tel { color: var(--color-brand-soft); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--color-hairline);
  display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: space-between;
  color: var(--color-text-faint); font-size: .84rem;
}
.footer-bottom .disclaimer { max-width: 62ch; }

/* =========================================================================
   13. Utilities
   ========================================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: clamp(40px, 6vw, 72px); }
.badge-soft {
  display: inline-block; font-size: .78rem; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius-pill); background: var(--color-brand-tint);
  color: var(--color-brand-soft); border: 1px solid var(--color-brand-line);
}
.divider { height: 1px; background: var(--color-hairline); border: 0; margin: 0; }

/* =========================================================================
   14. Responsive nav
   ========================================================================= */
@media (max-width: 940px) {
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 12px 20px 20px;
    background: var(--color-bg-2); border-bottom: 1px solid var(--color-hairline); }
  .nav a { padding: 12px; border-radius: 10px; }
  .site-header__inner.open .nav { display: flex; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; width: 42px; height: 42px;
    align-items: center; justify-content: center; border-radius: 11px;
    background: var(--color-surface); border: 1px solid var(--color-hairline-2);
    color: var(--color-text); font-size: 1.2rem; cursor: pointer;
  }
  .header-cta { display: none; }
}

/* =========================================================================
   15. 모바일 전화 플로팅 버튼 (오렌지 · 애니메이션 · 터치 시 전화연결)
   ========================================================================= */
.call-fab {
  position: fixed; right: 18px; bottom: 20px; z-index: 60;
  display: none; align-items: center; gap: 8px;
  height: 58px; padding: 0 20px 0 16px; border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--color-brand-soft), var(--color-brand));
  color: var(--color-on-brand); font-weight: 800; font-size: 1rem; letter-spacing: -0.01em;
  box-shadow: 0 12px 28px rgba(249,115,22,.5);
  animation: fab-bob 1.8s ease-in-out infinite;
}
.call-fab:hover, .call-fab:active { color: var(--color-on-brand); }
.call-fab svg { width: 26px; height: 26px; animation: fab-ring 1s ease-in-out infinite; }
.call-fab__label { font-weight: 800; }
/* 펄스 링 */
.call-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-pill);
  box-shadow: 0 0 0 0 rgba(249,115,22,.5); animation: fab-pulse 1.8s ease-out infinite; z-index: -1;
}
@keyframes fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
  70%  { box-shadow: 0 0 0 20px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
@keyframes fab-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes fab-ring {
  0%,100% { transform: rotate(0); } 20% { transform: rotate(-14deg); }
  40% { transform: rotate(12deg); } 60% { transform: rotate(-8deg); } 80% { transform: rotate(6deg); }
}
/* 데스크톱은 헤더에 전화 버튼이 있으므로 모바일에서만 노출 */
@media (max-width: 940px) { .call-fab { display: inline-flex; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
