/* ==========================================================================
   TURN ON 턴온 — 보드게임카페 (DREXLY 템플릿)
   기준: TURNON_boardgame_cafe_AI_build_pack_v1 / 01-reference-pages/hq
   레이아웃·색 = 시안 실측값(1462px 캔버스 → 1440 뷰포트 환산 배율 1.0153)
   값(가격·인원·시간·지점) = 05-data/mock-data.json · 04-content/ui-copy.md
   시안의 오탈자(나애게·평임 요금·턴온 매스·오시는 질 …)는 정본 카피로 교정했다.
   ========================================================================== */

:root {
  /* 색 — 시안 픽셀 실측값. 03-specs 토큰(#161B2F 등)과 다르며 오너 결재로 시안을 따른다. */
  --navy: #051229;          /* 헤더·히어로·푸터 (토큰 #161B2F 아님) */
  --navy-2: #0b1a33;
  --navy-line: rgba(255, 255, 255, .10);
  --cream: #f9f6ef;         /* 본문 바탕 */
  --white: #fffefb;
  --lime: #d1ed63;          /* 주 행동색 */
  --lime-deep: #bcd94a;
  --coral: #fd5e4b;
  --cobalt: #4a5ae8;

  --text: #17203a;
  --text-2: #3d465e;
  --muted: #8a8f9e;
  --line: #e6e2d8;
  --line-2: #ddd8cc;

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          system-ui, "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;

  /* 치수 — 시안 실측 (css px @1440) */
  --container: 1293px;      /* 본문 컨테이너 (시안 실측 72~1364) */
  --container-head: 1342px; /* 헤더는 본문보다 넓다 (실측 49.2~1390.8) */
  --header-h: 104px;
  --radius-card: 18px;
  --radius-btn: 12px;
  --shadow-card: 0 6px 20px rgba(10, 20, 45, .05);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--navy); padding: 10px 16px; font-weight: 700; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

:where(a, button, input, select, [tabindex]):focus-visible {
  outline: 3px solid var(--cobalt); outline-offset: 3px; border-radius: 6px;
}

.wrap { width: var(--container); margin: 0 auto; }

/* ── 헤더 ────────────────────────────────────────────────────────────── */
.hdr {
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
  position: relative; z-index: 20;
}
.hdr-in {
  width: var(--container-head); margin: 0 auto; height: 100%;
  display: flex; align-items: center;
}
.brand { display: block; flex: none; }
.brand img { width: 214px; height: 58px; }

.nav { display: flex; align-items: center; gap: 52px; margin-left: 128px; }
.nav a {
  color: #fff; font-size: 22px; font-weight: 600; letter-spacing: -.02em;
  padding: 6px 0; position: relative; white-space: nowrap;
}
.nav a:hover { color: var(--lime); }
.nav a[aria-current="page"] { color: var(--lime); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--lime);
}

.hdr-end { margin-left: auto; display: flex; align-items: center; gap: 36px; }
.hdr-login { color: #fff; font-size: 20px; font-weight: 600; letter-spacing: -.02em; white-space: nowrap; }
.btn-book { white-space: nowrap;
  background: var(--lime); color: var(--navy);
  font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  height: 50px; padding: 0 26px; border: 0; border-radius: var(--radius-btn);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-book:hover { background: var(--lime-deep); }
.btn-book .chev { font-size: 15px; }

.navtoggle { display: none; }

/* ── 히어로 ──────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy); color: #fff;
  height: 680px;                 /* 시안 y104~784 */
  position: relative; overflow: hidden;
}
.hero-img {                      /* 시안에서 잘라낸 사진 — 곡선 경계까지 그림에 포함 */
  position: absolute; top: 0; left: 630px; width: 810px; height: 592px;
  object-fit: cover;
}
.hero-in { position: relative; z-index: 2; }
.hero h1 {
  margin: 0; padding-top: 96px;    /* 시안 텍스트 상단 y213 − 헤더 104 */
  font-size: 82px; line-height: 100px; font-weight: 800; letter-spacing: -.035em;
}
.hero h1 .on { color: var(--lime); }
.hero-desc {
  margin: 15px 0 0; font-size: 24px; line-height: 34px; font-weight: 500;
  color: rgba(255, 255, 255, .82); letter-spacing: -.02em;
}
.hero-cta { display: flex; gap: 22px; margin-top: 39px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 64px; padding: 0 30px; border-radius: var(--radius-btn);
  font-size: 19px; font-weight: 700; letter-spacing: -.02em; border: 0;
}
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-lime:hover { background: var(--lime-deep); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .45); }
.btn-ghost:hover { border-color: #fff; }

/* .hero-deco 폐지 — 히어로 사진에 같은 꽃·별이 이미 찍혀 있어 덧대면 두 겹으로 보인다 */

/* ── 빠른 게임 찾기 패널 ─────────────────────────────────────────────── */
.finder {
  position: relative; z-index: 5;
  margin-top: -104px;             /* 히어로 위로 겹침 (시안 y679.6) */
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: 0 10px 30px rgba(10, 20, 45, .06);
  padding: 24px 34px 20px;
}
/* 제목은 아래 선택칸의 왼쪽 시작선에 맞춘다(가운데 정렬이면 아래 칸과 어긋난다) */
.finder-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.finder-top h2 {
  margin: 0; font-size: 27px; font-weight: 800; letter-spacing: -.03em;
}
.btn-reco {
  flex: none;
  background: var(--coral); color: #fff; border: 0; border-radius: 999px;
  height: 46px; padding: 0 24px; font-size: 17px; font-weight: 700; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 9px;
}
.finder-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.field {
  position: relative; border: 1px solid var(--line-2); border-radius: 14px;
  background: var(--white); padding: 12px 18px 13px;
}
.field label { display: block; font-size: 14px; color: var(--muted); font-weight: 500; }
.field select {
  appearance: none; border: 0; background: transparent; padding: 0; margin-top: 3px;
  font-family: inherit; font-size: 19px; font-weight: 700; color: var(--text);
  letter-spacing: -.02em; width: 100%; cursor: pointer;
}
.field .caret {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-right: 2px solid #98a0b0; border-bottom: 2px solid #98a0b0;
  rotate: 45deg; margin-top: -4px; pointer-events: none;
}

/* ── 신뢰 지표 ───────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 49px; }
.stat { display: flex; align-items: center; gap: 18px; }
.stat img { width: 74px; height: 86px; object-fit: contain; flex: none; }
.stat b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.stat .lbl { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-top: 1px; }
.stat .sub { font-size: 15px; color: var(--muted); line-height: 1.35; margin-top: 4px; }

/* ── 섹션 제목 ───────────────────────────────────────────────────────── */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; }
.sec-head h2 { margin: 0; font-size: 29px; font-weight: 800; letter-spacing: -.035em; }
.more { font-size: 15.5px; font-weight: 600; color: var(--text-2); display: inline-flex; gap: 7px; align-items: center; }
.more:hover { color: var(--navy); }

/* ── 추천 게임 ───────────────────────────────────────────────────────── */
.sec-games { margin-top: 41px; }
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; position: relative; }
.game-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-2px); border-color: rgba(10, 20, 45, .28); }
.game-card { transition: transform .18s ease, border-color .18s ease; }
.game-card > img { width: 100%; height: 225px; object-fit: cover; }
.game-body { padding: 6px 18px 16px; }
.game-body h3 { margin: 0; font-size: 25px; line-height: 1.25; font-weight: 800; letter-spacing: -.03em; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.chip {
  background: #e4dece; border-radius: 8px; padding: 4px 11px;
  font-size: 15px; font-weight: 600; color: var(--text-2); letter-spacing: -.02em;
}
.game-body p { margin: 6px 0 0; font-size: 17px; line-height: 1.47; color: var(--text-2); letter-spacing: -.02em; }
.rail-next {
  position: absolute; right: -42px; top: 112px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-2); box-shadow: 0 4px 14px rgba(10, 20, 45, .10);
  display: grid; place-items: center; color: var(--text-2);
}

/* ── 누구와 함께 ─────────────────────────────────────────────────────── */
.sec-who { margin-top: 27px; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 15px; }
.who-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; text-align: center; box-shadow: var(--shadow-card);
}
.who-card img { width: 100%; height: 131px; object-fit: cover; }
.who-card h3 { margin: 12px 0 0; font-size: 26px; line-height: 1.25; font-weight: 800; letter-spacing: -.03em; }
.who-card p { margin: 8px 0 12px; font-size: 17px; color: var(--muted); letter-spacing: -.02em; }

/* ── 공간·룸 ─────────────────────────────────────────────────────────── */
.sec-space { margin-top: 51px; display: grid; grid-template-columns: 268px 1fr; gap: 0; }
.space-lead h2 { margin: 0; font-size: 29px; font-weight: 800; line-height: 1.32; letter-spacing: -.035em; }
.space-lead p { margin: 16px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.btn-out {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 24px;
  height: 44px; padding: 0 20px; border-radius: 10px;
  border: 1px solid var(--line-2); background: var(--white);
  font-size: 15.5px; font-weight: 700; letter-spacing: -.02em;
}
.btn-out:hover { border-color: rgba(10, 20, 45, .3); }
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.room-card { text-align: center; }
.room-card img { width: 100%; height: 176px; object-fit: cover; border-radius: 14px; }
.room-card h3 { margin: 8px 0 0; font-size: 20px; line-height: 1.3; font-weight: 800; letter-spacing: -.03em; }
.room-card p { margin: 4px 0 0; font-size: 17px; color: var(--muted); letter-spacing: -.02em; }

/* ── 요금 안내 ───────────────────────────────────────────────────────── */
.sec-price { margin-top: 46px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 31px; margin-top: 6px; }
.price-card {
  position: relative; border-radius: var(--radius-card); padding: 24px 34px 26px;
  background: var(--white); border: 1px solid var(--line); min-height: 242px; overflow: hidden;
}
.price-card.wd { border-color: #a9cf7c; background: #fbfdf7; }
.price-card.we { border-color: #99a5e6; background: #fafbff; }
/* 이름은 pack — 예약면의 .pk(패키지 선택 칩)와 겹치면
   그쪽 padding/border 를 뒤집어써서 세 번째 카드만 글자가 15px 밀린다. */
.price-card.pack { border-color: #f3a595; background: #fffbf9; }
.price-card h3 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.price-card.wd h3 { color: #5c9134; }
.price-card.we h3 { color: #4453c8; }
.price-card.pack h3 { color: #e2523c; }
.price-card .unit { margin: 12px 0 0; font-size: 15px; color: var(--text-2); }
.price-card .amt { margin: 6px 0 0; font-size: 44px; font-weight: 800; letter-spacing: -.04em; line-height: 1.1; }
.price-card .amt small { font-size: 19px; font-weight: 700; margin-left: 2px; }
/* 세 카드의 본문은 같은 높이에서 시작하고, 글자 왼쪽선도 같아야 한다.
   ✓ 는 왼쪽 여백에 걸어 두어(hanging) 본문 첫 글자가 .note 와 같은 x 에 선다. */
.price-card .note,
.price-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.price-card .note { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }
.price-card li { position: relative; font-size: 14.5px; color: var(--text-2); line-height: 1.7; }
.price-card li::before {
  content: "✓"; position: absolute; right: 100%; margin-right: 7px;
  color: var(--coral); font-weight: 800;
}

/* 삽화는 세 카드 모두 같은 상자·같은 여백에 앉힌다
   (종전: 166×166/145×135/180×130 에 위·아래 기준까지 제각각이라 높이가 안 맞았다) */
.price-ill {
  position: absolute; pointer-events: none;
  right: 14px; bottom: 18px; width: 152px; height: 142px;
  object-fit: contain; object-position: right bottom;
}
.price-foot { margin: 19px 0 0; line-height: 1.15; display: flex; gap: 30px; font-size: 14.5px; color: var(--muted); }

/* ── 메뉴 ────────────────────────────────────────────────────────────── */
.sec-menu { margin-top: 18px; }
.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 19px; margin-top: 16px; }
.menu-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.menu-card img { width: 100%; height: 140px; object-fit: cover; }
.menu-card h3 { margin: 11px 16px 0; font-size: 17px; font-weight: 700; letter-spacing: -.03em; }
.menu-card .won { margin: 6px 16px 13px; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }

/* ── 첫 방문 가이드 ──────────────────────────────────────────────────── */
.sec-guide {
  margin-top: 59px; border: 1px solid var(--line); border-radius: 20px;
  background: var(--white); padding: 18px 30px 2px; position: relative;
}
.sec-guide > h2 {
  margin: 0; font-size: 24px; line-height: 1.2; font-weight: 800; letter-spacing: -.03em;
  display: inline-block; background: var(--white); padding-right: 16px;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 22px; position: relative; }
.step { text-align: center; position: relative; }
.step-ico {
  width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto;
}
.step-ico img { width: 60px; height: 68px; object-fit: contain; }
.step .no { margin-top: 10px; font-size: 13px; line-height: 1.2; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.step h3 { margin: 5px 0 0; font-size: 21px; line-height: 1.25; font-weight: 800; letter-spacing: -.03em; }
.step p { margin: 6px 0 0; font-size: 14.5px; line-height: 1.3; color: var(--muted); letter-spacing: -.02em; }
.step + .step::before {
  content: ""; position: absolute; left: -12px; top: 30px;
  width: 12px; height: 12px; border-right: 2px solid #c9c4b6; border-bottom: 2px solid #c9c4b6; rotate: -45deg;
}

/* ── 이벤트 배너 ─────────────────────────────────────────────────────── */
.banner {
  margin-top: 33px; background: var(--navy); border-radius: 20px; color: #fff;
  height: 168px; display: flex; align-items: center; justify-content: center; gap: 56px;
  position: relative; overflow: hidden;
}
.banner img { position: absolute; }
.banner img.gift { left: 12px; bottom: 0; width: 125px; height: 131px; }
.banner img.party { right: 26px; top: 4px; width: 136px; height: 136px; }
.banner-txt { text-align: center; }
.banner-txt h2 { margin: 0; font-size: 27px; font-weight: 800; letter-spacing: -.035em; }
.banner-txt p { margin: 10px 0 0; font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, .8); letter-spacing: -.02em; }

/* ── 후기 ────────────────────────────────────────────────────────────── */
.sec-review { margin-top: 40px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 16px; }
.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 17px 24px 11px; box-shadow: var(--shadow-card);
}
.review-top { display: flex; align-items: center; gap: 12px; }
.review-top img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-top b { font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.stars { margin-left: auto; color: #f5a623; font-size: 15px; letter-spacing: 1px; }
.review-card p { margin: 10px 0 0; font-size: 16.5px; line-height: 1.45; color: var(--text-2); letter-spacing: -.02em; }
.review-tag {
  display: inline-block; margin-top: 9px; background: #f2efe6; border-radius: 8px;
  padding: 4px 11px; font-size: 13.5px; color: var(--muted); letter-spacing: -.02em;
}

/* ── 오시는 길 · FAQ ─────────────────────────────────────────────────── */
.sec-visit { margin-top: 39px; display: grid; grid-template-columns: 819px 1fr; gap: 34px; }
.visit-card, .faq-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 16px 24px 14px; box-shadow: var(--shadow-card);
}
.visit-card { display: grid; grid-template-columns: 287px 1fr; gap: 28px; align-content: start; }
.visit-card h2 { margin: 0; font-size: 22px; line-height: 1.25; font-weight: 800; letter-spacing: -.035em; }
.visit-card h3 { margin: 9px 0 0; font-size: 18px; line-height: 1.35; font-weight: 700; letter-spacing: -.02em; }
.visit-card address { font-style: normal; margin-top: 6px; font-size: 15px; line-height: 1.45; color: var(--text-2); }
.visit-card .hours { margin: 7px 0 0; font-size: 15px; line-height: 1.4; }
.visit-card .hours b { font-weight: 700; }
.visit-card .tel { margin: 5px 0 0; line-height: 1.3; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.visit-btns { display: flex; gap: 12px; margin-top: 10px; }
.visit-btns .btn-out { margin-top: 0; height: 38px; padding: 0 18px; font-size: 15.5px; }
.visit-map { width: 100%; height: 263px; object-fit: cover; border-radius: 12px; }

.faq-card .sec-head { margin-bottom: 14px; }
.faq-card h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.035em; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-top: 7px; background: var(--white); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 10px 18px;
  font-size: 16px; font-weight: 600; letter-spacing: -.02em;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 10px; height: 10px; flex: none;
  border-right: 2px solid #98a0b0; border-bottom: 2px solid #98a0b0; rotate: 45deg; margin-top: -4px;
  transition: rotate .18s ease;
}
.faq-item[open] summary::after { rotate: -135deg; margin-top: 2px; }
.faq-item p { margin: 0; padding: 0 18px 16px; font-size: 14.5px; line-height: 1.7; color: var(--text-2); }

/* ── 최종 CTA · 푸터 ─────────────────────────────────────────────────── */
.cta {
  margin-top: 15px; background: var(--navy); border-radius: 20px 20px 0 0; color: #fff;
  height: 129px; display: flex; align-items: center; justify-content: center; gap: 44px;
  position: relative; overflow: hidden;
}
.cta-txt { text-align: center; }
.cta-txt h2 { margin: 0; font-size: 32px; font-weight: 800; letter-spacing: -.035em; }
.cta-txt p { margin: 8px 0 0; font-size: 16.5px; color: rgba(255, 255, 255, .72); letter-spacing: -.02em; }
.cta .btn-lime { height: 58px; font-size: 21px; padding: 0 34px; }
.cta-deco { position: absolute; pointer-events: none; }
.cta-deco.pawn { left: 54px; top: 18px; width: 101px; height: 115px; }
.cta-deco.shard { left: 1132px; top: 29px; width: 124px; height: 103px; }

.ftr { background: var(--navy); color: rgba(255, 255, 255, .72); padding: 16px 0 4px; }
.ftr-in { display: grid; grid-template-columns: 258px 186px 187px 197px 1fr; gap: 30px; }
.ftr-brand img { width: 196px; height: 53px; }
.ftr-brand p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.35; }
.socials { display: flex; gap: 12px; margin-top: 12px; }
.socials a {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3);
  display: grid; place-items: center;
}
.socials a:hover { border-color: var(--lime); color: var(--lime); }
.socials svg { width: 15px; height: 15px; }
.ftr h3 { margin: 2px 0 9px; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.ftr ul { margin: 0; padding: 0; list-style: none; }
.ftr li { font-size: 13.5px; line-height: 1.72; }
.ftr li a:hover { color: var(--lime); }
.ftr-branch p { margin: 0; font-size: 13.5px; line-height: 1.72; }
.ftr-branch .biz { margin-top: 10px; font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,.42); }

.ftr-legal p { margin: 0; line-height: 1.2; }
.ftr-legal {
  width: var(--container); margin: 8px auto 0; padding-top: 7px;
  border-top: 1px solid var(--navy-line);
  display: flex; justify-content: flex-end; gap: 20px;
  font-size: 12.5px; color: rgba(255, 255, 255, .5); line-height: 1.4;
}

/* ── 반응형 (KWCAG: 가로 오버플로 금지 · 터치 44px) ───────────────────── */
@media (max-width: 1360px) {
  :root { --container: calc(100vw - 48px); --container-head: calc(100vw - 48px); }
  /* 1024~1360 좁은 데스크톱: 원치수(로고 214·글자 22·간격 52)로는 1263px 밑에서
     메뉴가 두 줄로 쪼개진다 — 전 항목 한 줄 고정 + 치수 압축으로 1024까지 수용 */
  .brand img { width: 178px; height: 48px; }
  .nav { gap: 30px; margin-left: 48px; }
  .nav a { font-size: 17px; }
  .hdr-end { gap: 20px; }
  .hdr-login { font-size: 16px; }
  .btn-book { white-space: nowrap; font-size: 15px; height: 44px; padding: 0 18px; }
  .hero-img { left: auto; right: -60px; }
  .rail-next { right: -8px; }
  .sec-visit { grid-template-columns: 1.85fr 1fr; }
  .visit-card { grid-template-columns: minmax(220px, 287px) 1fr; }
  .cta-deco { display: none; }
  .ftr-in { grid-template-columns: 258px repeat(3, minmax(120px, 1fr)) minmax(200px, 1.3fr); }
}

@media (max-width: 1023px) {
  .nav, .hdr-login { display: none; }
  /* 자리예약 단추가 nowrap 이 된 만큼, 좁은 화면에선 로고·단추를 줄여 한 줄에 담는다
     (종전엔 단추 글자가 두 줄로 접혀서 '들어가던' 것 — 그 자체가 결함이었다) */
  .brand img { width: 150px; height: 40px; }
  .btn-book { height: 38px; padding: 0 12px; font-size: 13.5px; gap: 6px; }
  /* 마이페이지 상단의 종·계정 칩은 좁은 화면에선 접는다 — 안 그러면 자리예약이 밀려난다.
     알림·계정 정보는 본문(알림 설정·계정 구획)에 그대로 있다. */
  .page-mypage .bell, .page-mypage .whoami { display: none; }
  .navtoggle {
    display: grid; place-items: center; margin-left: auto; margin-right: 14px;
    width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px; color: #fff;
  }
  .hdr-end { margin-left: 0; }
  .hero { height: auto; padding-bottom: 92px; }
  .hero-img { position: static; width: 100%; height: 300px; margin-top: 28px; }
  .hero h1 { font-size: 46px; line-height: 58px; padding-top: 56px; }
  .hero-deco { display: none; }
  .finder-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .game-grid, .who-grid, .room-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid, .review-grid, .steps { grid-template-columns: 1fr; gap: 18px; }
  .step + .step::before { display: none; }
  .sec-space, .visit-card, .sec-visit { grid-template-columns: 1fr; gap: 24px; }
  .rail-next { display: none; }
  .visit-btns .btn-out { height: 44px; }
  .banner, .cta { height: auto; padding: 28px 20px; flex-direction: column; gap: 20px; }
  .banner img { display: none; }
  .ftr-in { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 38px; line-height: 48px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  .finder-top { flex-direction: column; gap: 14px; }
  .btn-reco { position: static; transform: none; width: 100%; justify-content: center; }
  .finder-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .game-grid, .who-grid, .room-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ftr-in { grid-template-columns: 1fr; }
  .ftr-legal { flex-direction: column; }
  /* 모바일 하단 고정 예약 CTA */
  .mobile-book {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--navy); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-book .btn { height: 52px; }
  body { padding-bottom: 76px; }
}
.mobile-book { display: none; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .game-card:hover { transform: none; }
}

/* ==========================================================================
   게임 찾기 /games — 시안 turnon-page-game-library.jpg (1674px, 배율 1.1625)
   공용 셸(헤더 104)이 시안 헤더(css 87)보다 17px 높아 본문 기준선을 +17 보정했다.
   ========================================================================== */

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* 페이지 히어로 (크림 바탕) */
.phero { background: var(--cream); }
.phero-in { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 361px; }
.phero h1 { margin: 0; padding-top: 74px; font-size: 47px; line-height: 68px; font-weight: 800; letter-spacing: -.04em; }
.phero p { margin: 32px 0 0; font-size: 17px; line-height: 30px; color: var(--text-2); letter-spacing: -.02em; }
.phero-props { width: 644px; height: 280px; object-fit: contain; margin-top: 18px; }

/* 필터 패널 */
.filters {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 24px 32px; margin-top: 0; box-shadow: var(--shadow-card);
}
.filter-top { display: grid; grid-template-columns: 1fr 296px; gap: 24px; }
.search { position: relative; display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 14px; background: var(--white); padding: 0 18px; height: 56px; }
.search svg { width: 21px; height: 21px; flex: none; fill: none; stroke: #6f7688; stroke-width: 2; stroke-linecap: round; }
.search input { border: 0; outline: 0; background: transparent; font: inherit; font-size: 17px; letter-spacing: -.02em; margin-left: 12px; width: 100%; }
.search input::placeholder { color: #9aa0ae; }
.field.branch { display: flex; align-items: center; gap: 10px; height: 56px; padding: 0 18px; }
.field.branch .pin { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--navy); stroke-width: 1.9; }
.field.branch select { font-size: 17px; margin-top: 0; }
.filter-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 26px; }
.chip-row { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.qchip {
  border: 1px solid var(--line-2); background: var(--white); border-radius: 999px;
  height: 40px; padding: 0 20px; font-size: 15.5px; font-weight: 600; letter-spacing: -.02em; color: var(--text-2);
}
.qchip:hover, .qchip[aria-pressed="true"] { background: var(--lime); border-color: var(--lime); color: var(--navy); }
.reset { margin-left: auto; border: 0; background: transparent; display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 600; color: var(--text-2); }
.reset svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* 결과 머리 */
.results-head { display: flex; align-items: center; justify-content: space-between; margin-top: 67px; }
.results-head h2 { margin: 0; font-size: 24px; font-weight: 700; letter-spacing: -.03em; }
.results-head h2 b { font-weight: 800; }
.sortbox { position: relative; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-2); background: var(--white); border-radius: 12px; height: 44px; padding: 0 40px 0 16px; }
.sortbox label { font-size: 14.5px; color: var(--muted); }
.sortbox select { appearance: none; border: 0; background: transparent; font: inherit; font-size: 15.5px; font-weight: 700; letter-spacing: -.02em; }
.sortbox .caret { right: 16px; }

/* 결과 격자 + 비교 레일 */
.results { display: grid; grid-template-columns: 1124px 189px; gap: 19px; width: 1332px; margin-top: 11px; align-items: start; }
.gcard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 21px; }
.gcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding-bottom: 6px; height: 354px;
  display: flex; flex-direction: column; transition: transform .18s ease, border-color .18s ease;
}
.gcard:hover { transform: translateY(-2px); border-color: rgba(10, 20, 45, .28); }
.gcover { position: relative; }
.gcover img { width: 100%; height: 192px; object-fit: cover; border-radius: 17px 17px 0 0; }
.badge { position: absolute; left: 12px; top: 12px; background: var(--cobalt); color: #fff; border-radius: 8px; padding: 4px 11px; font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.fav {
  position: absolute; right: 11px; top: 11px; width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, .92); display: grid; place-items: center;
}
.fav svg { width: 19px; height: 19px; fill: none; stroke: var(--navy); stroke-width: 1.9; }
.fav[aria-pressed="true"] svg { fill: var(--coral); stroke: var(--coral); }
.gcard h3 { margin: 10px 20px 0; font-size: 21px; line-height: 1.15; font-weight: 800; letter-spacing: -.035em; }
.gcard .spec { margin: 8px 20px 0; font-size: 16px; line-height: 1.15; color: var(--text-2); letter-spacing: -.03em; display: flex; align-items: center; gap: 11px; }
.stars { color: #f5a623; font-size: 13px; letter-spacing: .5px; }
.stars[style*="--r"] {
  background: linear-gradient(90deg, #f5a623 calc(var(--r) * 20%), #d8d4c8 calc(var(--r) * 20%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stars.s2 { background: linear-gradient(90deg, #f5a623 40%, #d8d4c8 40%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gcard .genre { margin: 7px 20px 0; font-size: 15.5px; line-height: 1.15; color: var(--muted); letter-spacing: -.03em; }
.gcard .branches { margin: 7px 20px 0; font-size: 14px; line-height: 1.15; color: var(--muted); letter-spacing: -.05em; }
.gcard .branches b { color: var(--text); font-weight: 700; }
.gcard .detail {
  margin: auto 20px 6px; border-top: 1px solid var(--line); padding-top: 9px;
  text-align: center; font-size: 15.5px; line-height: 1.15; font-weight: 600; color: var(--text-2);
}
.gcard .detail:hover { color: var(--navy); }

.compare {
  position: sticky; top: 20px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: 18px;
  padding: 16px 16px 18px; box-shadow: 0 8px 26px rgba(10, 20, 45, .08);
}
.cmp-head { display: flex; align-items: center; gap: 8px; }
.cmp-head h2 { margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.cmp-head h2 b { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 12.5px; margin-left: 4px; vertical-align: middle; }
.cmp-close { margin-left: auto; border: 0; background: transparent; color: var(--muted); font-size: 15px; }
.cmp-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 13px; }
.cmp-list li { display: grid; grid-template-columns: 54px 1fr; gap: 11px; align-items: center; }
.cmp-list img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; }
.cmp-list b { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: -.03em; }
.cmp-list span { display: block; font-size: 12px; color: var(--muted); line-height: 1.5; }
.cmp-list .stars { font-size: 11px; }
.cmp-empty {
  margin-top: 14px; border: 1px dashed var(--line-2); border-radius: 12px;
  padding: 14px 8px; text-align: center; color: var(--muted);
}
.cmp-empty span { display: block; font-size: 22px; line-height: 1; color: #b9bdc9; }
.cmp-empty p { margin: 8px 0 0; font-size: 12.5px; line-height: 1.5; }
.cmp-go { width: 100%; height: 44px; margin-top: 14px; font-size: 15.5px; }

/* 페이지네이션 */
.pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 42px; }
.pager a {
  min-width: 36px; height: 36px; padding: 0 10px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--text-2);
}
.pager a:hover { background: #efece2; }
.pager a[aria-current="page"] { background: var(--lime); color: var(--navy); font-weight: 800; }
.pager .pg-arrow { color: var(--muted); }

/* 입문자 추천 배너 */
.best {
  position: relative; margin-top: 36px; background: #f7f2d8; border-radius: 20px;
  padding: 16px 30px 17px; display: grid; grid-template-columns: 232px 1fr; gap: 28px; align-items: center;
}
.best-lead h2 { margin: 0; font-size: 19px; line-height: 1.5; font-weight: 800; letter-spacing: -.03em; }
.best-lead .btn-out { margin-top: 16px; height: 38px; padding: 0 16px; font-size: 14.5px; background: rgba(255,255,255,.7); }
.best-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.best-list img { width: 100%; height: 118px; object-fit: cover; border-radius: 12px; }
.best-list b { display: block; margin-top: 11px; font-size: 15.5px; font-weight: 800; letter-spacing: -.03em; }
.best-list span { display: block; margin-top: 5px; font-size: 13.5px; color: var(--text-2); }
.best-next {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--line-2); box-shadow: 0 4px 14px rgba(10, 20, 45, .10);
  display: grid; place-items: center; color: var(--text-2);
}

/* FAQ 2열 */
.faq2 { margin-top: 34px; }
.faq2 h2 { margin: 0 0 12px; font-size: 22px; font-weight: 800; letter-spacing: -.035em; }
.faq2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 34px; }

/* 게임찾기 CTA */
.cta-games { margin-top: 37px; height: 139px; }
.page-games .cta { margin-bottom: 11px; }
.cta-games .cta-deco.left { left: 26px; top: 0; width: 231px; height: 153px; }
.cta-games .cta-deco.right { left: auto; right: 44px; top: 12px; width: 161px; height: 115px; }

@media (max-width: 1360px) {
  .results { width: 100%; grid-template-columns: 1fr 189px; }
  .gcard-grid { grid-template-columns: repeat(3, 1fr); }
  .phero-props { width: 44vw; }
}
@media (max-width: 1023px) {
  .phero-in { grid-template-columns: 1fr; }
  .phero h1 { font-size: 34px; line-height: 48px; padding-top: 44px; }
  .phero-props { width: 100%; height: 200px; }
  .filter-top { grid-template-columns: 1fr; }
  .filter-row { grid-template-columns: repeat(2, 1fr); }
  .results { grid-template-columns: 1fr; }
  .gcard-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { position: static; }
  .best { grid-template-columns: 1fr; }
  .best-list { grid-template-columns: repeat(2, 1fr); }
  .best-next { display: none; }
  .faq2-grid { grid-template-columns: 1fr; }
  .cta-games .cta-deco { display: none; }
}
@media (max-width: 767px) {
  .chip-row { flex-wrap: wrap; }
  .reset { margin-left: 0; }
  .gcard { height: auto; }
}

/* FAQ 2열 — 시안은 항목 간격이 촘촘하다 */
.faq2 .faq-item { margin-top: 0; }
.faq2 .faq-item summary { padding: 5px 16px; font-size: 16.5px; line-height: 1.3; }
.faq2 .faq-item p { padding: 0 16px 12px; font-size: 14px; }

/* ==========================================================================
   게임 상세 /game — 시안 turnon-page-game-detail.jpg (1618px, 배율 1.1236)
   공용 셸 헤더 104가 시안(css 94)보다 10px 높아 본문 기준선 +10 보정.
   ※ 시안의 비슷한 게임 4종은 실존 보드게임 상표(셜록 홈즈 컨설팅·미스터리 하우스)라
     패키지 규칙 5(실제 게임명 금지)에 따라 가상 이름으로 교체했다.
   ========================================================================== */

.ghero { background: var(--navy); color: #fff; padding-bottom: 42px; }
.crumb { padding-top: 18px; font-size: 14px; color: rgba(255, 255, 255, .58); letter-spacing: -.02em; }
.crumb a:hover { color: var(--lime); }
.crumb b { color: rgba(255, 255, 255, .9); font-weight: 600; }
.crumb span { margin: 0 6px; }
.ghero-in { display: grid; grid-template-columns: 668px 1fr; gap: 42px; align-items: start; margin-top: 14px; }
.boxart { width: 668px; height: 640px; object-fit: contain; }
.ginfo { padding-top: 18px; }
.ginfo h1 { margin: 0; font-size: 66px; line-height: 1.1; font-weight: 800; letter-spacing: -.04em; }
.gchips { display: flex; gap: 10px; margin-top: 20px; }
.gchips span { border: 1px solid rgba(255, 255, 255, .34); border-radius: 999px; padding: 6px 16px; font-size: 15.3px; font-weight: 600; }
.gmeta { list-style: none; display: flex; align-items: center; gap: 0; margin: 24px 0 0; padding: 0; flex-wrap: wrap; }
.gmeta li { display: inline-flex; align-items: center; gap: 7px; font-size: 15.5px; color: rgba(255, 255, 255, .84); letter-spacing: -.02em; padding: 0 15px; border-right: 1px solid rgba(255, 255, 255, .2); }
.gmeta li:first-child { padding-left: 0; }
.gmeta li:last-child { border-right: 0; }
.gmeta svg { width: 18px; height: 18px; fill: none; stroke: rgba(255, 255, 255, .75); stroke-width: 1.7; stroke-linecap: round; }
.gmeta .st { color: #f5a623; font-size: 17px; }
.gmeta b { font-weight: 800; font-size: 17px; color: #fff; }
.gmeta em { font-style: normal; color: rgba(255, 255, 255, .6); font-size: 14px; }
.gcta { display: flex; gap: 16px; margin-top: 28px; }
.gcta .btn { height: 56px; font-size: 17px; }
.gcta .hrt { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.stockcard { background: var(--white); color: var(--text); border-radius: 16px; padding: 20px 24px 8px; margin-top: 32px; }
.sc-head { display: flex; align-items: center; gap: 12px; }
.sc-head h2 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.pill { background: var(--lime); color: var(--navy); border-radius: 999px; padding: 4px 13px; font-size: 13.5px; font-weight: 700; }
.stockcard dl { margin: 6px 0 0; }
.stockcard dl > div { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
.stockcard dl > div:last-child { border-bottom: 0; }
.stockcard dt { font-size: 15px; color: var(--text-2); }
.stockcard dd { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.stockcard .ask { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text-2); }
.stockcard .ask svg { width: 17px; height: 17px; fill: none; stroke: var(--text-2); stroke-width: 1.7; }

/* 이 게임은요 */
.about { margin-top: 35px; }
.about h2, .recommend h2, .parts h2, .stock > h2 { margin: 0; font-size: 25px; line-height: 1.15; font-weight: 800; letter-spacing: -.035em; }
.about p { margin: 19px 0 0; font-size: 16px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.about .lead { margin-top: 16px; color: var(--text); font-weight: 600; }
.metabox {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
}
.metabox li { display: flex; align-items: center; gap: 13px; padding: 25px 18px; border-right: 1px solid var(--line); }
.metabox li:last-child { border-right: 0; }
.metabox svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; }
.metabox span { display: block; font-size: 13.5px; color: var(--muted); }
.metabox b { display: block; margin-top: 3px; font-size: 16.5px; font-weight: 700; letter-spacing: -.03em; }

/* 이런 분께 추천해요 */
.recommend { margin-top: 37px; }
.rec-grid { list-style: none; margin: 11px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 31px; }
.rec-grid li { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.rec-grid img { width: 100%; height: 186px; object-fit: cover; }
.rec-grid p { margin: 0; padding: 13px 12px 15px; text-align: center; font-size: 15.5px; line-height: 1.4; font-weight: 600; letter-spacing: -.03em; }

/* 구성품 */
.parts { margin-top: 65px; }
.part-grid { list-style: none; margin: 11px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.part-grid li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.part-grid img { width: 100%; height: 184px; object-fit: cover; }
.part-grid p { margin: 0; padding: 15px 8px 17px; text-align: center; font-size: 14.5px; font-weight: 600; letter-spacing: -.03em; }

/* 게임 방법 · 영상 */
.howto { display: grid; grid-template-columns: 747px 1fr; gap: 34px; margin-top: 60px; align-items: start; }
.steps-box, .video-box { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 17px 22px 18px; }
.steps-box h2, .video-box h2, .pl-box h2, .similar h2, .greviews h2 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.035em; }
.gsteps { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gsteps li { text-align: center; position: relative; }
.gsteps li + li::before { content: ""; position: absolute; left: -8px; top: 44px; width: 10px; height: 10px; border-right: 2px solid #c9c4b6; border-bottom: 2px solid #c9c4b6; rotate: -45deg; }
.gsteps .ico { width: 84px; height: 84px; margin: 0 auto; border-radius: 50%; background: #f1eee6; display: grid; place-items: center; }
.gsteps .ico img { width: 64px; height: 64px; object-fit: contain; }
.gsteps span { display: block; margin-top: 11px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.gsteps b { display: block; margin-top: 5px; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.gsteps p { margin: 7px 0 0; font-size: 13px; line-height: 1.5; color: var(--muted); letter-spacing: -.02em; }
.vthumb { position: relative; margin-top: 14px; }
.vthumb img { width: 100%; height: 173px; object-fit: cover; border-radius: 12px; }
.play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .93);
  display: grid; place-items: center;
}
.play svg { width: 26px; height: 26px; fill: var(--navy); }
.vfoot { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; }
.vfoot span { font-size: 14.5px; color: var(--text-2); letter-spacing: -.02em; }
.vfoot .btn-out { margin-top: 0; height: 40px; background: var(--navy); color: #fff; border-color: var(--navy); font-size: 14.5px; }
.vfoot .pl { width: 15px; height: 15px; fill: currentColor; }
.vnote { margin: 8px 0 0; font-size: 12px; color: var(--muted); }

/* 인원별 추천 · 비슷한 게임 */
.players { display: grid; grid-template-columns: 555px 1fr; gap: 36px; margin-top: 61px; align-items: start; }
.pl-grid { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pl-grid li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 14px 10px 16px; text-align: center; }
.pl-grid b { display: block; font-size: 16px; font-weight: 800; color: var(--cobalt); letter-spacing: -.03em; }
.pl-grid b.alt { color: var(--coral); }
.pl-grid img { width: 100%; height: 86px; object-fit: contain; margin-top: 10px; }
.pl-grid p { margin: 12px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--text-2); letter-spacing: -.02em; }
.similar { position: relative; }
.sim-grid { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.sim-grid li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.sim-grid img { width: 100%; height: 148px; object-fit: cover; }
.sim-grid b { display: block; margin: 12px 12px 0; font-size: 15.5px; font-weight: 800; letter-spacing: -.035em; }
.sim-grid span { display: block; margin: 5px 12px 0; font-size: 12.5px; color: var(--muted); letter-spacing: -.02em; }
.sim-grid li span:last-child { margin-bottom: 14px; }
.sim-next {
  position: absolute; right: -18px; bottom: 84px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-2); box-shadow: 0 4px 14px rgba(10, 20, 45, .1);
  display: grid; place-items: center; color: var(--text-2);
}

/* 플레이어 후기 */
.greviews { margin-top: 50px; }
.greviews .review-grid { gap: 30px; margin-top: 12px; }

/* 지점별 보유 현황 */
.stock { margin-top: 33px; }
.stock-in { display: grid; grid-template-columns: 1fr 348px; gap: 36px; margin-top: 13px; align-items: start; }
.stock-tbl { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.stock-tbl th, .stock-tbl td { padding: 6px 18px; font-size: 15px; text-align: center; letter-spacing: -.02em; }
.stock-tbl thead th { background: #f3f0e7; font-weight: 700; color: var(--text-2); font-size: 14.5px; }
.stock-tbl tbody th { font-weight: 700; text-align: center; }
.stock-tbl tbody tr { border-top: 1px solid var(--line); }
.stock-tbl .ok { color: #3f8a2e; font-weight: 700; }
.stock-tbl .no { color: var(--coral); font-weight: 700; }
.stock-help { border: 1px solid var(--cobalt); border-radius: 16px; padding: 22px 24px 24px; background: var(--white); }
.stock-help h3 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.035em; }
.stock-help p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.askbtn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 18px;
  height: 46px; border: 1px solid var(--line-2); background: var(--white); border-radius: 10px;
  font-size: 15px; font-weight: 600; color: var(--text-2);
}
.askbtn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.cta-game { margin-top: 28px; height: 140px; }
.cta-game .cta-deco.left { left: 30px; top: 0; width: 112px; height: 125px; }
.cta-game .cta-deco.right { left: auto; right: 56px; top: 12px; width: 125px; height: 107px; }
.page-game .cta { margin-bottom: 12px; }

@media (max-width: 1360px) {
  .ghero-in, .howto, .players, .stock-in { grid-template-columns: 1fr; }
  .boxart { width: 100%; height: auto; }
  .cta-game .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .ginfo h1 { font-size: 34px; }
  .metabox { grid-template-columns: repeat(2, 1fr); }
  .metabox li { border-right: 0; border-bottom: 1px solid var(--line); }
  .rec-grid, .part-grid, .sim-grid { grid-template-columns: repeat(2, 1fr); }
  .gsteps { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .gsteps li + li::before { display: none; }
  .greviews .review-grid { grid-template-columns: 1fr; }
  .stock-tbl { display: block; overflow-x: auto; }
  .sim-next { display: none; }
}
@media (max-width: 767px) {
  .gmeta li { border-right: 0; padding: 0 12px 0 0; }
  .gcta { flex-direction: column; }
  .pl-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   공간·룸 /spaces — 시안 turnon-page-spaces.jpg (1448px, 배율 1.0056)
   ※ 시안 「제한 없음」·「요금(1시간)」은 mock-data(오픈 테이블 2–8명, 룸 부가요금
     0 / 6,000 / 12,000 / 0)와 어긋나 데이터 기준으로 고쳤다.
   ========================================================================== */

.btn-cobalt { background: var(--cobalt); color: #fff; }
.btn-cobalt:hover { background: #3d4bd6; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #ec4a37; }
.tag { border-radius: 999px; padding: 3px 12px; font-size: 13.5px; font-weight: 700; display: inline-block; }
.tag.ok { background: #eaf6e2; color: #3f8a2e; }
.tag.info { background: #e9ecfd; color: #4453c8; }
.tag.warn { background: #fdeae6; color: #d9472f; }

/* 히어로 */
.shero { position: relative; background: var(--navy); color: #fff; height: 514px; overflow: hidden; }
.shero-img { position: absolute; right: 0; top: 0; width: 793px; height: 514px; object-fit: cover; }
.shero-in { position: relative; z-index: 2; }
.shero h1 { margin: 0; padding-top: 44px; font-size: 44px; line-height: 62px; font-weight: 800; letter-spacing: -.04em; }
.shero h1 .on { color: var(--lime); }
.shero p { margin: 26px 0 0; font-size: 17px; line-height: 30px; color: rgba(255, 255, 255, .82); letter-spacing: -.02em; }
.sbadges { list-style: none; display: flex; gap: 26px; margin: 34px 0 0; padding: 0; }
.sbadges li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, .8); letter-spacing: -.02em; }
.sbadges svg { width: 26px; height: 26px; padding: 4px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); fill: none; stroke: rgba(255, 255, 255, .8); stroke-width: 1.6; }

/* 타입 탭 */
.rtabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 34px; }
.rtabs a {
  height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); background: var(--white); border-radius: 999px;
  font-size: 16px; font-weight: 700; letter-spacing: -.03em; color: var(--text-2);
}
.rtabs a:hover { border-color: rgba(10, 20, 45, .3); }
.rtabs a[aria-current="page"] { background: var(--lime); border-color: var(--lime); color: var(--navy); }

/* 룸 카드 */
.roomcard {
  display: grid; grid-template-columns: 717px 1fr; gap: 40px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 18px; margin-top: 31px; box-shadow: var(--shadow-card);
}
.roomcard.flip { grid-template-columns: 1fr 717px; }
.roomcard.flip img { order: 2; }
.roomcard.flip .rc-body { order: 1; }
.roomcard img { width: 100%; height: 431px; object-fit: cover; border-radius: 14px; }
.rc-body { padding-right: 18px; }
.rc-body h2 { margin: 0; font-size: 27px; font-weight: 800; letter-spacing: -.04em; }
.rc-body h2 em { font-style: normal; font-size: 21px; font-weight: 700; color: var(--text-2); margin-left: 6px; }
.rc-body > p { margin: 14px 0 0; font-size: 15px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.rc-spec { margin: 20px 0 0; }
.rc-spec > div { display: grid; grid-template-columns: 168px 1fr; align-items: center; padding: 7px 0; }
.rc-spec dt { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--text-2); letter-spacing: -.02em; }
.rc-spec dt svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--navy); stroke-width: 1.6; stroke-linecap: round; }
.rc-spec dd { margin: 0; font-size: 14.5px; font-weight: 600; letter-spacing: -.02em; }
.rc-cta { width: 100%; height: 52px; margin-top: 20px; font-size: 17px; justify-content: center; gap: 0; position: relative; }
.rc-cta span { position: absolute; right: 22px; }

/* 배치도 · 편의 시설 */
.plan2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 34px; }
.tour2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 61px; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 21px 18px 23px; }
.panel > h2 { margin: 0 0 12px; font-size: 20px; font-weight: 800; letter-spacing: -.035em; }
.plan-in { display: grid; grid-template-columns: 1fr 128px; gap: 16px; align-items: start; }
.plan-in img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 8px; }
.legend { list-style: none; margin: 0; padding: 0; font-size: 12.5px; color: var(--text-2); }
.legend li { display: flex; align-items: center; gap: 8px; line-height: 2.05; letter-spacing: -.02em; }
.legend li.sep { margin-top: 12px; }
.legend .sw { width: 13px; height: 13px; border-radius: 3px; flex: none; }
.legend .sw.g { background: #a8d96b; } .legend .sw.b { background: #7d9ef0; }
.legend .sw.r { background: #f08b6c; } .legend .sw.y { background: #f2c95c; }
.legend svg { width: 14px; height: 14px; flex: none; fill: none; stroke: var(--text-2); stroke-width: 1.5; }
.fac { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fac li { border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 12px; }
.fac .fi { grid-row: 1 / 3; display: grid; place-items: center; }
.fac svg { width: 24px; height: 24px; fill: none; stroke: var(--navy); stroke-width: 1.6; stroke-linecap: round; }
.fac b { font-size: 15px; font-weight: 800; letter-spacing: -.03em; }
.fac span { font-size: 12.5px; color: var(--muted); }

/* 360 · 단체 안내 */
.tour-img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.guide-list li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
.guide-list .gi { display: grid; place-items: start center; padding-top: 2px; }
.guide-list svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 1.6; stroke-linecap: round; }
.guide-list b { font-size: 15px; font-weight: 800; letter-spacing: -.03em; }
.guide-list p { margin: 4px 0 0; font-size: 13px; color: var(--text-2); letter-spacing: -.02em; }
.grp-tel {
  display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 13px;
  height: 46px; background: var(--lime); color: var(--navy); border-radius: 12px;
  font-size: 15px; font-weight: 700; letter-spacing: -.02em;
}
.grp-tel svg { width: 19px; height: 19px; fill: none; stroke: var(--navy); stroke-width: 1.8; }
.grp-tel b { font-size: 19px; font-weight: 800; }
.grp-tel em { font-style: normal; font-size: 12.5px; opacity: .72; }

/* 공간 비교 */
.cmp2 { margin-top: 54px; }
.cmp2 h2 { margin: 0 0 8px; font-size: 21px; line-height: 1.15; font-weight: 800; letter-spacing: -.035em; }
.cmp-tbl { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.cmp-tbl th, .cmp-tbl td { padding: 2px 12px; font-size: 12.5px; text-align: center; letter-spacing: -.025em; }
.cmp-tbl thead th { background: #f3f0e7; font-weight: 700; color: var(--text-2); }
.cmp-tbl tbody th { font-weight: 700; }
.cmp-tbl tbody tr { border-top: 1px solid var(--line); }
.cmp-note { margin: 8px 0 0; text-align: center; font-size: 12.5px; color: var(--muted); }

/* FAQ */
.sfaq { margin-top: 18px; }
.sfaq h2 { margin: 0 0 8px; font-size: 21px; line-height: 1.15; font-weight: 800; letter-spacing: -.035em; }
.sfaq .faq-item { margin-top: 4px; }
.sfaq .faq-item summary { padding: 3px 18px; font-size: 13.5px; }

.cta-spaces { margin-top: 26px; height: 103px; }
.cta-spaces .cta-deco.left { left: 34px; top: 12px; width: 119px; height: 119px; }
.cta-spaces .cta-deco.right { left: auto; right: 66px; top: 8px; width: 123px; height: 115px; }
.page-spaces .cta { margin-bottom: 0; }

@media (max-width: 1360px) {
  .roomcard, .roomcard.flip { grid-template-columns: 1fr 1fr; }
  .shero-img { right: -80px; }
  .cta-spaces .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .shero { height: auto; padding-bottom: 40px; }
  .shero-img { position: static; width: 100%; height: 240px; margin-top: 24px; }
  .shero h1 { font-size: 32px; line-height: 46px; padding-top: 34px; }
  .sbadges { flex-wrap: wrap; gap: 14px 22px; }
  .rtabs { grid-template-columns: repeat(2, 1fr); }
  .roomcard, .roomcard.flip { grid-template-columns: 1fr; }
  .roomcard.flip img, .roomcard.flip .rc-body { order: 0; }
  .plan2, .tour2 { grid-template-columns: 1fr; }
  .plan-in { grid-template-columns: 1fr; }
  .legend { display: grid; grid-template-columns: repeat(3, 1fr); }
  .cmp-tbl { display: block; overflow-x: auto; white-space: nowrap; }
}
@media (max-width: 767px) {
  .fac { grid-template-columns: 1fr; }
  .rc-spec > div { grid-template-columns: 1fr; gap: 3px; }
}

/* ==========================================================================
   자리 예약 /booking — 시안 turnon-page-booking.jpg (1728px, 배율 1.2)
   이 페이지만 바탕이 네이비다. 좌 폼 853 + 우 요약 414 (시안 비율 66:32).
   ※ 시안의 「3시간 패키지 1인 3,000원」은 mock-data(threeHourPackage 7500)와
     어긋나 데이터 기준 7,500원으로 고쳤다. 달력은 시안 격자(1일=목)를 유지하되
     과거 날짜(2025.05)를 같은 요일 배치의 2026.10로 옮겼다.
   ========================================================================== */

.page-booking { background: var(--navy); }
.page-booking .ftr { background: var(--navy); }

.bhero { position: relative; color: #fff; overflow: hidden; text-align: center; padding: 46px 0 35px; }
.bh-deco { position: absolute; top: 30px; }
.bh-deco.left { left: 64px; width: 320px; height: 237px; }
.bh-deco.right { right: 64px; width: 354px; height: 234px; }
.bhero h1 { margin: 0; font-size: 47px; line-height: 62px; font-weight: 800; letter-spacing: -.04em; }
.bhero h1 .on { color: var(--lime); }
.bhero p { margin: 16px 0 0; font-size: 16px; line-height: 27px; color: rgba(255, 255, 255, .76); letter-spacing: -.02em; }
.stepper { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); margin: 44px 0 0; padding: 0; position: relative; }
.stepper::before { content: ""; position: absolute; left: 8%; right: 8%; top: 21px; height: 2px; background: rgba(255, 255, 255, .18); }
.stepper li { position: relative; font-size: 14.5px; color: rgba(255, 255, 255, .6); letter-spacing: -.02em; }
.stepper .dot {
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 12px;
  border-radius: 50%; background: #24314c; color: rgba(255, 255, 255, .8); font-size: 17px; font-weight: 700;
  position: relative; z-index: 2;
}
.stepper li[aria-current="step"] { color: var(--lime); font-weight: 700; }
.stepper li[aria-current="step"] .dot { background: var(--lime); color: var(--navy); }

.bwrap { display: grid; grid-template-columns: 853px 414px; gap: 26px; align-items: start; margin-top: 21px; }

/* 좌 폼 */
.bform { background: var(--white); border-radius: 20px; padding: 21px 28px 25px; }
.bstep { border: 0; margin: 0; padding: 0 0 17px; border-bottom: 1px solid var(--line); }
.bstep + .bstep { padding-top: 17px; }
.bstep.last { border-bottom: 0; padding-bottom: 0; }
.bstep legend { padding: 0; font-size: 22px; font-weight: 800; letter-spacing: -.035em; }
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.branch-card, .rp, .pk { position: relative; cursor: pointer; }
.branch-card input, .rp input, .pk input { position: absolute; opacity: 0; pointer-events: none; }
.branch-card {
  border: 2px solid var(--line); border-radius: 14px; padding: 10px 10px 14px; display: block;
}
.branch-card.sel, .rp.sel, .pk.sel { border-color: var(--lime); background: #fbfdf4; }
.bc-img { position: relative; display: block; }
.bc-img img { width: 100%; height: 108px; object-fit: cover; border-radius: 9px; }
.rec { position: absolute; left: 8px; top: 8px; background: var(--lime); color: var(--navy); border-radius: 6px; padding: 3px 9px; font-size: 12px; font-weight: 800; font-style: normal; }
.tick { position: absolute; right: 8px; top: 8px; width: 24px; height: 24px; border-radius: 50%; background: #4caf50; color: #fff; display: none; place-items: center; font-size: 14px; font-style: normal; }
.sel .tick { display: grid; }
.branch-card b { display: block; margin-top: 11px; font-size: 18.5px; font-weight: 800; letter-spacing: -.03em; }
.bc-row { display: flex; align-items: center; gap: 7px; margin-top: 6px; font-size: 14px; color: var(--text-2); letter-spacing: -.02em; }
.bc-row svg { width: 15px; height: 15px; flex: none; fill: none; stroke: var(--muted); stroke-width: 1.7; }
.bc-row.ok { color: #3f8a2e; } .bc-row.ok svg { stroke: #3f8a2e; }

/* 달력 · 슬롯 */
.dt-grid { display: grid; grid-template-columns: 380px 1fr; gap: 26px; margin-top: 18px; align-items: start; }
.cal { border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px 12px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; }
.cal-head b { font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.cal-head button { border: 0; background: transparent; font-size: 19px; color: var(--text-2); width: 30px; height: 30px; }
.cal-tbl { width: 100%; border-collapse: collapse; margin-top: 10px; }
.cal-tbl th { font-size: 13px; font-weight: 600; color: var(--muted); padding-bottom: 6px; }
.cal-tbl td { text-align: center; padding: 5px 0; font-size: 15px; color: var(--text); }
.cal-tbl td.off { color: #c4c8d2; }
.cal-tbl td.sel button { width: 30px; height: 30px; border-radius: 50%; border: 0; background: #4caf50; color: #fff; font-weight: 700; font-size: 14px; }
.cal-legend { margin: 8px 0 0; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.cal-legend .lg { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cal-legend .lg.today { background: var(--lime); }
.cal-legend .lg.pick { background: #4caf50; margin-left: 10px; }
.slot-row { display: grid; grid-template-columns: 60px 1fr; align-items: center; margin-bottom: 16px; }
.lbl { font-size: 14.5px; font-weight: 600; color: var(--text-2); }
.datebox { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line-2); border-radius: 10px; height: 44px; padding: 0 14px; font-size: 15px; letter-spacing: -.02em; }
.datebox svg { width: 17px; height: 17px; fill: none; stroke: var(--muted); stroke-width: 1.6; }
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.slot-grid button {
  height: 44px; border: 1px solid var(--line-2); background: var(--white); border-radius: 10px;
  font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: -.02em;
}
.slot-grid button:hover { border-color: rgba(10, 20, 45, .35); }
.slot-grid button.on { background: var(--lime); border-color: var(--lime); color: var(--navy); font-weight: 800; }
.slot-grid button:disabled { color: #c4c8d2; background: #f6f4ee; cursor: not-allowed; }
.note { margin: 12px 0 0; font-size: 12.5px; color: var(--muted); letter-spacing: -.02em; }

/* 인원 */
.pcount { display: flex; align-items: center; gap: 24px; margin-top: 18px; }
.pc-lbl { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; }
.pc-lbl svg { width: 19px; height: 19px; fill: none; stroke: var(--navy); stroke-width: 1.7; }
.stepq { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.stepq button { width: 44px; height: 44px; border: 0; background: var(--white); font-size: 19px; color: var(--text-2); }
.stepq output { min-width: 76px; text-align: center; font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.stepq.sm button { width: 30px; height: 30px; font-size: 15px; }
.stepq.sm output { min-width: 34px; font-size: 14px; }
.pc-max { font-size: 13.5px; color: var(--muted); }

/* 공간 선택 */
.room-pick { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px; }
.rp { border: 2px solid var(--line); border-radius: 14px; padding: 8px 10px 14px; display: block; }
.rp img { width: 100%; height: 92px; object-fit: cover; border-radius: 8px; }
.rp b { display: block; margin-top: 10px; font-size: 14.5px; font-weight: 800; letter-spacing: -.035em; }
.rp span { display: block; margin-top: 6px; font-size: 12px; line-height: 1.5; color: var(--muted); letter-spacing: -.02em; }
.rp .rec { position: static; display: inline-block; margin-top: 8px; }
.rp-next {
  position: absolute; right: -16px; top: 60px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-2); box-shadow: 0 4px 12px rgba(10,20,45,.12);
  display: grid; place-items: center; color: var(--text-2);
}

/* 패키지 */
.pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.pk { border: 2px solid var(--line); border-radius: 14px; padding: 16px 18px 18px; display: block; }
.pki { width: 34px; height: 34px; fill: none; stroke: #7cc242; stroke-width: 1.8; stroke-linecap: round; }
.pki.v { stroke: #7a4fd0; } .pki.c { stroke: #e0658f; }
.pk b { display: block; margin-top: 10px; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.pk span { display: block; margin-top: 6px; font-size: 12.5px; color: var(--muted); }
.pk strong { display: block; margin-top: 14px; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }

/* 옵션 메뉴 */
.opt-grid { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.opt-grid li { position: relative; border: 2px solid var(--line); border-radius: 12px; padding: 8px 8px 12px; text-align: center; }
.opt-grid li.sel { border-color: var(--lime); background: #fbfdf4; }
.opt-grid img { width: 100%; height: 74px; object-fit: cover; border-radius: 7px; }
.opt-grid b { display: block; margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: -.04em; }
.opt-grid span { display: block; margin-top: 4px; font-size: 12.5px; font-weight: 700; }
.opt-grid .stepq { margin-top: 9px; }

/* 우 요약 */
.bsum { position: sticky; top: 20px; }
.sum-card { background: var(--white); border-radius: 20px; padding: 22px 24px 26px; }
.sum-card h2 { margin: 0; font-size: 19.5px; font-weight: 800; letter-spacing: -.035em; }
.sum-card h3 { margin: 22px 0 0; font-size: 16px; font-weight: 800; letter-spacing: -.035em; }
.sum-list { margin: 14px 0 0; }
.sum-list > div, .sum-money > div { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.sum-list dt, .sum-money dt { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text-2); letter-spacing: -.02em; }
.sum-list svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.7; }
.sum-list dd, .sum-money dd { margin: 0; font-size: 15.5px; font-weight: 700; letter-spacing: -.02em; }
.sum-money { margin: 12px 0 0; }
.sum-money > div:last-child { border-bottom: 0; }
.sum-total { display: flex; align-items: center; justify-content: space-between; margin: 12px 0 0; padding-top: 14px; border-top: 2px solid var(--navy); }
.sum-total span { font-size: 15px; font-weight: 700; }
.sum-total b { font-size: 29px; font-weight: 800; color: var(--coral); letter-spacing: -.03em; }
.sum-total em { font-style: normal; font-size: 15px; margin-left: 2px; }
.refund { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px 16px; }
.refund h3 { margin: 0; font-size: 15px; }
.refund ul { margin: 10px 0 0; padding-left: 15px; }
.refund li { font-size: 12.5px; line-height: 1.7; color: var(--text-2); letter-spacing: -.02em; }
.agree { margin-top: 20px; display: grid; gap: 16px; }
.ag { display: grid; grid-template-columns: 1fr auto; gap: 6px 10px; align-items: center; }
.ag .req { order: -1; font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
.ag .req em { font-style: normal; font-weight: 500; color: var(--muted); font-size: 12.5px; }
.ag .req em.opt { color: var(--muted); }
.ag > a { order: -1; justify-self: end; border: 1px solid var(--line-2); border-radius: 7px; padding: 3px 9px; font-size: 11.5px; color: var(--muted); }
.ag label { grid-column: 1 / -1; display: flex; align-items: start; gap: 8px; font-size: 13px; line-height: 1.5; color: var(--text-2); letter-spacing: -.02em; }
.ag input { width: 17px; height: 17px; flex: none; margin-top: 1px; accent-color: #4caf50; }
.pay { width: 100%; height: 58px; margin-top: 22px; font-size: 18px; }
.pay svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 1.7; }
.secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 0 0; font-size: 12.5px; color: var(--muted); }
.secure svg { width: 15px; height: 15px; fill: none; stroke: var(--muted); stroke-width: 1.6; }

/* 하단 3열 */
.bfoot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 25px; }
.bf-card { background: var(--white); border-radius: 16px; padding: 9px 20px 11px; }
.bf-card h2 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.035em; }
.bf-links { list-style: none; margin: 11px 0 0; padding: 0; display: grid; gap: 4px; }
.bf-links a { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 9px; padding: 7px 14px; font-size: 13.5px; color: var(--text-2); letter-spacing: -.02em; }
.bf-links a:hover { border-color: rgba(10,20,45,.3); color: var(--navy); }
.bf-rules { margin: 14px 0 0; }
.bf-rules > div { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.bf-rules > div:last-child { border-bottom: 0; }
.bf-rules dt { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.bf-rules svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.7; }
.bf-rules dd { margin: 0; font-size: 13.5px; font-weight: 700; }
.bf-lead { margin: 12px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--text-2); letter-spacing: -.02em; }
.bf-tel { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 24px; font-weight: 800; letter-spacing: -.03em; }
.bf-tel svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 1.8; }
.bf-hours { margin: 6px 0 0; font-size: 13px; color: var(--muted); }
.bf-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.bf-btns .btn-out { margin-top: 0; height: 40px; font-size: 13.5px; justify-content: center; }
.bf-btns svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.cta-booking { margin-top: 37px; height: 103px; background: #0a1730; }
.cta-booking .cta-deco.left { left: 30px; top: 6px; width: 125px; height: 109px; }
.page-booking .cta { margin-bottom: 14px; }

@media (max-width: 1360px) {
  .bwrap { grid-template-columns: 1fr 380px; }
  .bh-deco { display: none; }
}
@media (max-width: 1023px) {
  .bwrap { grid-template-columns: 1fr; }
  .bsum { position: static; }
  .stepper { grid-template-columns: repeat(3, 1fr); gap: 18px 0; }
  .stepper::before { display: none; }
  .bhero h1 { font-size: 32px; line-height: 46px; }
  .branch-grid, .room-pick, .pk-grid { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-grid { grid-template-columns: 1fr; }
  .bfoot { grid-template-columns: 1fr; }
  .rp-next { display: none; }
  .cta-booking .cta-deco { display: none; }
}
@media (max-width: 767px) {
  .pcount { flex-wrap: wrap; gap: 12px; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   요금·메뉴 /pricing-menu — 시안 turnon-page-pricing-menu.jpg (1728px, 배율 1.2)
   ※ 시안의 룸 추가요금(인원 구간별 2,000~5,000)·3시간권 7,900·메뉴가는
     mock-data(룸 부가요금 0/6,000/12,000/0, threeHourPackage 7,500, 메뉴 5종 가격)와
     어긋나 데이터 기준으로 고쳤다. 헤더 보정 +25.
   ========================================================================== */

.phero2 { position: relative; background: var(--cream); height: 551px; overflow: hidden; }
.ph2-img { position: absolute; right: 0; top: 0; width: 1023px; height: 520px; object-fit: cover; }
.ph2-deco { position: absolute; z-index: 2; }
/* .ph2-deco.star / .hero-deco 는 폐지 — 사진 자체에 같은 별·꽃이 찍혀 있어
   덧대면 회전이 달라 그림자처럼 두 겹으로 보인다. 사진에 있는 것만 쓴다. */
.ph2-deco.pawn { left: 417px; top: 318px; width: 63px; height: 78px; }
.ph2-deco.spark { left: 60px; top: 399px; width: 63px; height: 56px; }
.ph2-in { position: relative; z-index: 3; }
/* 카피는 사진(왼쪽 끝 417px) 앞에서 끊어야 한다 —
   폭을 안 잡으면 h1 이 1293px 로 퍼져 제목 꼬리가 사진 위에 얹힌다. */
.ph2-in h1, .ph2-in p { max-width: 336px; }
.ph2-in h1 { margin: 0; padding-top: 62px; font-size: 50px; line-height: 68px; font-weight: 800; letter-spacing: -.045em; }
.ph2-in h1 .on { color: #8fbe3f; }
.ph2-in p { margin: 30px 0 0; font-size: 16px; line-height: 28px; color: var(--text-2); letter-spacing: -.02em; }

.ptabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: -52px; position: relative; z-index: 4; }
.ptabs a { height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; font-size: 16px; font-weight: 700; letter-spacing: -.03em; color: var(--text-2); }
.ptabs a[aria-current="page"] { background: var(--lime); color: var(--navy); }
.ptabs svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.branchsel { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.branchsel > label { font-size: 15px; font-weight: 700; letter-spacing: -.03em; }
.branchsel .field { width: 190px; padding: 8px 16px 9px; }
.branchsel .field select { font-size: 15px; margin-top: 0; }
.bs-note { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: #3f8a2e; }
.bs-note svg { width: 16px; height: 16px; fill: none; stroke: #3f8a2e; stroke-width: 1.8; }

.rate2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 3px; }
.rate { position: relative; border-radius: 16px; padding: 29px 26px 31px; background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.rate.wd { border-color: #b9c6ef; } .rate.we { border-color: #f0b8ae; }
.rate h2 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.035em; }
.rate.wd h2 { color: #4453c8; } .rate.we h2 { color: #d9472f; }
.rate h2 em { font-style: normal; font-size: 14px; font-weight: 600; opacity: .75; }
.rate .unit { margin: 12px 0 0; font-size: 14px; color: var(--text-2); }
.rate .amt { margin: 5px 0 0; font-size: 38px; font-weight: 800; letter-spacing: -.04em; line-height: 1.1; }
.rate .amt small { font-size: 20px; font-weight: 700; }
.rate .sub { display: flex; gap: 10px; margin: 16px 0 0; }
.rate .sub span { border: 1px solid var(--line); border-radius: 8px; padding: 6px 14px; font-size: 13.5px; color: var(--text-2); }
.rate-ill { position: absolute; right: 24px; top: 46px; width: 82px; height: 82px; fill: none; stroke-width: 1.2; opacity: .5; }
.rate.wd .rate-ill { stroke: #7f93e8; } .rate.we .rate-ill { stroke: #f0a091; }

.rate3 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 24px; }
.roomfee, .pkgbox { border-radius: 16px; padding: 12px 24px 14px; background: var(--white); border: 1px solid var(--line); }
.pkgbox { border-color: #cfe3a8; background: #fbfdf3; }
.roomfee h2, .pkgbox h2 { margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -.035em; }
.roomfee h2 em { font-style: normal; font-size: 13px; font-weight: 500; color: var(--muted); }
.hot { background: #5b8f2a; color: #fff; border-radius: 6px; padding: 3px 9px; font-size: 12px; margin-right: 6px; }
.roomfee ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; text-align: center; }
.roomfee li span { display: block; font-size: 13px; color: var(--text-2); letter-spacing: -.03em; }
.roomfee li b { display: block; margin-top: 9px; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.roomfee li b i { font-style: normal; font-size: 13px; }
.pkg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 9px; }
.pk-name { margin: 0; font-size: 14px; font-weight: 700; color: #5b8f2a; letter-spacing: -.03em; }
.pk-per { margin: 6px 0 0; font-size: 12.5px; color: var(--muted); }
.pk-amt { margin: 2px 0 0; font-size: 26px; font-weight: 800; letter-spacing: -.035em; }
.pk-amt small { font-size: 15px; }
.pk-note { margin: 12px 0 0; font-size: 12px; color: var(--muted); }

.usebar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 26px; margin: 22px 0 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 12px 22px;
  font-size: 13.5px; color: var(--text-2); letter-spacing: -.02em;
}
.usebar b { font-size: 14px; font-weight: 800; color: var(--text); }
.usebar span::before { content: "• "; color: var(--muted); }

.menusec { margin-top: 34px; }
.menu-head { display: flex; align-items: center; justify-content: space-between; }
.menu-head h2 { margin: 0; font-size: 25px; font-weight: 800; letter-spacing: -.04em; }
.mchips { display: flex; gap: 9px; }
.mchips .qchip { height: 36px; padding: 0 18px; font-size: 14px; }
.mchips .qchip.on { background: var(--lime); border-color: var(--lime); color: var(--navy); }
.mgrid { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 19px; }
.mgrid li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.mgrid img { width: 100%; height: 140px; object-fit: cover; }
.mgrid b { display: block; margin: 12px 16px 0; font-size: 16px; font-weight: 700; letter-spacing: -.035em; }
.mgrid .won { display: block; margin: 5px 16px 0; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.mgrid .alg { display: block; margin: 6px 16px 9px; font-size: 12px; color: var(--muted); letter-spacing: -.02em; }
.mgrid .alg i { font-style: normal; }
.menu-all { display: flex; width: 220px; margin: 12px auto 0; justify-content: center; height: 42px; font-size: 14.5px; }
.algbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px; margin: 20px 0 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 11px 22px;
  font-size: 13px; color: var(--text-2);
}
.algbar b { font-size: 13.5px; font-weight: 800; color: var(--text); }
.algbar .hot2 { color: var(--coral); font-weight: 700; }

.order2 { margin-top: 41px; }
.order2 h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.order-in { display: grid; grid-template-columns: 1fr 400px; gap: 24px; margin-top: 16px; align-items: start; }
.osteps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.osteps li { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 36px 18px 38px; display: grid; grid-template-columns: 46px 1fr; column-gap: 12px; }
.osteps li + li::before { content: ""; position: absolute; left: -12px; top: 44px; width: 9px; height: 9px; border-right: 2px solid #c9c4b6; border-bottom: 2px solid #c9c4b6; rotate: -45deg; }
.osteps .oi { grid-row: 1 / 4; display: grid; place-items: start center; padding-top: 3px; }
.osteps svg { width: 30px; height: 30px; fill: none; stroke: var(--navy); stroke-width: 1.5; stroke-linecap: round; }
.osteps em { font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--muted); }
.osteps b { font-size: 15.5px; font-weight: 800; letter-spacing: -.035em; margin-top: 3px; }
.osteps p { margin: 6px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.promo { position: relative; background: var(--navy); border-radius: 14px; padding: 35px 22px 37px; color: #fff; overflow: hidden; }
.promo img { position: absolute; right: 10px; bottom: 0; width: 156px; height: 109px; }
.promo b { display: block; font-size: 16.5px; font-weight: 800; letter-spacing: -.035em; max-width: 220px; }
.promo .btn { height: 44px; margin-top: 18px; font-size: 15px; }

.grp2 { display: grid; grid-template-columns: 1fr 340px; gap: 26px; margin-top: 30px; align-items: start; }
.grpbox { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 8px 22px 12px; }
.grpbox h2 { margin: 0; font-size: 19px; font-weight: 800; letter-spacing: -.04em; }
.gpk { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gpk > li { position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 6px 18px 8px; text-align: center; }
.gpk > li.rec2 { border: 2px solid var(--cobalt); }
.gpk .rec { position: absolute; left: 50%; top: -11px; transform: translateX(-50%); background: var(--cobalt); color: #fff; }
.gpk b { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.035em; }
.gpk > li.rec2 b { color: var(--cobalt); }
.gpk .who { display: block; margin-top: 5px; font-size: 12.5px; color: var(--muted); }
.gpk ul { list-style: none; margin: 12px 0 0; padding: 0; text-align: left; }
.gpk ul li { font-size: 12.5px; line-height: 1.35; color: var(--text-2); }
.gpk ul li::before { content: "◦ "; color: var(--muted); }
.gpk strong { display: block; margin-top: 12px; font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.notice { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 8px 22px 12px; }
.notice h2 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -.035em; }
.notice ul { margin: 12px 0 0; padding-left: 16px; }
.notice li { font-size: 13px; line-height: 1.35; color: var(--text-2); letter-spacing: -.02em; }

.cta-pricing { margin-top: 30px; height: 106px; }
.cta-pricing .cta-deco.left { left: 26px; top: 6px; width: 217px; height: 88px; }
.cta-pricing .cta-deco.right { left: auto; right: 26px; top: 4px; width: 209px; height: 100px; }
.page-pricing .cta { margin-bottom: 0; }

@media (max-width: 1360px) {
  .ph2-img { right: -80px; }
  .cta-pricing .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .phero2 { height: auto; padding-bottom: 30px; }
  .ph2-img { position: static; width: 100%; height: 240px; margin-top: 20px; }
  .ph2-deco { display: none; }
  .ph2-in h1 { font-size: 34px; line-height: 48px; padding-top: 36px; }
  .ptabs { margin-top: 24px; grid-template-columns: 1fr; border-radius: 16px; }
  .rate2, .rate3, .grp2, .order-in { grid-template-columns: 1fr; }
  .mgrid { grid-template-columns: repeat(2, 1fr); }
  .osteps { grid-template-columns: 1fr; }
  .osteps li + li::before { display: none; }
  .gpk { grid-template-columns: 1fr; }
  .roomfee ul { grid-template-columns: repeat(2, 1fr); }
  .branchsel { flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .menu-head { flex-direction: column; align-items: start; gap: 12px; }
  .mchips { flex-wrap: wrap; }
  .mgrid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   모임·이벤트 /groups-events — 시안 turnon-page-groups-events.jpg (1490px, 배율 1.0347)
   ※ 시안 패키지 인원(4~8/9~16/17~28명)·룸(파티룸 최대 28인)은 mock-data의 룸 정원
     (최대 16명)과 어긋나 프라이빗/미디엄/라지 기준으로 고쳤다. 캘린더는 시안 격자
     (1일=일요일, 30일)를 유지하되 과거 2025.06 → 같은 배치의 2026.11로 옮겼다.
   ========================================================================== */

.ghero2 { position: relative; background: var(--navy); color: #fff; height: 538px; overflow: hidden; }
.gh2-img { position: absolute; right: 0; top: 0; width: 797px; height: 538px; object-fit: cover; }
.gh2-in { position: relative; z-index: 2; }
.gh2-in .crumb { padding-top: 14px; }
.gh2-in h1 { margin: 16px 0 0; font-size: 46px; line-height: 63px; font-weight: 800; letter-spacing: -.045em; }
.gh2-in h1 .on { color: var(--lime); }
.gh2-in > p { margin: 20px 0 0; font-size: 15.5px; line-height: 27px; color: rgba(255,255,255,.82); letter-spacing: -.02em; }
.gbadges { list-style: none; display: flex; gap: 30px; margin: 26px 0 0; padding: 0; }
.gbadges li { display: flex; align-items: center; gap: 9px; }
.gbadges svg { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--lime); stroke-width: 1.6; }
.gbadges b { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: -.03em; }
.gbadges span { display: block; font-size: 11.5px; color: rgba(255,255,255,.62); }
.gh2-cta { display: flex; gap: 16px; margin-top: 28px; }
.gh2-cta .btn { height: 52px; font-size: 16px; }

.purpose { margin-top: 37px; text-align: center; }
.purpose h2 { margin: 0; font-size: 25px; font-weight: 800; letter-spacing: -.04em; }
.pp-grid { list-style: none; margin: 29px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.pp-grid li { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 21px 14px; text-align: left; box-shadow: var(--shadow-card); }
.pp-grid img { width: 48px; height: 48px; object-fit: contain; flex: none; }
.pp-grid b { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.035em; }
.pp-grid span { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); letter-spacing: -.02em; }

.gpkg { margin-top: 47px; text-align: center; }
.gpkg h2 { margin: 0; font-size: 25px; font-weight: 800; letter-spacing: -.04em; }
.gp-sub { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.gp-grid { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.gp-grid > li { position: relative; background: var(--white); border: 2px solid var(--line); border-radius: 16px; padding: 10px 22px 14px; }
.gp-grid > li.lt { border-color: #b9d98a; } .gp-grid > li.st { border-color: #f0a091; } .gp-grid > li.pm { border-color: #a9b4ee; }
.gp-grid .rec { position: absolute; left: 50%; top: -12px; transform: translateX(-50%); background: var(--coral); color: #fff; }
.gp-grid b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.04em; text-align: center; }
.gp-grid > li.lt b { color: #5b8f2a; } .gp-grid > li.st b { color: #d9472f; } .gp-grid > li.pm b { color: #4453c8; }
.gp-grid .who { display: block; margin-top: 5px; font-size: 12.5px; color: var(--muted); text-align: center; }
.gp-grid dl { margin: 16px 0 0; }
.gp-grid dl > div { display: grid; grid-template-columns: 76px 1fr; gap: 10px; padding: 3px 0; }
.gp-grid dt { font-size: 12.5px; color: var(--muted); }
.gp-grid dd { margin: 0; font-size: 12.5px; font-weight: 600; letter-spacing: -.02em; }
.gp-amt { margin: 10px 0 0; font-size: 25px; font-weight: 800; letter-spacing: -.04em; text-align: center; }
.gp-amt em { font-style: normal; font-size: 13px; font-weight: 600; color: var(--text-2); margin-left: 3px; }
.gp-grid .btn { width: 100%; height: 42px; margin-top: 11px; justify-content: center; font-size: 15px; }
.gp-note { margin: 14px 0 0; font-size: 12px; color: var(--muted); line-height: 1.7; }

.gspace { margin-top: 22px; text-align: center; }
.gspace h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.gs-grid { position: relative; list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.gs-grid > li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.gs-grid img { width: 100%; height: 224px; object-fit: cover; }
.gs-grid b { display: block; margin: 13px 16px 0; font-size: 16px; font-weight: 800; letter-spacing: -.035em; }
.gs-grid .tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 16px 16px; }
.gs-grid .tags i { font-style: normal; background: #f2efe6; border-radius: 6px; padding: 4px 9px; font-size: 11.5px; color: var(--text-2); }
.gs-next { position: absolute; right: -16px; top: 108px; width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 1px solid var(--line-2); box-shadow: 0 4px 12px rgba(10,20,45,.12); display: grid; place-items: center; color: var(--text-2); }

.events { display: grid; grid-template-columns: 385px 1fr; gap: 26px; margin-top: 36px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px 26px; align-items: start; }
.ev-cal h2, .ev-list h2 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.035em; }
.ev-cal .cal { margin-top: 14px; }
.cal-tbl td.d { position: relative; font-weight: 700; color: #fff; }
.cal-tbl td.d::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 26px; height: 26px; border-radius: 50%; z-index: -1; }
.cal-tbl td.d.blue::before { background: var(--cobalt); } .cal-tbl td.d.green::before { background: #4caf50; } .cal-tbl td.d.orange::before { background: #f0932b; }
.cal-tbl td.d { z-index: 1; }
.cal-legend2 { margin: 10px 0 0; font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.lg2 { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.lg2.green { background: #4caf50; } .lg2.orange { background: #f0932b; margin-left: 8px; } .lg2.gray { background: #c4c8d2; margin-left: 8px; }
.ev-list ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.ev-list li { display: grid; grid-template-columns: 108px 1fr auto auto; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; }
.ev-list img { width: 108px; height: 64px; object-fit: cover; border-radius: 8px; }
.ev-list b { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
.ev-list div > span { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); letter-spacing: -.02em; }
.ev-meta { display: flex !important; flex-wrap: wrap; gap: 4px 14px; margin-top: 7px !important; }
.ev-meta i { font-style: normal; }
.ev-list .btn-out { margin-top: 0; height: 32px; padding: 0 12px; font-size: 12.5px; }

.consult { display: grid; grid-template-columns: 1fr 340px; gap: 24px; margin-top: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 8px 24px 11px; align-items: start; }
.cs-form h2 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.04em; }
.cs-sub { margin: 7px 0 0; font-size: 13px; color: var(--muted); }
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 14px; }
.cs-grid .field { padding: 6px 14px 6px; }
.cs-grid .field input, .cs-grid .field textarea { border: 0; outline: 0; background: transparent; font: inherit; font-size: 14px; width: 100%; margin-top: 3px; letter-spacing: -.02em; resize: none; }
.cs-grid .field input::placeholder, .cs-grid .field textarea::placeholder { color: #a8adba; }
.cs-grid .field .ic { position: absolute; right: 14px; bottom: 12px; width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.6; }
.cs-grid .field select { font-size: 14px; font-weight: 500; color: #a8adba; }
.cs-grid .ta { grid-column: 3; grid-row: 3 / 5; }
.cs-agree { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; color: var(--text-2); }
.cs-agree input { width: 16px; height: 16px; accent-color: #4caf50; }
.cs-more { float: right; margin-top: 18px; font-size: 12px; color: var(--muted); }
.cs-submit { clear: both; width: 100%; height: 44px; margin-top: 12px; justify-content: center; font-size: 16px; }
.cs-sum { background: var(--navy); color: #fff; border-radius: 14px; padding: 20px 22px 24px; }
.cs-sum h2 { margin: 0; font-size: 17px; font-weight: 800; color: var(--lime); letter-spacing: -.035em; }
.cs-sum dl { margin: 16px 0 0; }
.cs-sum dl > div { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13px; }
.cs-sum dt { color: rgba(255,255,255,.72); }
.cs-sum dd { margin: 0; color: rgba(255,255,255,.9); }
.cs-q { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.8); }
.cs-tel { display: block; margin-top: 8px; font-size: 26px; font-weight: 800; color: var(--lime); letter-spacing: -.03em; }
.cs-hours { margin: 4px 0 0; font-size: 12px; color: rgba(255,255,255,.55); }

.grev { margin-top: 36px; text-align: center; }
.grev h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.gr-wrap { position: relative; margin-top: 16px; }
.gr-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.gr-grid > li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.gr-grid img { width: 100%; height: 138px; object-fit: cover; }
.gr-top { display: flex; align-items: center; gap: 7px; margin: 12px 14px 0; flex-wrap: wrap; }
.gr-top b { font-size: 14.5px; font-weight: 800; letter-spacing: -.035em; }
.gr-top .who { font-size: 11.5px; color: var(--muted); }
.gr-top .stars { margin-left: auto; font-size: 11px; }
.gr-grid p { margin: 9px 14px 0; font-size: 12.5px; line-height: 1.55; color: var(--text-2); letter-spacing: -.02em; }
.gr-br { display: block; margin: 10px 14px 14px; font-size: 11.5px; color: var(--muted); }
.gr-arw { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 1px solid var(--line-2); box-shadow: 0 4px 12px rgba(10,20,45,.12); color: var(--text-2); }
.gr-arw.prev { left: -16px; } .gr-arw.next { right: -16px; }
.dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.dots i { width: 7px; height: 7px; border-radius: 50%; background: #d7d3c8; }
.dots i.on { background: #7cc242; }

.gflow { margin-top: 22px; text-align: center; }
.gflow h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.gf-steps { list-style: none; margin: 16px auto 0; padding: 8px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: 999px; max-width: 1000px; }
.gf-steps li { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 10px; text-align: left; align-items: center; padding: 0 12px; }
.gf-steps li + li::before { content: "⇢"; position: absolute; left: -8px; top: 50%; transform: translateY(-50%); color: #c9c4b6; font-size: 15px; }
.gf-steps img { width: 52px; height: 52px; object-fit: contain; grid-row: 1 / 3; }
.gf-steps em { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .05em; color: var(--muted); }
.gf-steps b { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.035em; margin-top: 2px; }
.gf-steps p { grid-column: 1 / -1; margin: 5px 0 0; font-size: 11.5px; color: var(--muted); }

.gfaq { margin-top: 30px; }
.gfaq h2 { margin: 0 0 14px; font-size: 22px; font-weight: 800; letter-spacing: -.04em; text-align: center; }
.gfaq .faq-item { margin-top: 9px; }
.gfaq .faq-item summary { padding: 8px 20px; font-size: 15px; }

.cta-groups { margin-top: 20px; height: 118px; }
.cta-groups .cta-deco.left { left: 26px; top: 0; width: 155px; height: 126px; }
.cta-groups .cta-deco.right { left: auto; right: 30px; top: 0; width: 174px; height: 126px; }
.page-groups .cta { margin-bottom: 8px; }

@media (max-width: 1360px) {
  .gh2-img { right: -60px; }
  .cta-groups .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .ghero2 { height: auto; padding-bottom: 34px; }
  .gh2-img { position: static; width: 100%; height: 240px; margin-top: 20px; }
  .gh2-in h1 { font-size: 32px; line-height: 46px; }
  .gbadges { flex-wrap: wrap; gap: 14px 22px; }
  .pp-grid, .gp-grid, .gs-grid, .gr-grid { grid-template-columns: repeat(2, 1fr); }
  .events, .consult { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr 1fr; }
  .cs-grid .ta { grid-column: 1 / -1; grid-row: auto; }
  .ev-list li { grid-template-columns: 84px 1fr; }
  .gf-steps { grid-template-columns: repeat(2, 1fr); border-radius: 18px; gap: 16px; }
  .gf-steps li + li::before { display: none; }
  .gs-next, .gr-arw { display: none; }
}
@media (max-width: 767px) {
  .pp-grid, .gp-grid, .gs-grid, .gr-grid, .cs-grid { grid-template-columns: 1fr; }
  .gh2-cta { flex-direction: column; }
  .gf-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   이용 후기 /reviews — 시안 turnon-page-reviews.jpg (1652px, 배율 1.1472)
   ※ 시안의 「사장님 답변」은 오너 0805 지시(사장님 단어 전면 금지)에 따라
     「매장 답변」으로 바꿨다. 지점·룸 이름은 mock-data 기준으로 통일.
   ========================================================================== */

.rhero { position: relative; background: var(--navy); color: #fff; height: 463px; overflow: hidden; }
/* 원본(952×529)과 상자 비율이 같아 crop 이 0 이라, 사진 맨 아랫줄의 흰 띠가 그대로 드러났다.
   상자를 조금 넓혀 세로를 넘치게 만들고 위를 기준으로 잘라 아랫줄을 덜어낸다. */
.rh-img { position: absolute; right: 0; top: 0; width: 742px; height: 402px; object-fit: cover; object-position: center top; }
.rh-in { position: relative; z-index: 2; }
.eyebrow { margin: 0; padding-top: 44px; font-size: 15px; font-weight: 700; color: var(--lime); letter-spacing: -.02em; }
.rhero h1 { margin: 14px 0 0; font-size: 47px; line-height: 63px; font-weight: 800; letter-spacing: -.045em; }
.rhero h1 .on { color: var(--lime); }
.rh-sub { margin: 20px 0 0; font-size: 15.5px; line-height: 27px; color: rgba(255,255,255,.8); letter-spacing: -.02em; }

.rstats {
  list-style: none; margin: -21px 0 0; padding: 31px 34px; position: relative; z-index: 4;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 10px 30px rgba(10,20,45,.07);
}
.rstats li { display: flex; align-items: center; gap: 18px; justify-content: center; }
.ri { width: 52px; height: 52px; display: grid; place-items: center; flex: none; }
.ri svg { width: 44px; height: 44px; stroke-width: 1.2; }
.ri.star svg { fill: #cde86a; stroke: #a8c944; } .ri.chat svg { fill: #6d7cf0; stroke: #4f5fd8; } .ri.heart svg { fill: #f4614a; stroke: #e04a33; }
.rstats b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.rstats b em { font-style: normal; font-size: 16px; color: var(--muted); font-weight: 600; }
.rstats .lb { display: block; margin-top: 3px; font-size: 15px; font-weight: 700; letter-spacing: -.03em; }
.rstats .sb { display: block; margin-top: 4px; font-size: 12.5px; color: var(--muted); }

.rbrowse { margin-top: 60px; }
.rbrowse > h2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.rfilters { display: grid; grid-template-columns: repeat(4, 118px) 118px 1fr 118px; gap: 10px; margin-top: 16px; align-items: center; }
.rfilters .field { padding: 7px 12px 8px; }
.rfilters .field label { font-size: 12px; }
.rfilters .field select { font-size: 14px; margin-top: 1px; }
.rfilters .caret { right: 12px; width: 11px; height: 11px; }
.photo-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 46px; border: 1px solid var(--line-2); background: var(--navy); color: #fff; border-radius: 12px; font-size: 14px; font-weight: 700; }
.photo-toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.rsearch { height: 46px; }
.rsearch input { margin-left: 0; font-size: 14px; }
.rsearch svg { order: 2; margin-left: auto; }
.sortf { padding: 12px 12px 13px !important; }

.rev-row1 { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-row2 { list-style: none; margin: 45px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 287px) 1fr; gap: 12px; align-items: start; }
.rev { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px 24px; box-shadow: var(--shadow-card); }
.rev-head { display: flex; gap: 11px; }
.rev-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.rev-head > div { position: relative; flex: 1; min-width: 0; padding-right: 78px; }
.rev-head b { font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
/* 배지를 이름 뒤에 흘리면 이름 글자수만큼 끌려가 카드끼리 x가 어긋난다 — 오른쪽 고정 */
.verify { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 700; color: #3f8a2e; position: absolute; right: 0; top: 2px; }
.verify svg { width: 13px; height: 13px; fill: none; stroke: #3f8a2e; stroke-width: 2; }
.rev-head .meta { display: block; margin-top: 3px; font-size: 12px; color: var(--muted); letter-spacing: -.02em; }
.score { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; }
.score .stars { font-size: 15px; }
.score b { font-size: 15px; font-weight: 800; }
.rev-photo { width: 100%; height: 241px; object-fit: cover; border-radius: 10px; margin-top: 12px; }
.rev-body { margin: 14px 0 0; font-size: 13.5px; line-height: 1.9; color: var(--text-2); letter-spacing: -.02em; }
.rev-foot { display: flex; align-items: center; margin: 14px 0 0; }
.helpful { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; font-size: 12.5px; color: var(--text-2); }
.helpful svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.helpful b { font-weight: 700; }
.more-dot { margin-left: auto; border: 0; background: transparent; color: var(--muted); font-size: 15px; }
.owner { margin-top: 16px; background: #f5f2e9; border-radius: 12px; padding: 16px 14px 18px; }
.ow-h { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 800; letter-spacing: -.03em; }
.ow-h svg { width: 15px; height: 15px; fill: none; stroke: var(--navy); stroke-width: 1.6; }
.ow-h em { font-style: normal; font-weight: 500; color: var(--muted); font-size: 11.5px; }
.owner p { margin: 8px 0 0; font-size: 12.5px; line-height: 1.6; color: var(--text-2); }
.rev.sm { padding: 13px 15px 15px; }
.rev.sm .rev-body { font-size: 12.5px; }

.photorev { background: var(--navy); color: #fff; border-radius: 16px; padding: 16px 18px 18px; }
.photorev h3 { margin: 0; font-size: 15.5px; font-weight: 800; letter-spacing: -.035em; text-align: center; }
.pr-strip { position: relative; display: flex; gap: 8px; margin-top: 13px; }
.pr-strip img { width: 33%; height: 118px; object-fit: cover; border-radius: 8px; }
.pr-arw { position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 0; color: var(--navy); z-index: 2; }
.pr-arw.prev { left: -8px; } .pr-arw.next { right: -8px; }
.photorev .btn { width: 100%; height: 42px; margin-top: 14px; justify-content: center; font-size: 14.5px; }

.rstat2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 40px; align-items: start; }
.dist-in { display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center; }
.dist-avg { text-align: center; }
.dist-avg b { display: block; font-size: 42px; font-weight: 800; letter-spacing: -.045em; }
.dist-avg .stars { display: block; margin-top: 4px; font-size: 15px; }
.dist-avg .cnt { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.bars { list-style: none; margin: 0; padding: 0; }
.bars li { display: grid; grid-template-columns: 34px 1fr 92px; gap: 10px; align-items: center; padding: 4px 0; }
.bars span { font-size: 12.5px; color: var(--text-2); }
.bars i { display: block; height: 9px; background: #eeebe1; border-radius: 999px; overflow: hidden; }
.bars i b { display: block; height: 100%; background: #c3e05c; border-radius: 999px; }
.bars em { font-style: normal; font-size: 11.5px; color: var(--muted); text-align: right; }
.sat-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
.si { display: grid; place-items: center; }
.si svg { width: 34px; height: 34px; fill: none; stroke: var(--navy); stroke-width: 1.4; }
.sat-grid b { display: block; margin-top: 8px; font-size: 13px; font-weight: 700; letter-spacing: -.03em; }
.sat-grid strong { display: block; margin-top: 4px; font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.sat-grid .sd { display: block; margin-top: 5px; font-size: 11px; color: var(--muted); }

.best3 { background: var(--navy); color: #fff; border-radius: 20px; padding: 27px 26px 31px; margin-top: 54px; }
.best3 h2 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.04em; display: flex; align-items: center; gap: 9px; }
.b3i { width: 24px; height: 24px; fill: none; stroke: var(--cobalt); stroke-width: 2.4; }
.b3-sub { margin: 7px 0 0; font-size: 13px; color: rgba(255,255,255,.66); }
.b3-grid { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.b3-grid > li { background: var(--white); color: var(--text); border-radius: 14px; padding: 16px 18px 18px; }
.b3-badge { display: inline-block; background: var(--coral); color: #fff; border-radius: 7px; padding: 3px 10px; font-size: 11.5px; font-weight: 800; }
.b3-grid b { display: inline-block; margin-left: 8px; font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
.b3-grid .meta { display: block; margin-top: 6px; font-size: 11.5px; color: var(--muted); }
.b3-top { display: flex; align-items: center; gap: 8px; margin-top: 11px; }
.b3-top img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.b3-top .stars { font-size: 14px; }
.b3-top em { font-style: normal; font-size: 14px; font-weight: 800; }
.b3-grid p { margin: 11px 0 0; font-size: 12.5px; line-height: 1.6; color: var(--text-2); }

.rwrite .panel { padding: 12px 18px 14px; }
.rstat2 .panel { padding: 16px 18px 18px; }
.rwrite { display: grid; grid-template-columns: 1fr 480px; gap: 26px; margin-top: 36px; }
.wsteps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.wsteps li { position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 2px 12px 4px; text-align: center; }
.wsteps li.hi { background: #dff07a; border-color: #cbe25f; }
.wsteps li + li::before { content: ""; position: absolute; left: -9px; top: 50%; width: 8px; height: 8px; border-right: 2px solid #c9c4b6; border-bottom: 2px solid #c9c4b6; rotate: -45deg; }
.wi { display: grid; place-items: center; }
.wi svg { width: 34px; height: 34px; fill: none; stroke: var(--navy); stroke-width: 1.4; }
.wi.ok svg { stroke: #4caf50; } .wi.pt svg { stroke: #e0a13a; }
.wsteps b { display: block; margin-top: 10px; font-size: 13.5px; font-weight: 800; letter-spacing: -.035em; }
.wsteps p { margin: 7px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.wnote { margin: 12px 0 0; font-size: 11.5px; color: var(--muted); }
.wgo { display: flex; width: 320px; margin: 8px auto 0; height: 40px; justify-content: center; font-size: 15.5px; }
.rwrite .faq-item { margin-top: 6px; }
.rwrite .faq-item summary { padding: 2px 18px; font-size: 14px; }

.cta-reviews { margin-top: 24px; height: 112px; }
.cta-reviews .cta-deco.left { left: 44px; top: 0; width: 96px; height: 112px; }
.cta-reviews .cta-deco.right { left: auto; right: 66px; top: 22px; width: 68px; height: 70px; }
.page-reviews .cta { margin-bottom: 0; }

@media (max-width: 1360px) {
  .rfilters { grid-template-columns: repeat(4, 1fr); }
  .rsearch, .photo-toggle, .sortf { grid-column: span 2; }
  .rev-row2 { grid-template-columns: repeat(2, 1fr); }
  .rh-img { right: -60px; }
  .cta-reviews .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .rhero { height: auto; padding-bottom: 110px; }
  .rh-img { position: static; width: 100%; height: 220px; margin-top: 20px; }
  .rhero h1 { font-size: 32px; line-height: 46px; }
  .rstats { grid-template-columns: 1fr; margin-top: -70px; }
  .rev-row1, .rev-row2, .rstat2, .b3-grid, .rwrite { grid-template-columns: 1fr; }
  .dist-in { grid-template-columns: 1fr; }
  .sat-grid { grid-template-columns: repeat(2, 1fr); }
  .wsteps { grid-template-columns: repeat(2, 1fr); }
  .wsteps li + li::before { display: none; }
}
@media (max-width: 767px) {
  .rfilters { grid-template-columns: 1fr 1fr; }
  .wgo { width: 100%; }
}

/* ==========================================================================
   지점 안내 /branches — 시안 turnon-page-branches.jpg (1728px, 배율 1.2)
   ※ 시안 표의 운영시간·도보·룸 수·보드게임 수는 mock-data(branches 5곳)와 전부
     달라 데이터 기준으로 교체했다. 오픈 예정 연도(2025)는 미래(2027)로 옮겼다.
     시안 헤더의 「지점 안내」 메뉴는 IA 명세의 전역 내비 6항목에 없어 넣지 않았다.
   ========================================================================== */

.bhero2 { position: relative; background: var(--cream); height: 472px; overflow: hidden; }
.bh2-map { position: absolute; right: 0; top: 22px; width: 923px; height: 409px; object-fit: contain; }
.bh2-in { position: relative; z-index: 2; }
.crumb.dark { color: var(--muted); }
.crumb.dark b { color: var(--text-2); }
.bhero2 h1 { margin: 22px 0 0; font-size: 47px; line-height: 64px; font-weight: 800; letter-spacing: -.045em; }
.bhero2 h1 .on { color: #8fbe3f; }
.pin-ic { width: 40px; height: 40px; fill: var(--lime); stroke: none; vertical-align: -6px; }
.bhero2 p { margin: 22px 0 0; font-size: 16px; line-height: 28px; color: var(--text-2); letter-spacing: -.02em; }

.bfilter { display: flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 3px 18px; margin-top: 0; box-shadow: var(--shadow-card); }
.bfilter .loc { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line-2); background: var(--white); border-radius: 999px; height: 40px; padding: 0 18px; font-size: 14.5px; font-weight: 600; }
.bfilter .loc svg { width: 16px; height: 16px; fill: none; stroke: var(--navy); stroke-width: 1.7; }
.bfilter > label { font-size: 14px; color: var(--text-2); }
.bfilter .field { width: 160px; padding: 7px 14px 8px; }
.bfilter .field select { font-size: 14.5px; margin-top: 0; }
.sw { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); cursor: pointer; }
.sw input { position: absolute; opacity: 0; }
.sw i { width: 42px; height: 24px; border-radius: 999px; background: #d8d4c8; position: relative; transition: background .18s; }
.sw i::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: left .18s; }
.sw input:checked + i { background: #4caf50; }
.sw input:checked + i::after { left: 21px; }
.bsearch { margin-left: auto; height: 42px; padding: 0 28px; font-size: 15.5px; }

.blist { display: grid; grid-template-columns: 385px 1fr; gap: 24px; margin-top: 93px; align-items: start; }
.bl-side { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 18px; }
.bl-side > h2 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -.035em; }
.bl-side > h2 em { font-style: normal; color: var(--muted); font-weight: 600; }
.bl-side ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 12px; }
.bl-side li { display: grid; grid-template-columns: 108px 1fr; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.bl-side li.on { border: 2px solid var(--lime); background: #fbfdf4; }
.bl-side img { width: 108px; height: 230px; object-fit: cover; border-radius: 8px; }
.bl-side b { font-size: 15.5px; font-weight: 800; letter-spacing: -.035em; }
.bl-side .tag { font-size: 11px; padding: 2px 8px; margin-left: 5px; }
.bl-side .r { display: flex; align-items: center; gap: 6px; margin-top: 5px; font-size: 12px; color: var(--text-2); }
.bl-side .r svg { width: 14px; height: 14px; flex: none; fill: none; stroke: var(--muted); stroke-width: 1.7; }
.bl-side .r.no { color: var(--muted); }
.bl-side .two { display: flex; gap: 16px; margin-top: 5px; }
.bl-side .two i { font-style: normal; font-size: 12px; font-weight: 700; }
.bl-side .two em { display: block; font-style: normal; font-size: 10.5px; font-weight: 400; color: var(--muted); }
.bl-side .acts { display: flex; gap: 8px; margin-top: 9px; }
.bl-side .acts .btn-out, .bl-side .acts .btn { margin-top: 0; height: 30px; padding: 0 12px; font-size: 12px; }
.bl-page { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 14px 0 0; font-size: 13px; color: var(--muted); }
.bl-page button { border: 0; background: transparent; font-size: 15px; color: var(--muted); }

.bl-detail { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px 20px; }
.bd-head { display: flex; align-items: center; justify-content: space-between; }
.bd-head h2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.bd-head .btn { height: 42px; font-size: 15px; }
.bd-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.bd-box { border: 1px solid var(--line); border-radius: 12px; padding: 46px 16px 48px; }
.bd-box h3 { margin: 0; font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
.bd-box p { margin: 10px 0 0; font-size: 13px; color: var(--text-2); letter-spacing: -.02em; display: flex; align-items: center; gap: 8px; }
.line { display: inline-grid; place-items: center; min-width: 22px; height: 22px; border-radius: 50%; background: #3cb44a; color: #fff; font-size: 11px; font-weight: 700; padding: 0 6px; }
.line.ls { background: #d4003b; border-radius: 999px; }
.bd-hours b { font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.bar { height: 8px; border-radius: 999px; background: #eeebe1; margin-top: 12px; overflow: hidden; }
.bar i { display: block; height: 100%; background: #7cc242; border-radius: 999px; }
.bar-lb { display: flex !important; justify-content: space-between; font-size: 11.5px; color: var(--muted); margin-top: 6px !important; }
.bd-fac { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; text-align: center; }
.bd-fac li { font-size: 11px; color: var(--text-2); }
.bd-fac svg { display: block; width: 26px; height: 26px; margin: 0 auto 6px; fill: none; stroke: var(--navy); stroke-width: 1.5; }
.rooms { margin-top: 50px; }
.rm-head { display: flex; align-items: center; justify-content: space-between; }
.upd { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--muted); }
.upd svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.rm-grid { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.rm-grid li { border: 1px solid var(--line); border-radius: 10px; padding: 30px 12px 32px; text-align: center; }
.rm-grid b { display: block; font-size: 13px; font-weight: 700; letter-spacing: -.03em; }
.rm-grid span { display: block; margin-top: 6px; font-size: 12.5px; font-weight: 700; }
.rm-grid .ok { color: #3f8a2e; } .rm-grid .no { color: var(--coral); }
.bd-note { display: flex; align-items: center; gap: 16px; margin-top: 50px; background: #f3f8e6; border: 1px solid #d8e8b8; border-radius: 12px; padding: 26px 18px; }
.bd-note b { font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.bd-note p { margin: 7px 0 0; font-size: 12.5px; color: var(--text-2); letter-spacing: -.02em; }
.bd-note img { width: 62px; height: 62px; margin-left: auto; }

.bcmp2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 114px; }
.bcmp2 .cmp-tbl th, .bcmp2 .cmp-tbl td { padding: 2px 10px; font-size: 12.5px; }
.soon { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; }
.soon li { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; padding-bottom: 12px; }
.soon img { width: 100%; height: 66px; object-fit: cover; }
.soon b { display: block; margin-top: 10px; font-size: 14.5px; font-weight: 800; letter-spacing: -.035em; }
.soon span { display: block; margin-top: 5px; font-size: 11.5px; color: var(--text-2); }
.soon .s2 { color: var(--muted); }

.bfaq { position: relative; margin-top: 37px; }
.bfaq-deco { position: absolute; top: 50%; transform: translateY(-50%); pointer-events: none; }
.bfaq-deco.left { left: -60px; width: 70px; height: 62px; }
.bfaq-deco.right { right: -60px; width: 66px; height: 68px; }
.bfaq .faq2-grid { gap: 2px 26px; }
.bfaq .panel { padding: 4px 18px 5px; }
.bfaq .faq-item summary { padding: 1px 16px; font-size: 13.5px; }

.cta-branches { margin-top: 15px; height: 116px; }
.cta-branches .cta-deco.left { left: 22px; top: -2px; width: 134px; height: 125px; }
.cta-branches .cta-deco.right { left: auto; right: 22px; top: -4px; width: 134px; height: 134px; }
.page-branches .cta { margin-bottom: 6px; }

@media (max-width: 1360px) {
  .bh2-map { right: -70px; }
  .bfaq-deco, .cta-branches .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .bhero2 { height: auto; padding-bottom: 26px; }
  .bh2-map { position: static; width: 100%; height: 220px; margin-top: 16px; }
  .bhero2 h1 { font-size: 32px; line-height: 46px; }
  .bfilter { flex-wrap: wrap; gap: 12px; }
  .bsearch { margin-left: 0; width: 100%; }
  .blist, .bd-two, .bcmp2 { grid-template-columns: 1fr; }
  .rm-grid { grid-template-columns: repeat(2, 1fr); }
  .soon { grid-template-columns: 1fr; }
  .bcmp2 .cmp-tbl { display: block; overflow-x: auto; white-space: nowrap; }
}
@media (max-width: 767px) {
  .bl-side li { grid-template-columns: 1fr; }
  .bl-side img { width: 100%; height: 140px; }
  .bd-fac { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   이용 안내·고객지원 /guide-support — 시안 turnon-page-guide-support.jpg (1728px, 1.2)
   헤더 보정 +23. 시안 헤더의 「이용 안내·고객지원」 라벨은 공용 내비에선 「이용 안내」.
   ========================================================================== */

.ghero3 { position: relative; background: var(--navy); color: #fff; height: 489px; overflow: hidden; }
.gh3-img { position: absolute; right: 0; top: 0; width: 823px; height: 420px; object-fit: cover; }
.gh3-in { position: relative; z-index: 2; }
.ghero3 .eyebrow { padding-top: 30px; }
.ghero3 h1 { margin: 14px 0 0; font-size: 46px; line-height: 63px; font-weight: 800; letter-spacing: -.045em; }
.ghero3 h1 .on { color: var(--lime); }
.gh3-sub { margin: 22px 0 0; font-size: 15.5px; line-height: 27px; color: rgba(255,255,255,.8); letter-spacing: -.02em; }

.guide4 { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 20px 24px 22px; margin-top: 27px; box-shadow: var(--shadow-card); }
.guide4 > h2 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.04em; }
.g4-grid { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.g4-grid li { position: relative; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px 18px; }
.g4-grid li + li::before { content: ""; position: absolute; left: -14px; top: 42px; width: 8px; height: 8px; border-right: 2px solid #c9c4b6; border-bottom: 2px solid #c9c4b6; rotate: -45deg; }
.g4-grid .no { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--cobalt); color: #fff; font-size: 13px; font-weight: 800; }
.g4-grid b { display: inline-block; margin-left: 9px; font-size: 16px; font-weight: 800; letter-spacing: -.035em; vertical-align: middle; }
.g4-grid img { display: block; width: 100%; height: 108px; object-fit: contain; margin-top: 12px; }
.g4-grid p { margin: 12px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); letter-spacing: -.02em; }

.gs2 { display: grid; grid-template-columns: 385px 1fr; gap: 24px; margin-top: 30px; align-items: start; }
.use-flow, .etiq { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px 22px; }
.use-flow h2, .etiq h2 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.use-flow ol { list-style: none; margin: 16px 0 0; padding: 0 0 0 8px; border-left: 2px solid #d8ea9e; }
.use-flow li { position: relative; padding: 0 0 16px 20px; }
.use-flow li::before { content: ""; position: absolute; left: -13px; top: 2px; width: 20px; height: 20px; border-radius: 6px; background: #a8d96b; }
.use-flow b { font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.use-flow span { display: inline-block; margin-left: 12px; font-size: 12.5px; color: var(--text-2); letter-spacing: -.02em; }
.etiq ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; text-align: center; }
.etiq ul li { border: 1px solid var(--line); border-radius: 14px; padding: 14px 10px 16px; }
.etiq img { width: 62px; height: 62px; object-fit: contain; margin: 0 auto; }
.etiq b { display: block; margin-top: 10px; font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.etiq p { margin: 8px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.tipbox { display: flex; align-items: center; gap: 10px; margin: 16px 0 0; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; font-size: 12.5px; color: var(--text-2); letter-spacing: -.02em; }
.tipbox b { font-weight: 800; color: var(--text); }

.vidlib { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px 22px; margin-top: 26px; }
.vl-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.vl-head h2 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.vl-head p { margin: 6px 0 0; font-size: 12.5px; color: var(--muted); }
.vl-tools { display: flex; align-items: center; gap: 8px; }
.vsearch { height: 40px; width: 230px; }
.vsearch input { font-size: 13px; }
.vl-tools .qchip { height: 34px; padding: 0 14px; font-size: 13px; }
.vl-grid { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.vt { position: relative; display: block; }
.vt img { width: 100%; height: 127px; object-fit: cover; border-radius: 10px; }
.vt .dur { position: absolute; right: 8px; bottom: 8px; background: rgba(5,18,41,.82); color: #fff; border-radius: 5px; padding: 2px 7px; font-size: 11px; font-weight: 700; }
.vl-grid > li > b { display: block; margin-top: 10px; font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.vl-grid > li > span { display: block; margin-top: 5px; font-size: 11.5px; color: var(--muted); }
.vl-note { margin: 14px 0 0; text-align: center; font-size: 11.5px; color: var(--muted); }
.vl-more { display: flex; width: 190px; margin: 10px auto 0; height: 38px; justify-content: center; font-size: 13.5px; }

.help2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.hl-eye { margin: 0; font-size: 13px; color: var(--muted); }
.help2 h2 { margin: 6px 0 0; font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.hl-search { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--white); padding: 0 6px 0 16px; height: 48px; margin-top: 14px; }
.hl-search input { border: 0; outline: 0; background: transparent; font: inherit; font-size: 14px; flex: 1; }
.hl-search button { width: 42px; height: 36px; border: 0; border-radius: 9px; background: var(--lime); display: grid; place-items: center; }
.hl-search svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 2; }
.hl-cats { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hl-cats li { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; }
.hi { grid-row: 1 / 3; display: grid; place-items: center; }
.hi svg { width: 24px; height: 24px; fill: none; stroke-width: 1.6; }
.hi.c1 svg { stroke: #4453c8; } .hi.c2 svg { stroke: #4a8fd6; } .hi.c3 svg { stroke: #e0a13a; }
.hi.c4 svg { stroke: #3f8ac8; } .hi.c5 svg { stroke: #e2703a; } .hi.c6 svg { stroke: #b58a5a; }
.hl-cats b { font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.hl-cats span { font-size: 11px; color: var(--muted); }
.help2 .faq-item { margin-top: 8px; }
.help2 .faq-item summary { padding: 11px 18px; font-size: 14px; }

.sup3 { display: grid; grid-template-columns: 300px 1fr 340px; gap: 22px; margin-top: 26px; }
.sup3 .panel > h2 { margin: 0 0 14px; font-size: 18px; }
.ch { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ch li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; }
.ci { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; }
.ci svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.7; }
.ch b { display: block; font-size: 14.5px; font-weight: 800; letter-spacing: -.035em; }
.ch strong { display: block; margin-top: 3px; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.ch span { display: block; margin-top: 2px; font-size: 11.5px; color: var(--muted); }
.sp-sub { margin: -8px 0 12px; font-size: 12.5px; color: var(--muted); }
.sp-form .row { display: grid; grid-template-columns: 108px 1fr; gap: 12px; align-items: center; margin-bottom: 9px; }
.sp-form label { font-size: 13px; color: var(--text-2); letter-spacing: -.02em; }
.sp-form label em { font-style: normal; color: var(--muted); font-size: 11.5px; }
.sp-form .field { padding: 8px 14px 9px; }
.sp-form .field select { font-size: 13.5px; margin-top: 0; color: #a8adba; }
.sp-form input[type="text"], .sp-form textarea { border: 1px solid var(--line-2); border-radius: 10px; background: var(--white); font: inherit; font-size: 13.5px; padding: 10px 14px; resize: none; }
.sp-form input::placeholder, .sp-form textarea::placeholder { color: #a8adba; }
.filebox { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.filebox input { font-size: 12px; width: 150px; }
.sp-agree { display: inline-flex !important; align-items: center; gap: 8px; margin-top: 8px; font-size: 12.5px; }
.sp-agree input { width: 16px; height: 16px; accent-color: var(--cobalt); }
.sp-more { float: right; margin-top: 8px; font-size: 11.5px; color: var(--muted); }
.sp-submit { clear: both; width: 100%; height: 46px; margin-top: 12px; justify-content: center; font-size: 15px; }
.sp-side { background: transparent; border: 0; padding: 0; display: grid; gap: 14px; }
.sp-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px 16px; }
.sp-card h3 { margin: 0; font-size: 15px; font-weight: 800; letter-spacing: -.035em; display: flex; align-items: center; gap: 8px; }
.sp-card p { margin: 9px 0 0; font-size: 12.5px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.sp-card .btn-out { margin-top: 12px; height: 34px; padding: 0 14px; font-size: 12.5px; }
.acc { width: 20px; height: 20px; margin-left: auto; fill: none; stroke: var(--navy); stroke-width: 1.7; }
.sp-card.urgent { background: var(--navy); border-color: var(--navy); color: #fff; }
.sp-card.urgent h3 { color: var(--lime); }
.sp-card.urgent p { color: rgba(255,255,255,.78); }
.sp-card.urgent .tel { color: #fff; font-weight: 700; }
.warn-i { color: #f5c542; }

.cta-guide { margin-top: 28px; height: 118px; }
.cta-guide .cta-deco.left { left: 24px; top: -2px; width: 150px; height: 123px; }
.cta-guide .cta-deco.right { left: auto; right: 24px; top: -4px; width: 158px; height: 130px; }
.page-guide .cta { margin-bottom: 8px; }

@media (max-width: 1360px) {
  .gh3-img { right: -70px; }
  .sup3 { grid-template-columns: 1fr 1fr; }
  .cta-guide .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .ghero3 { height: auto; padding-bottom: 30px; }
  .gh3-img { position: static; width: 100%; height: 220px; margin-top: 18px; }
  .ghero3 h1 { font-size: 32px; line-height: 46px; }
  .g4-grid, .etiq ul, .vl-grid, .hl-cats { grid-template-columns: repeat(2, 1fr); }
  .g4-grid li + li::before { display: none; }
  .gs2, .help2, .sup3 { grid-template-columns: 1fr; }
  .vl-head { flex-direction: column; align-items: start; }
  .vl-tools { flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .g4-grid, .etiq ul, .vl-grid, .hl-cats { grid-template-columns: 1fr; }
  .sp-form .row { grid-template-columns: 1fr; }
  .vsearch { width: 100%; }
}

/* ==========================================================================
   마이페이지 /mypage — 시안 turnon-page-mypage.jpg (1728px, 배율 1.2)
   ※ 시안의 추천/플레이 기록 게임명(스플렌더·카탄·윙스팬·루트·뱅! 등)은 실존
     보드게임 상표라 패키지 규칙 5에 따라 가상 이름으로 교체했다. 지점·룸 이름은
     mock-data 기준. 과거 날짜(2025.05)는 미래(2026.10)로 옮겼다.
   ========================================================================== */

.page-mypage { background: var(--cream); }
.bell { position: relative; width: 40px; height: 40px; border: 0; background: transparent; display: grid; place-items: center; }
.bell svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.7; }
.bell i { position: absolute; right: 4px; top: 4px; min-width: 17px; height: 17px; border-radius: 999px; background: var(--coral); color: #fff; font-size: 10.5px; font-weight: 800; font-style: normal; display: grid; place-items: center; }
.whoami { display: inline-flex; align-items: center; gap: 9px; border: 0; background: transparent; color: #fff; font-size: 15.5px; font-weight: 600; letter-spacing: -.02em; }
.ava { width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--navy); display: grid; place-items: center; font-size: 14px; font-weight: 800; }
.caret2 { width: 9px; height: 9px; border-right: 2px solid rgba(255,255,255,.7); border-bottom: 2px solid rgba(255,255,255,.7); rotate: 45deg; margin-top: -4px; }

.mp-shell { display: grid; grid-template-columns: 240px 1fr; align-items: start; min-height: 600px; }
.mp-side { background: var(--navy); color: #fff; padding: 26px 20px 30px; min-height: 1250px; }
.mp-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.mp-side a { display: flex; align-items: center; gap: 12px; height: 46px; padding: 0 16px; border-radius: 12px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.82); letter-spacing: -.03em; }
.mp-side a:hover { background: rgba(255,255,255,.08); color: #fff; }
.mp-side a[aria-current="page"] { background: var(--lime); color: var(--navy); font-weight: 800; }
.mp-side svg { width: 19px; height: 19px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; }
.mp-invite { position: relative; margin-top: 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 16px 16px 18px; overflow: hidden; }
.mp-invite b { font-size: 15px; font-weight: 800; color: var(--lime); letter-spacing: -.035em; }
.mp-invite p { margin: 8px 0 0; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.72); }
.mp-invite .btn { height: 36px; margin-top: 12px; font-size: 12.5px; }
.mp-invite img { display: block; width: 130px; height: 85px; margin: 10px auto 0; object-fit: contain; }
.mp-cs { margin-top: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 14px 16px 16px; }
.mp-cs b { font-size: 13.5px; font-weight: 800; color: #fff; }
.mp-cs strong { display: block; margin-top: 6px; font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.mp-cs span { display: block; margin-top: 3px; font-size: 11.5px; color: rgba(255,255,255,.6); }
.mp-cs .btn-out { margin-top: 12px; height: 32px; padding: 0 12px; font-size: 12px; background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }

.mp-main { padding: 40px 34px 40px; }
.mp-hero { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mp-hero h1 { margin: 0; font-size: 40px; line-height: 56px; font-weight: 800; letter-spacing: -.045em; }
.mp-hero h1 .on { color: #8fbe3f; }
.mp-hero p { margin: 12px 0 0; font-size: 14.5px; color: var(--muted); }
.mp-hero img { width: 375px; height: 183px; object-fit: contain; }

.mp-sum { list-style: none; margin: 22px 0 0; padding: 22px 26px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy); border-radius: 16px; color: #fff; }
.mp-sum li { display: flex; align-items: center; gap: 16px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.14); }
.mp-sum li:first-child { padding-left: 0; } .mp-sum li:last-child { border-right: 0; }
.mi { width: 46px; height: 46px; display: grid; place-items: center; flex: none; }
.mi svg { width: 38px; height: 38px; fill: none; stroke-width: 1.4; }
.mi.tk svg { stroke: #f0c04a; } .mi.pt svg { stroke: #f0c04a; } .mi.cp svg { stroke: #f4614a; }
.mp-sum .lb { display: block; font-size: 12px; color: rgba(255,255,255,.62); }
.mp-sum b { display: block; margin-top: 4px; font-size: 22px; font-weight: 800; letter-spacing: -.035em; }
.mini { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; font-size: 11.5px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.24); border-radius: 8px; padding: 4px 10px; }
.mp-sum .mini:hover { border-color: var(--lime); color: var(--lime); }

.mp-resv { margin-top: 26px; }
.mp-resv h2, .mp-rec h2, .mp-log h2 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.resv-card { display: grid; grid-template-columns: 451px 1fr; gap: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px; margin-top: 14px; box-shadow: var(--shadow-card); }
.resv-card img { width: 100%; height: 228px; object-fit: cover; border-radius: 12px; }
.rc2-top { display: flex; align-items: center; justify-content: space-between; }
.rc2-top h3 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.04em; }
.dday { background: var(--coral); color: #fff; border-radius: 999px; padding: 5px 15px; font-size: 14px; font-weight: 800; }
.rc2-meta { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.rc2-meta li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); letter-spacing: -.02em; }
.rc2-meta svg { width: 17px; height: 17px; flex: none; fill: none; stroke: var(--muted); stroke-width: 1.7; }
.rc2 > .tag { margin-top: 16px; }
.rc2-btns { display: flex; gap: 10px; margin-top: 16px; }
.rc2-btns .btn-out, .rc2-btns .btn { margin-top: 0; height: 42px; padding: 0 20px; font-size: 14.5px; }
.rc2-btns .cancel { border-color: #f0b8ae; color: var(--coral); }
.btn-navy { background: var(--navy); color: #fff; }
.resv-empty { display: flex; align-items: center; gap: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px 30px; margin-top: 14px; }
.resv-empty img { width: 210px; height: 160px; object-fit: contain; }
.resv-empty b { font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.resv-empty p { margin: 10px 0 0; font-size: 14px; color: var(--muted); }
.resv-empty .btn { height: 46px; margin-top: 18px; font-size: 15.5px; }

.mp-stats { list-style: none; margin: 20px 0 0; padding: 28px 22px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.mp-stats li { display: flex; align-items: center; gap: 14px; padding: 0 18px; border-right: 1px solid var(--line); }
.mp-stats li:first-child { padding-left: 0; } .mp-stats li:last-child { border-right: 0; }
.si2 { width: 42px; height: 42px; display: grid; place-items: center; flex: none; }
.si2 svg { width: 34px; height: 34px; fill: none; stroke-width: 1.4; }
.si2.a svg { stroke: #5a6cf0; } .si2.b svg { stroke: #e2703a; } .si2.c svg { stroke: #f4614a; fill: #f4614a; } .si2.d svg { stroke: #e0a13a; }
.mp-stats span { display: block; font-size: 12px; color: var(--muted); }
.mp-stats b { display: block; margin-top: 3px; font-size: 22px; font-weight: 800; letter-spacing: -.035em; }
.mp-stats .mini { color: var(--muted); border-color: var(--line); }

.mp-rec { margin-top: 24px; }
.mrec-grid { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.mc { position: relative; display: block; }
.mc img { width: 100%; height: 128px; object-fit: cover; border-radius: 10px; }
.mc .fav { width: 28px; height: 28px; right: 8px; top: 8px; }
.mc .fav svg { width: 15px; height: 15px; }
.mrec-grid > li > b { display: block; margin-top: 10px; font-size: 14.5px; font-weight: 800; letter-spacing: -.035em; }
.ch2 { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ch2 i { font-style: normal; background: #f2efe6; border-radius: 6px; padding: 3px 8px; font-size: 11px; color: var(--text-2); }

.mp-log { margin-top: 26px; }
.log-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.log-list li { display: grid; grid-template-columns: 78px 76px 1fr auto auto auto auto; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: var(--white); padding: 20px 18px; }
.log-list .dt b { display: block; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.log-list .dt em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.log-list img { width: 76px; height: 54px; object-fit: cover; border-radius: 8px; }
.log-list div b { display: block; font-size: 15.5px; font-weight: 800; letter-spacing: -.035em; }
.log-list div span { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }
.lm { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-2); }
.lm svg { width: 15px; height: 15px; fill: none; stroke: var(--muted); stroke-width: 1.7; }
.rate2b { font-size: 11.5px; color: var(--muted); }
.rate2b .stars { display: block; margin-top: 3px; font-size: 13px; }
.log-list .btn-out { margin-top: 0; height: 34px; padding: 0 16px; font-size: 12.5px; }

.mp3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
/* 세 패널 높이를 맞추고, 막내 CTA(쿠폰 등록·1:1 문의·설정 관리)는 바닥선에 나란히 */
.mp3 > .panel { display: flex; flex-direction: column; }
.mp3 > .panel > :last-child { margin-top: auto; padding-top: 12px; }
.mp3 .panel > h2, .mp3 .sec-head h2 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -.04em; }
.mp3 .sec-head { margin-bottom: 12px; }
.cps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.cps li { display: grid; grid-template-columns: 54px 1fr 30px; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; }
.cp-badge { display: grid; place-items: center; height: 44px; border-radius: 8px; font-size: 11px; font-weight: 800; color: #fff; }
.cp-badge.g { background: #4caf50; } .cp-badge.p { background: #7a4fd0; } .cp-badge.r { background: #f4614a; }
.cps b { display: block; font-size: 13px; font-weight: 700; letter-spacing: -.03em; }
.cps strong { display: block; margin-top: 3px; font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.cps span { display: block; margin-top: 3px; font-size: 10.5px; color: var(--muted); }
.cps button { width: 30px; height: 30px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--white); display: grid; place-items: center; }
.cps button svg { width: 15px; height: 15px; fill: none; stroke: var(--text-2); stroke-width: 1.7; }
.cp-add { display: flex; width: 100%; margin-top: 12px; height: 38px; justify-content: center; font-size: 13px; }
.asks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.asks li { border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; }
.asks .tag { font-size: 10.5px; padding: 2px 9px; }
.asks b { margin-left: 8px; font-size: 13px; font-weight: 700; letter-spacing: -.03em; }
.asks em { float: right; font-style: normal; font-size: 11px; color: var(--muted); }
.asks p { margin: 8px 0 0; font-size: 11.5px; line-height: 1.55; color: var(--text-2); }
.alerts { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.alerts li { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; }
.ai { display: grid; place-items: center; }
.ai svg { width: 20px; height: 20px; fill: none; stroke: var(--navy); stroke-width: 1.6; }
.alerts b { display: block; font-size: 13px; font-weight: 700; letter-spacing: -.03em; }
.alerts span { display: block; margin-top: 2px; font-size: 10.5px; color: var(--muted); }
.alerts .sw i { width: 38px; height: 21px; }
.alerts .sw i::after { width: 15px; height: 15px; }
.alerts .sw input:checked + i::after { left: 20px; }

.mp-acc { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; margin-top: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 32px 26px 34px; align-items: center; }
.acc-col { display: flex; gap: 16px; align-items: center; }
.acc-col:last-child { justify-content: space-between; }
/* 2번째 칸(계정 정보)은 제목줄과 목록이 세로로 쌓여야 한다 —
   가로 flex 그대로면 「계정 정보수정하기」가 목록 옆에 붙어 깨진다 */
.acc-col:nth-child(2) { display: block; }
.acc-head { display: flex; align-items: center; justify-content: space-between; }
.lock { width: 54px; height: 54px; border-radius: 14px; background: #eef4e7; display: grid; place-items: center; flex: none; }
.lock svg { width: 28px; height: 28px; fill: none; stroke: #4caf50; stroke-width: 1.6; }
.acc-col b { font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
.acc-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; border: 1px solid var(--line); border-radius: 9px; padding: 8px 14px; font-size: 12.5px; color: var(--text-2); }
.acc-head { display: flex; align-items: center; justify-content: space-between; }
.mp-acc dl { margin: 10px 0 0; }
.mp-acc dl > div { display: flex; justify-content: space-between; padding: 4px 0; font-size: 12.5px; }
.mp-acc dt { color: var(--muted); } .mp-acc dd { margin: 0; color: var(--text); }
.acc-col p { margin: 8px 0 0; font-size: 12px; line-height: 1.55; color: var(--muted); }
.acc-col .btn { height: 40px; padding: 0 26px; font-size: 14px; }

.cta-mypage { margin-top: 26px; height: 116px; }
.cta-mypage .cta-deco.left { left: 60px; top: -4px; width: 117px; height: 125px; }
.cta-mypage .cta-deco.right { left: auto; right: 60px; top: 0; width: 150px; height: 133px; }
.page-mypage .cta { margin-bottom: 10px; }

@media (max-width: 1360px) {
  .mrec-grid { grid-template-columns: repeat(3, 1fr); }
  .log-list li { grid-template-columns: 70px 70px 1fr auto auto; }
  .cta-mypage .cta-deco { display: none; }
}
@media (max-width: 1023px) {
  .mp-shell { grid-template-columns: 1fr; }
  .mp-side { min-height: 0; }
  .mp-side ul { grid-template-columns: repeat(2, 1fr); }
  .mp-main { padding: 20px; }
  .mp-hero { flex-direction: column; align-items: start; }
  .mp-hero h1 { font-size: 28px; line-height: 40px; }
  .mp-hero img { width: 100%; height: 140px; }
  .mp-sum, .mp-stats, .mp3, .mp-acc { grid-template-columns: 1fr; }
  .mp-sum li, .mp-stats li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: 12px 0; }
  .mp-stats li { border-bottom-color: var(--line); }
  .resv-card, .resv-empty { grid-template-columns: 1fr; flex-direction: column; align-items: start; }
  .log-list li { grid-template-columns: 1fr; gap: 8px; }
  .mrec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   약관·정책 /policies — 시안 turnon-page-policies.jpg (1728px, 배율 1.2)
   ※ 환불 표는 시안(24시간/2시간/30분 기준)이 아니라 값 정본인
     04-content/policies-draft.md(3일/2일/1일/당일) 기준으로 실었다.
     예약 페이지의 취소·환불 요약도 같은 기준으로 맞췄다.
   ========================================================================== */

.phero3 { position: relative; background: var(--cream); height: 420px; overflow: hidden; }
.ph3-img { position: absolute; right: 66px; top: 44px; width: 667px; height: 333px; object-fit: contain; }
.ph3-in { position: relative; z-index: 2; }
.phero3 h1 { margin: 0; padding-top: 54px; font-size: 47px; line-height: 64px; font-weight: 800; letter-spacing: -.045em; }
.phero3 > .wrap > p { margin: 24px 0 0; font-size: 16px; line-height: 28px; color: var(--text-2); letter-spacing: -.02em; }
.upd2 { display: flex; align-items: center; gap: 7px; margin-top: 18px !important; font-size: 13.5px !important; color: var(--muted) !important; }
.upd2 svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.7; }

.pl-tools { display: grid; grid-template-columns: 1fr 250px auto auto; gap: 14px; margin-top: -46px; position: relative; z-index: 3; }
.plsearch { height: 52px; background: var(--white); }
.plsearch input { font-size: 14.5px; margin-left: 0; }
.plsearch svg { order: 2; margin-left: auto; }
.vsel { padding: 14px 16px 15px; background: var(--white); }
.vsel select { font-size: 14.5px; margin-top: 0; font-weight: 600; }
.pl-tools .btn-out { margin-top: 0; height: 52px; padding: 0 20px; font-size: 14.5px; }
.pl-tools svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.pl-shell { display: grid; grid-template-columns: 260px 1fr; gap: 24px; margin-top: 22px; align-items: start; }
.pl-side { display: grid; gap: 16px; position: sticky; top: 20px; }
.pl-side nav { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px 14px 18px; }
.pl-side h2 { margin: 0 0 12px; font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.pl-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.pl-side a { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; border-radius: 10px; font-size: 13.5px; font-weight: 600; color: var(--text-2); letter-spacing: -.03em; }
.pl-side a span { margin-left: auto; color: var(--muted); }
.pl-side a:hover { background: #f4f1e8; }
.pl-side a[aria-current="page"] { background: #e6f2b4; color: var(--navy); font-weight: 800; }
.pl-side svg { width: 17px; height: 17px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; }
.pl-help, .pl-note2 { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 18px; }
.pl-help b, .pl-note2 b { display: block; font-size: 14px; font-weight: 800; letter-spacing: -.035em; }
.pl-help p, .pl-note2 p { margin: 8px 0 0; font-size: 12px; line-height: 1.6; color: var(--text-2); }
.pl-help .btn { height: 38px; margin-top: 12px; font-size: 13px; }
.ni { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: #eef4e7; margin-bottom: 10px; }
.ni svg { width: 20px; height: 20px; fill: none; stroke: #4caf50; stroke-width: 1.6; }
.pl-note2 .more { margin-top: 12px; font-size: 12.5px; }

.pl-body { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 14px 24px 18px; }
.toc h2, .pl-sec h2 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.04em; display: flex; align-items: center; gap: 10px; }
.toc ol { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px 18px; }
.toc a { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-2); letter-spacing: -.03em; }
.toc i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--cobalt); color: #fff; font-size: 11px; font-weight: 800; font-style: normal; flex: none; }
.toc a:hover { color: var(--navy); }
.pl-sec { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); }
.pl-sec > h2 > i { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 800; font-style: normal; }
.pl-sec p { margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.pl-sec ul { margin: 12px 0 0; padding-left: 18px; }
.pl-sec li { font-size: 14.5px; line-height: 1.6; color: var(--text-2); letter-spacing: -.02em; }
.pl-tbl { width: 100%; border-collapse: collapse; margin-top: 12px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.pl-tbl th, .pl-tbl td { padding: 6px 14px; font-size: 13.5px; text-align: center; letter-spacing: -.02em; }
.pl-tbl thead th { background: #f3f0e7; font-weight: 700; color: var(--text-2); }
.pl-tbl tbody tr { border-top: 1px solid var(--line); }
.pl-tbl tbody th { font-weight: 700; }
.pl-tbl.refund tbody td:nth-child(3) { font-weight: 700; }
.pl-alert { display: flex; align-items: center; gap: 9px; margin-top: 14px !important; background: #f4f9e6; border: 1px solid #d8e8b8; border-radius: 10px; padding: 11px 15px; font-size: 13px !important; color: var(--text-2) !important; }
.pl-alert svg { width: 17px; height: 17px; flex: none; fill: none; stroke: #5b8f2a; stroke-width: 1.7; }
.pl-sub2 { font-size: 12.5px !important; color: var(--muted) !important; }
.pl-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pl-two .pl-sec { border-top: 0; padding-top: 0; }
.pl-sec.box { position: relative; }
.pl-sec.box img { position: absolute; right: 0; top: 30px; width: 140px; height: 128px; object-fit: contain; }
.pl-sec.box p, .pl-sec.box ul { max-width: 62%; }
.pl-contact { margin: 16px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.pl-contact > div { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--line); }
.pl-contact dt { font-size: 13.5px; color: var(--muted); }
.pl-contact dd { margin: 0; font-size: 13.5px; font-weight: 600; }
.pl-warn { display: flex; align-items: center; gap: 10px; margin-top: 18px !important; background: #fff6f4; border: 1px solid #f6cec6; border-radius: 10px; padding: 13px 16px; font-size: 13px !important; color: var(--text-2) !important; }
.pl-warn svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--coral); stroke-width: 1.7; }
.pl-warn b { color: var(--coral); }

.cta-policies { margin-top: 30px; height: 116px; }
.page-policies .cta { margin-bottom: 0; }

@media (max-width: 1360px) { .ph3-img { right: -10px; } }
@media (max-width: 1023px) {
  .phero3 { height: auto; padding-bottom: 70px; }
  .ph3-img { position: static; width: 100%; height: 200px; margin-top: 16px; }
  .phero3 h1 { font-size: 32px; line-height: 46px; padding-top: 34px; }
  .pl-tools { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .pl-shell, .pl-two, .pl-contact { grid-template-columns: 1fr; }
  .pl-side { position: static; }
  .toc ol { grid-template-columns: repeat(2, 1fr); }
  .pl-sec.box img { position: static; width: 120px; height: 110px; margin-top: 12px; }
  .pl-sec.box p, .pl-sec.box ul { max-width: 100%; }
  .pl-tbl { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ==========================================================================
   가로 넘침 방지 안전망 — 07-qa 인수 체크리스트 「1440·1024·768·390·360에서
   가로 넘침 없음」을 전 페이지에서 만족시키기 위한 공통 규칙.
   ========================================================================== */

/* 격자·플렉스 자식이 콘텐츠 최소폭 때문에 컨테이너를 밀어내지 않게 한다 */
.wrap > *, .mp-main > *, .pl-body > *, .bform > *, .results > *, .bwrap > *,
.gs2 > *, .help2 > *, .sup3 > *, .rstat2 > *, .rwrite > *, .bcmp2 > *, .blist > *,
.plan2 > *, .tour2 > *, .events > *, .consult > *, .grp2 > *, .order-in > *,
.howto > *, .players > *, .stock-in > *, .sec-visit > *, .pl-shell > * { min-width: 0; }
.gcard, .rev, .panel, .bd-box, .bf-card, .sum-card, .pl-side, .pl-body,
.bl-side, .bl-detail, .cs-form, .cs-sum, .steps-box, .video-box { min-width: 0; }
img, video { max-width: 100%; }

@media (max-width: 1360px) {
  .dt-grid { grid-template-columns: 1fr; }
  .log-list li { grid-template-columns: 62px 66px 1fr auto; row-gap: 8px; }
  .mp-main { padding-left: 22px; padding-right: 22px; }
  .rc2-meta { grid-template-columns: 1fr; }
  .mp-sum li, .mp-stats li { padding: 0 12px; }
}

@media (max-width: 1023px) {
  .pl-tools { grid-template-columns: 1fr; }
  .toc ol { grid-template-columns: repeat(2, 1fr); }
  .bd-fac, .rm-grid, .sat-grid { grid-template-columns: repeat(2, 1fr); }
  .bfilter .field, .branchsel .field, .vsel { width: 100%; }
  .pl-tbl, .stock-tbl, .cal-tbl { display: block; overflow-x: auto; white-space: nowrap; max-width: 100%; }
  .pl-contact { grid-template-columns: 1fr; }
  .mp-acc, .acc-col { flex-wrap: wrap; }
  .bd-head { flex-wrap: wrap; gap: 12px; }
  .rc2-btns, .visit-btns, .bf-btns { flex-wrap: wrap; }
}

@media (max-width: 767px) {
  .brand img { width: 148px; height: 40px; }
  .btn-book { white-space: nowrap; height: 42px; padding: 0 14px; font-size: 14px; }
  .hdr-end { gap: 10px; }
  .navtoggle { margin-right: 8px; width: 42px; height: 42px; }
  .whoami { font-size: 13px; }
  .whoami .ava { width: 28px; height: 28px; font-size: 12px; }
  .toc ol, .bd-fac, .rm-grid, .sat-grid, .etiq ul, .fac, .hl-cats,
  .mp-side ul, .g4-grid, .vl-grid, .wsteps, .soon, .pp-grid, .cps li { grid-template-columns: 1fr; }
  .cps li { grid-template-columns: 54px 1fr 30px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .stepq output { min-width: 56px; }
  .gmeta li { border-right: 0; }
  .usebar, .algbar, .price-foot { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vl-tools { width: 100%; }
  .vsearch { width: 100%; }
  .pl-side a { font-size: 12.5px; }
  .ev-list li { grid-template-columns: 1fr; }
  .log-list li { grid-template-columns: 1fr; }
  .cs-grid .field, .sp-form .field { width: 100%; }
  .bfilter { gap: 10px; }
  .bsearch { width: 100%; }
  .rfilters { grid-template-columns: 1fr; }
  .rsearch, .photo-toggle, .sortf { grid-column: auto; }
  .mp-hero img, .resv-empty img { max-width: 100%; }
  .pl-sec.box img { position: static; }
  .tipbox, .pl-warn { display: block; line-height: 1.7; }
  .tipbox b, .pl-warn b { white-space: nowrap; }
  .pl-warn svg { display: inline-block; margin-right: 6px; vertical-align: -5px; }
}

@media (max-width: 400px) {
  :root { --container: calc(100vw - 32px); --container-head: calc(100vw - 32px); }
  .brand img { width: 128px; height: 35px; }
  .btn-book { white-space: nowrap; padding: 0 11px; font-size: 13px; }
  .btn-book .chev { display: none; }
}

@media (min-width: 1024px) and (max-width: 1360px) {
  .mp-shell { grid-template-columns: 208px 1fr; }
}
@media (max-width: 767px) {
  .pager { flex-wrap: wrap; row-gap: 6px; }
  .pager a { min-width: 32px; height: 32px; padding: 0 7px; font-size: 14px; }
  .vl-tools { flex-wrap: wrap; }
  .hl-search { padding-right: 4px; }
  .hl-search button { width: 38px; }
  .mchips, .chip-row, .sbadges, .gbadges, .gmeta, .gcta, .rc2-btns { flex-wrap: wrap; }
  .cta, .banner { flex-wrap: wrap; }
}

/* 페이지별 CTA 고정 높이는 데스크톱에서만 — 모바일에선 세로로 접힌다 */
@media (max-width: 1023px) {
  .cta, .cta-games, .cta-game, .cta-spaces, .cta-pricing, .cta-groups,
  .cta-reviews, .cta-branches, .cta-guide, .cta-booking, .cta-mypage, .cta-policies {
    height: auto; padding: 26px 20px; flex-direction: column; gap: 18px; text-align: center;
  }
  .cta .btn { width: 100%; max-width: 320px; }
  .hl-search button { width: 36px; }
}
/* flex 자식 input이 최소 내용폭 때문에 형제를 밀어내지 않게 */
.hl-search input, .search input, .rsearch input, .vsearch input, .plsearch input { min-width: 0; }

/* ── 좁은 데스크톱(1024~1360) 정렬 보강 — 0823 미리보기 사건 후속 ─────────────
   칸이 좁아져 글줄 수가 카드마다 갈리면 꼬리가 밀린다. 꼬리는 바닥선에 고정하고,
   칸이 좁아지기 전에 열 수를 줄인다. */
.review-card { display: flex; flex-direction: column; }
.review-card p { margin-bottom: 9px; }
.review-card .review-tag { margin-top: auto; align-self: flex-start; }

@media (max-width: 1120px) {
  .gs2 { grid-template-columns: 1fr; }      /* 이용 방법·에티켓을 쌓아 에티켓 5칸에 폭 확보 */
  .rwrite { grid-template-columns: 1fr; }   /* 후기 작성 안내 4단계 칸 폭 확보 */
}
