/* ==========================================================================
   Lumière Hair Studio — DREXLY 템플릿
   시안 6장(2026-08-11)의 조판·색·비례를 그대로 옮긴 단일 스타일시트.
   섹션 간격만 시안(포스터형 압축본)이 아닌 규격서 §05(데스크톱 110~150px)를 따른다.
   ========================================================================== */

:root {
  /* 색 — 규격서 §03 */
  --bg: #faf7f2;
  --bg2: #f3ece5;
  --surface: #ffffff;
  --accent: #cda4a6;
  --deep: #b9787c;
  --deep-press: #a5666a;
  --ink: #222326;
  --ink2: #68625f;
  --muted: #99918b;
  --line: rgba(70, 54, 48, 0.12);
  --line-soft: rgba(70, 54, 48, 0.07);
  --rose-tint: #f7efe9;
  --rose-wash: rgba(205, 164, 166, 0.09);

  /* 글꼴 — 규격서 §04 */
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --serif: "Playfair Display", "Noto Serif KR", Georgia, "Times New Roman", serif;
  --serif-kr: "Noto Serif KR", "Playfair Display", Georgia, serif;

  /* 조판 */
  --wrap: 1280px;
  --gutter: 40px;
  --section: 130px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 2px rgba(70, 54, 48, 0.04), 0 8px 24px rgba(70, 54, 48, 0.05);
  --ease: cubic-bezier(0.22, 0.7, 0.28, 1);
}

/* --------------------------------------------------------------- 기본 */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  /* 한국어는 어절 단위로 끊는다 — "2층"·"휴무"가 갈라지지 않게 */
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.32; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--deep);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* 사진 액자 — 반드시 블록이어야 aspect-ratio 가 먹는다 */
.frame { display: block; overflow: hidden; background: var(--bg2); }

.ico {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-sm { width: 16px; height: 16px; stroke-width: 1.5; }
.ico-lg { width: 30px; height: 30px; stroke-width: 1.1; }

/* ------------------------------------------------------- 활자 계층 §04 */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.022em;
}
.display-kr {
  font-family: var(--serif-kr);
  font-weight: 500;
  font-size: clamp(36px, 4.3vw, 60px);
  line-height: 1.34;
  letter-spacing: -0.03em;
}
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
}
.section-title {
  font-family: var(--serif-kr);
  font-weight: 500;
  font-size: clamp(28px, 2.9vw, 40px);
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.section-title.en { font-family: var(--serif); letter-spacing: -0.02em; font-weight: 400; }
.lead { color: var(--ink2); font-size: 17px; line-height: 1.85; }
.muted { color: var(--muted); }
.caption { font-size: 13px; color: var(--muted); }

/* 각 섹션이 사이 간격의 절반씩을 나눠 가진다 — 배경색 있는 섹션도 리듬이 깨지지 않는다 */
.section { padding-block: calc(var(--section) / 2); }
.section-lead { padding-top: var(--section); }
.section-last { padding-bottom: var(--section); }
.section-soft { background: linear-gradient(180deg, #fcf9f6 0%, var(--bg) 100%); }
.section-tint { background: var(--bg2); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 16px; color: var(--ink2); font-size: 16px; }

/* --------------------------------------------------------------- 버튼 §13 */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.18s var(--ease);
}
.btn span[aria-hidden] { transition: transform 0.3s var(--ease); }
.btn:hover span[aria-hidden] { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.btn-primary { --btn-bg: var(--deep); --btn-fg: #fff; --btn-bd: var(--deep); }
.btn-primary:hover { --btn-bg: var(--deep-press); --btn-bd: var(--deep-press); }

.btn-secondary { --btn-bg: var(--surface); --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn-secondary:hover { --btn-bd: var(--accent); --btn-fg: var(--deep); }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink2); --btn-bd: var(--line); }
.btn-ghost:hover { --btn-bd: var(--accent); --btn-fg: var(--deep); }

.btn-on-rose { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, 0.6); }
.btn-on-rose:hover { --btn-bg: #fff; --btn-fg: var(--deep); --btn-bd: #fff; }

.btn-sm { min-height: 38px; padding: 0 16px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.btn-text:hover { border-bottom-color: var(--accent); gap: 11px; }

/* --------------------------------------------------------------- 헤더 §06 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(70, 54, 48, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 88px;
}
.brand {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: var(--ink2);
  margin-top: 3px;
}
.navlinks { display: flex; align-items: center; gap: 38px; }
.navlinks a {
  position: relative;
  font-size: 15px;
  color: var(--ink2);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.navlinks a:hover { color: var(--ink); }
.navlinks a:hover::after { transform: scaleX(1); }
.navlinks a[aria-current="page"] { color: var(--deep); }
.navlinks a[aria-current="page"]::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 20px; flex: none; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: var(--ink2);
  transition: color 0.3s var(--ease);
}
.nav-phone:hover { color: var(--deep); }
.nav-phone .ico { color: var(--deep); }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-btn .ico { width: 20px; height: 20px; }

/* 모바일 서랍 */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  z-index: 90;
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 26px 26px 40px;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.drawer-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius); cursor: pointer;
}
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--serif);
  font-size: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.3s var(--ease);
}
.drawer nav a:hover, .drawer nav a[aria-current="page"] { color: var(--deep); }
.drawer-contact { margin-top: 26px; display: grid; gap: 10px; }
.drawer-contact .btn { justify-content: flex-start; }
.scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(34, 35, 38, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s var(--ease), visibility 0.42s;
}
.scrim.open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------- 히어로 */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  background: var(--bg);
  overflow: hidden;
}
.hero > .wrap { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 500px; padding: 64px 0; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy .display-kr, .hero-copy .display { margin-bottom: 24px; }
.hero-copy .lead { margin-bottom: 38px; max-width: 420px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  z-index: 1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(250, 247, 242, 0.55) 26%, rgba(250, 247, 242, 0) 58%);
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--ink2);
}
.trust-row .ico { color: var(--deep); }
.trust-row span + span::before {
  content: "·";
  margin-right: 14px;
  color: var(--accent);
}

/* 페이지 히어로(내부 페이지 공통 밴드) */
.page-hero {
  position: relative;
  background: linear-gradient(140deg, #f6efe6 0%, #fbf6f0 46%, #faf7f2 100%);
  overflow: hidden;
  text-align: center;
  padding: 104px 0 96px;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -6%;
  top: -46%;
  width: 46%;
  height: 190%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(155, 128, 106, 0.14), transparent 62%),
    radial-gradient(ellipse at 62% 66%, rgba(155, 128, 106, 0.1), transparent 58%);
  transform: rotate(-13deg);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero .display { margin-bottom: 18px; }
.page-hero p { color: var(--ink2); font-size: 17px; }

/* --------------------------------------------------------- 시그니처 서비스 */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.svc-figure {
  position: relative;
  aspect-ratio: 176 / 72;
  overflow: hidden;
}
.svc-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.svc-card:hover .svc-figure img { transform: scale(1.045); }
.svc-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--deep);
  box-shadow: 0 2px 10px rgba(70, 54, 48, 0.08);
}
.svc-body { padding: 44px 24px 26px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-family: var(--serif-kr); font-size: 19px; margin-bottom: 12px; }
.svc-body p { color: var(--ink2); font-size: 14.5px; line-height: 1.72; flex: 1; }
.svc-body .btn-text { margin: 20px auto 0; }

/* --------------------------------------------------------------- 디자이너 */
.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.stylist { text-align: center; }
.stylist-photo {
  width: 132px; height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--line-soft);
}
.stylist-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1s var(--ease);
}
.stylist:hover .stylist-photo img { transform: scale(1.05); }
.stylist h3 { font-family: var(--serif-kr); font-size: 17px; margin-bottom: 5px; }
.stylist p { font-size: 13.5px; color: var(--muted); }

/* ----------------------------------------------------------- 전후 갤러리 */
.ba-panel {
  display: grid;
  grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ba-intro .eyebrow { margin-bottom: 14px; }
.ba-intro h2 { font-family: var(--serif-kr); font-size: 28px; margin-bottom: 16px; }
.ba-intro p { color: var(--ink2); font-size: 14.5px; line-height: 1.8; margin-bottom: 26px; }
.ba-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: relative; }
.ba-shot { text-align: center; }
.ba-shot figure {
  margin: 0 0 10px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg2);
  border-radius: 2px;
}
.ba-shot img { width: 100%; height: 100%; object-fit: cover; }
.ba-shot figcaption {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.ba-shot.is-after figcaption { color: var(--deep); }
.ba-arrow {
  position: absolute;
  left: 50%;
  top: calc(50% - 14px);
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep);
  z-index: 2;
  pointer-events: none;
}

/* --------------------------------------------------------------- 후기 §13 */
.reviews {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.reviews::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review .quote-mark {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 0.6;
  color: var(--accent);
  align-self: center;
}
.stars { color: var(--deep); font-size: 13px; letter-spacing: 3px; }
.review blockquote {
  margin: 0;
  color: var(--ink2);
  font-size: 14.5px;
  line-height: 1.85;
  flex: 1;
}
.review cite { font-style: normal; font-size: 13.5px; color: var(--ink); font-weight: 500; }
.review cite small { display: block; color: var(--muted); font-weight: 400; margin-top: 3px; }

.dots { display: flex; justify-content: center; gap: 9px; margin-top: 36px; }
.dots button {
  width: 7px; height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.3s var(--ease), width 0.3s var(--ease), background 0.3s var(--ease);
}
.dots button[aria-current="true"] { opacity: 1; width: 20px; border-radius: 4px; background: var(--deep); }

/* --------------------------------------------------------------- 예약 배너 */
.banner {
  background: var(--deep);
  color: #fff;
}
.banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 46px;
}
.banner h2 { font-family: var(--serif-kr); font-size: clamp(22px, 2.3vw, 29px); font-weight: 500; }
.banner p { margin-top: 10px; font-size: 15px; color: rgba(255, 255, 255, 0.82); }

/* --------------------------------------------------------------- 매장 정보 */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep);
}
.info-item h3 { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; font-family: var(--sans); letter-spacing: 0; }
.info-item p, .info-item a { font-size: 14px; color: var(--ink2); line-height: 1.65; }
.info-item a:hover { color: var(--deep); }

/* --------------------------------------------------------------- 푸터 §18 */
.site-footer {
  background: #fbf8f5;
  border-top: 1px solid var(--line);
  padding-top: 84px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.35fr 1fr 1.15fr;
  gap: 48px;
  padding-bottom: 66px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--ink2); line-height: 1.8; }
.footer-col h3 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--ink2); }
.footer-col a:hover { color: var(--deep); }
.footer-info { display: grid; gap: 12px; }
.footer-info div { display: grid; grid-template-columns: 62px 1fr; gap: 12px; font-size: 14px; }
.footer-info dt, .footer-info b { color: var(--ink); font-weight: 500; }
.footer-info span { color: var(--ink2); }
.social { display: flex; gap: 10px; margin-bottom: 22px; }
.social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink2);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social a:hover { color: var(--deep); border-color: var(--accent); }
.studio-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--surface);
}
.studio-box strong { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 6px; }
.studio-box span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--deep); }

.to-top {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 55;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s,
    color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--deep); border-color: var(--accent); }

/* ================================================== PAGE 02 — SERVICES */
.svc-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.svc-side { position: sticky; top: 118px; }
.svc-side .eyebrow { margin-bottom: 20px; }
.svc-nav { display: grid; margin-bottom: 34px; }
.svc-nav a {
  padding: 15px 2px;
  font-size: 15px;
  color: var(--ink2);
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.svc-nav a:hover { color: var(--ink); padding-left: 6px; }
.svc-nav a.is-active { color: var(--deep); font-weight: 500; }
.promo-box {
  background: var(--rose-tint);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
}
.promo-box .ico-lg { color: var(--deep); margin-bottom: 16px; }
.promo-box h3 { font-family: var(--serif-kr); font-size: 17px; margin-bottom: 12px; }
.promo-box p { font-size: 13.5px; color: var(--ink2); line-height: 1.8; margin-bottom: 22px; }

.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 26px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 120px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-detail:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.svc-detail header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.svc-detail .num { font-family: var(--serif); font-size: 18px; color: var(--deep); }
.svc-detail .en { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.svc-detail figure { margin: 0 0 20px; aspect-ratio: 177 / 193; overflow: hidden; background: var(--bg2); }
.svc-detail figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc-detail:hover figure img { transform: scale(1.04); }
.svc-detail h3 { font-family: var(--serif-kr); font-size: 18px; margin-bottom: 10px; }
/* 네 카드의 Benefits 줄이 나란히 서도록 설명 높이만 3줄로 고정한다
   (라벨·가격도 <p> 라서 선택자를 설명문에 한정해야 한다) */
.svc-detail .svc-desc { font-size: 13.5px; color: var(--ink2); line-height: 1.75; margin-bottom: 22px; min-height: 5.25em; }
.benefits-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.benefits { display: grid; gap: 9px; flex: 1; }
.benefits li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink2); }
.benefits .ico-sm { color: var(--deep); margin-top: 4px; }
.price-from {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-from small { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.price-from b { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); }

.package-strip {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 34px 38px;
  background: var(--rose-wash);
  border: 1px solid rgba(205, 164, 166, 0.4);
  border-radius: var(--radius);
}
.chip {
  display: inline-block;
  padding: 5px 12px;
  background: var(--deep);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  border-radius: 2px;
  margin-bottom: 14px;
}
.chip-soft { background: rgba(185, 120, 124, 0.14); color: var(--deep); letter-spacing: 0.04em; }
.package-strip h3 { font-family: var(--serif-kr); font-size: 24px; margin-bottom: 10px; }
.package-strip .package-note { font-size: 13.5px; color: var(--ink2); line-height: 1.7; }
.combo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.combo-item { text-align: center; }
.combo-item .ring {
  width: 58px; height: 58px;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  border: 1px solid rgba(185, 120, 124, 0.35);
  border-radius: 50%;
  background: var(--surface);
  color: var(--deep);
}
.combo-item span { font-size: 13px; color: var(--ink2); }
.combo-op { color: var(--accent); font-size: 17px; }
.combo-price { text-align: right; margin-left: auto; }
.combo-price .was { display: flex; align-items: center; gap: 10px; justify-content: flex-end; margin-bottom: 6px; }
.combo-price del { font-family: var(--serif); font-size: 17px; color: var(--muted); }
.combo-price b { font-family: var(--serif); font-size: 27px; font-weight: 400; color: var(--ink); }

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}
.why-grid figure { margin: 0; aspect-ratio: 398 / 208; overflow: hidden; border-radius: var(--radius); }
.why-grid figure img { width: 100%; height: 100%; object-fit: cover; }
.why-grid h2 { font-family: var(--serif-kr); font-size: clamp(24px, 2.4vw, 33px); margin: 14px 0 34px; }
.why-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-points li .ico-lg { color: var(--deep); margin-bottom: 14px; }
.why-points b { display: block; font-size: 14.5px; font-weight: 500; margin-bottom: 6px; }
.why-points span { font-size: 13px; color: var(--muted); }

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cta-strip p {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-kr);
  font-size: 18px;
  color: var(--ink);
}
.cta-strip .ico { color: var(--deep); }

/* ========================================== PAGE 03 — PRICE & BOOKING */
.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
.block-title {
  font-family: var(--serif-kr);
  font-size: 21px;
  margin-bottom: 26px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.block-title .num { font-family: var(--serif); color: var(--deep); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
}
.price-table th, .price-table td {
  padding: 17px 20px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line-soft);
}
.price-table thead th {
  background: var(--bg2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: 0.04em;
}
.price-table tbody th { font-weight: 500; color: var(--ink); width: 27%; }
.price-table td.desc { color: var(--ink2); }
.price-table td.amt { text-align: right; font-family: var(--serif); font-size: 16px; white-space: nowrap; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background 0.3s var(--ease); }
.price-table tbody tr:hover { background: #fdfbf9; }
.table-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); }

.pkg-list { display: grid; gap: 20px; }
.pkg-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.pkg-body { padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; }
.pkg-body h3 { font-family: var(--serif); font-size: 23px; font-weight: 400; margin-bottom: 10px; }
.pkg-body p { font-size: 13.5px; color: var(--ink2); margin-bottom: 16px; }
.pkg-body .amt { font-family: var(--serif); font-size: 23px; color: var(--deep); }
.pkg-card figure { margin: 0; overflow: hidden; background: var(--bg2); }
.pkg-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pkg-card:hover figure img { transform: scale(1.05); }

.steps {
  background: linear-gradient(180deg, #fcf8f4, #faf7f2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px 48px;
}
.steps-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  margin-top: 34px;
}
.step { text-align: center; position: relative; }
.step .ring {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep);
}
.step .num { display: block; font-family: var(--serif); font-size: 13px; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.08em; }
.step b { display: block; font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--ink2); line-height: 1.7; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: rotate(45deg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 56px;
  align-items: start;
}
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); background: var(--surface); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.acc-trigger:hover { color: var(--deep); }
.acc-trigger .ico { color: var(--muted); transition: transform 0.4s var(--ease), color 0.3s var(--ease); }
.acc-trigger[aria-expanded="true"] { color: var(--deep); }
.acc-trigger[aria-expanded="true"] .ico { transform: rotate(180deg); color: var(--deep); }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease);
}
.acc-panel > div { overflow: hidden; }
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel p {
  padding: 0 22px 22px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.85;
}

.booking-aside {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 46px 40px;
  text-align: center;
}
.booking-aside h2 { font-family: var(--serif-kr); font-size: 25px; margin-bottom: 14px; }
.booking-aside > p { font-size: 14.5px; color: var(--ink2); margin-bottom: 30px; }
.aside-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.aside-points .ico { color: var(--deep); margin: 0 auto 12px; }
.aside-points b { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 4px; }
.aside-points span { font-size: 12.5px; color: var(--muted); }

/* ================================================== PAGE 04 — ABOUT */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
}
.story-grid h2 { font-family: var(--serif-kr); font-size: clamp(25px, 2.6vw, 34px); margin: 14px 0 26px; }
.story-grid p { color: var(--ink2); font-size: 15px; line-height: 1.95; }
.story-grid p + p { margin-top: 18px; }
.story-grid .btn { margin-top: 32px; }
.story-grid figure { margin: 0; aspect-ratio: 488 / 213; overflow: hidden; border-radius: var(--radius); }
.story-grid figure img { width: 100%; height: 100%; object-fit: cover; }

.philosophy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
}
.philosophy li {
  text-align: center;
  padding: 8px 28px;
  border-left: 1px solid var(--line);
}
.philosophy li:first-child { border-left: 0; }
.philosophy .ico-lg { color: var(--deep); margin: 0 auto 18px; }
.philosophy b { display: block; font-family: var(--serif-kr); font-size: 17px; font-weight: 500; margin-bottom: 12px; }
.philosophy span { font-size: 13.5px; color: var(--ink2); line-height: 1.78; }

.interior-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 2fr);
  gap: 56px;
  align-items: center;
}
.interior-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.interior-shots figure { margin: 0; }
.interior-shots .frame { aspect-ratio: 188 / 126; overflow: hidden; border-radius: var(--radius); background: var(--bg2); }
.interior-shots img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.interior-shots figure:hover img { transform: scale(1.05); }
.interior-shots figcaption { margin-top: 12px; font-size: 12.5px; color: var(--muted); letter-spacing: 0.03em; }
.interior-grid h2, .team-grid-wrap h2 { font-family: var(--serif-kr); font-size: clamp(23px, 2.4vw, 31px); margin: 14px 0 20px; }
.interior-grid p, .team-grid-wrap > div > p { color: var(--ink2); font-size: 14.5px; line-height: 1.85; }
.interior-grid .btn, .team-grid-wrap .btn { margin-top: 30px; }

.team-grid-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 2fr);
  gap: 56px;
  align-items: center;
}
.team-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--rose-tint);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .frame { aspect-ratio: 126 / 106; overflow: hidden; }
.team-card img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--serif-kr); font-size: 16px; margin: 18px 0 6px; }
.team-card p { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }

.quote-box {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 74px 40px;
  text-align: center;
  position: relative;
}
.quote-box blockquote {
  margin: 0 auto;
  max-width: 640px;
  font-family: var(--serif-kr);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.72;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.quote-box .qm {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0;
  color: var(--accent);
  position: absolute;
}
.quote-box .qm.open { left: max(6%, 24px); top: 92px; }
.quote-box .qm.close { right: max(6%, 24px); bottom: 62px; }

/* ================================================== PAGE 05 — CONTACT */
.contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg2);
}
.contact-hero .bg { position: absolute; inset: 0; }
.contact-hero .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.contact-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f0e8 0%, rgba(247, 240, 232, 0.94) 30%, rgba(247, 240, 232, 0.55) 48%, rgba(247, 240, 232, 0) 74%);
}
.contact-hero .wrap { position: relative; z-index: 1; padding-block: 76px; }
.contact-hero .eyebrow { margin-bottom: 14px; }
.contact-hero .display { margin-bottom: 20px; }
.contact-hero p { color: var(--ink2); font-size: 16px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}
.salon-info { display: grid; gap: 0; }
.salon-info > li {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.salon-info > li:first-child { padding-top: 8px; }
.salon-info h3 { font-family: var(--sans); font-size: 14px; font-weight: 600; margin-bottom: 8px; letter-spacing: 0; }
.salon-info p, .salon-info a { font-size: 14.5px; color: var(--ink2); line-height: 1.7; }
.salon-info a:hover { color: var(--deep); }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; font-size: 14.5px; }
.hours dt { color: var(--ink2); }
.hours dd { margin: 0; color: var(--ink2); }
.hours .off { color: var(--muted); }

.map-frame {
  margin: 22px 0 14px;
  aspect-ratio: 358 / 168;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg2);
}
.map-frame img { width: 100%; height: 100%; object-fit: cover; }

/* 폼 §13·§14 */
.form-head { margin-bottom: 30px; }
.form-head .eyebrow { margin-bottom: 12px; }
.form-head p { font-size: 14.5px; color: var(--ink2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--ink2); font-weight: 500; }
.field label .req { color: var(--deep); }
.control {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.control::placeholder { color: var(--muted); }
.control:hover { border-color: rgba(70, 54, 48, 0.2); }
.control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(205, 164, 166, 0.18);
}
.control:disabled { background: var(--bg2); color: var(--muted); cursor: not-allowed; }
textarea.control { min-height: 148px; resize: vertical; line-height: 1.7; }
select.control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2399918b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
.field.filled .control { background: #fdfcfa; }
.field.invalid .control { border-color: #c0605e; box-shadow: 0 0 0 3px rgba(192, 96, 94, 0.12); }
.err {
  display: none;
  font-size: 12.5px;
  color: #c0605e;
}
.field.invalid .err { display: block; }
.counter { text-align: right; font-size: 12px; color: var(--muted); margin-top: -2px; }

.agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 20px;
  font-size: 13.5px;
  color: var(--ink2);
  flex-wrap: wrap;
}
.agree input { position: absolute; opacity: 0; width: 0; height: 0; }
.agree .box {
  width: 20px; height: 20px;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  color: transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.agree input:checked + label .box { background: var(--deep); border-color: var(--deep); color: #fff; }
.agree input:focus-visible + label .box { outline: 2px solid var(--deep); outline-offset: 2px; }
.agree label { cursor: pointer; display: flex; align-items: center; gap: 10px; min-height: 44px; }
.agree .btn-text { font-size: 13px; }

.faq-card {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 8px 8px;
}
.faq-card > h3 { font-family: var(--serif-kr); font-size: 17px; padding: 0 20px 6px; }
.faq-card .accordion { border-top: 0; }
.faq-card .acc-item:last-child { border-bottom: 0; }

.phone-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--rose-tint);
  border-radius: var(--radius);
}
.phone-cta .left { display: flex; align-items: center; gap: 22px; }
.phone-cta .ring {
  width: 62px; height: 62px;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(185, 120, 124, 0.32);
  border-radius: 50%;
  color: var(--deep);
  background: var(--surface);
}
.phone-cta h2 { font-family: var(--serif-kr); font-size: 21px; margin-bottom: 6px; }
.phone-cta .left p { font-size: 14px; color: var(--ink2); }
.phone-cta .right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.phone-cta .tel { font-family: var(--serif); font-size: 28px; color: var(--ink); letter-spacing: 0.01em; }

/* --------------------------------------------------------------- 토스트 */
.toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  z-index: 120;
  transform: translate(-50%, 20px);
  min-width: 280px;
  max-width: calc(100vw - 40px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(34, 35, 38, 0.24);
  opacity: 0;
  visibility: hidden;
  /* 알림일 뿐이므로 아래 버튼을 가로막지 않는다 — 제출 버튼 위에 뜨는 위치다 */
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .ico { color: var(--accent); }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- 등장 §15 */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

/* =============================================================== 반응형 §16 */
@media (max-width: 1180px) {
  :root { --wrap: 1024px; --section: 110px; }
  .navlinks { gap: 26px; }
  .svc-layout { grid-template-columns: 200px minmax(0, 1fr); gap: 40px; }
  .package-strip { grid-template-columns: 1fr; gap: 28px; }
  .combo { border-left: 0; padding-left: 0; justify-content: flex-start; }
  .combo-price { text-align: left; margin-left: 0; }
  .why-grid, .story-grid, .interior-grid, .team-grid-wrap { gap: 40px; }
}

@media (max-width: 1024px) {
  :root { --gutter: 32px; --section: 100px; }
  .nav { height: 76px; }
  .navlinks, .nav-phone { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { min-height: 0; }
  .hero-media { width: 46%; }
  .hero-media::after {
    background: linear-gradient(90deg, var(--bg) 0%, rgba(250, 247, 242, 0.6) 34%, rgba(250, 247, 242, 0) 76%);
  }
  .svc-grid, .svc-cards, .team-cards, .why-points { grid-template-columns: repeat(2, 1fr); }
  .team-row { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .stylist-photo { width: 108px; height: 108px; }
  .ba-panel { grid-template-columns: 1fr; gap: 32px; padding: 34px; }
  .price-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .svc-layout { grid-template-columns: 1fr; gap: 34px; }
  .svc-side { position: static; }
  .svc-nav { grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; }
  .svc-nav a { text-align: center; }
  .promo-box { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .promo-box .ico-lg, .promo-box h3, .promo-box p { margin-bottom: 0; }
  .promo-box p { flex: 1; min-width: 220px; }
  .steps-track { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .step:nth-child(3)::after { display: none; }
  .philosophy { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .philosophy li:nth-child(3) { border-left: 0; }
  .interior-grid, .team-grid-wrap, .story-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .info-strip { grid-template-columns: repeat(2, 1fr); padding: 34px; }
  .review { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --section: 76px; }
  body { font-size: 15.5px; }

  /* 터치 영역 최소 44px — 규격서 §05 */
  .btn-sm { min-height: 44px; padding: 0 20px; }
  .social a { width: 44px; height: 44px; }
  /* 점은 시안대로 작게 보이되, 버튼 상자 자체를 44px 로 만든다
     (누르는 면만 ::after 로 넓히면 보조기술·검사기가 크기를 못 읽는다) */
  .dots { gap: 0; }
  .dots button {
    width: 44px; height: 44px;
    background: none;
    opacity: 1;
    display: grid;
    place-items: center;
  }
  .dots button::after {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.35;
    transition: opacity 0.3s var(--ease), width 0.3s var(--ease), background 0.3s var(--ease);
  }
  .dots button[aria-current="true"] { width: 44px; background: none; }
  .dots button[aria-current="true"]::after {
    opacity: 1; width: 20px; border-radius: 4px; background: var(--deep);
  }
  .nav { height: 68px; }
  .brand { font-size: 23px; }
  .brand small { font-size: 10px; }

  .hero { display: block; }
  .hero-media {
    position: relative;
    width: 100%;
    height: 340px;
  }
  .hero-media img { object-position: center 24%; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0) 55%, rgba(250, 247, 242, 0.75) 84%, var(--bg) 100%);
  }
  .hero > .wrap { order: 1; }
  .hero-copy { max-width: none; padding: 34px 0 64px; }
  .hero-copy .lead { max-width: none; margin-bottom: 30px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .btn { width: 100%; min-height: 52px; }
  .trust-row { margin-top: 30px; font-size: 13px; }

  .page-hero { padding: 66px 0 60px; }
  .section-head { margin-bottom: 36px; }

  /* 카드 가로 스크롤 — 규격서 §05·§16 */
  .svc-grid, .svc-cards, .interior-shots, .team-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 4px;
  }
  .svc-grid::-webkit-scrollbar, .svc-cards::-webkit-scrollbar,
  .interior-shots::-webkit-scrollbar, .team-cards::-webkit-scrollbar { display: none; }
  .svc-card, .svc-detail, .interior-shots figure, .team-card {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .team-row { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .stylist-photo { width: 104px; height: 104px; }

  .ba-panel { padding: 24px 20px; }
  .ba-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .ba-track::-webkit-scrollbar { display: none; }
  .ba-pair { flex: 0 0 74%; scroll-snap-align: start; }

  .review { flex: 0 0 84%; padding: 28px 22px; }

  .banner .wrap { flex-direction: column; align-items: flex-start; gap: 22px; padding-block: 38px; }
  .banner .btn { width: 100%; }

  .info-strip { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; }

  .svc-nav { grid-template-columns: repeat(4, 1fr); }
  .svc-nav a { font-size: 13.5px; padding: 12px 0; }
  .package-strip { padding: 26px 22px; }
  .combo { gap: 12px; }
  .combo-item .ring { width: 48px; height: 48px; }
  .why-points { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .cta-strip { flex-direction: column; align-items: stretch; gap: 18px; padding: 24px 22px; }
  .cta-strip p { font-size: 16px; justify-content: center; text-align: center; }
  .cta-strip .btn { width: 100%; }

  /* 가격표 모바일 재조판 — 축소가 아니라 재배치 §16 */
  .price-table, .price-table tbody, .price-table tr, .price-table th, .price-table td { display: block; width: auto; }
  .price-table thead { display: none; }
  .price-table { border: 0; background: none; }
  .price-table tbody tr {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 2px 12px;
  }
  .price-table tbody th { padding: 0; font-size: 15px; border: 0; width: auto; }
  .price-table td.desc { padding: 0; grid-column: 1; font-size: 13px; color: var(--muted); border: 0; }
  .price-table td.amt { padding: 0; grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: 17px; border: 0; }

  /* 좁은 글 칸에서 영문 제목이 단어 중간에 잘리지 않도록 사진 칸을 줄인다 */
  .pkg-card { grid-template-columns: minmax(0, 1fr) 124px; }
  .pkg-body { padding: 20px 18px; }
  .pkg-body h3 { font-size: 19px; }
  .pkg-body .amt { font-size: 20px; }

  .steps { padding: 30px 22px 34px; }
  .steps-track { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .step::after { display: none !important; }
  .step .ring { width: 54px; height: 54px; margin-bottom: 14px; }

  .booking-aside { padding: 34px 24px; }
  .aside-points { grid-template-columns: 1fr; gap: 18px; }

  .philosophy { grid-template-columns: 1fr; row-gap: 34px; }
  .philosophy li { border-left: 0; padding: 0; }
  .quote-box { padding: 54px 24px; }
  .quote-box .qm { display: none; }

  .form-grid { grid-template-columns: 1fr; }
  .phone-cta { padding: 26px 22px; flex-direction: column; align-items: stretch; }
  .phone-cta .right { justify-content: space-between; }
  .phone-cta .btn { width: 100%; }

  .site-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .hero-actions { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 1fr; }
  /* 320px 에서 상호 + 예약 버튼 + 햄버거가 10px 넘쳤다 */
  .brand { font-size: 20px; }
  .brand small { font-size: 9px; letter-spacing: 0.1em; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn-primary { padding: 0 14px; font-size: 14px; }
  .nav-actions .btn-primary span[aria-hidden] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .drawer, .scrim, .to-top, .toast, .banner .btn { display: none !important; }
  body { background: #fff; }
}
