/* Swizzy Beauty Bar — stylesheet */

:root {
  --ivory: #F8B8C8;
  --blush: #FBE3E8;
  --blush-soft: #ffffff;
  --rose: #c98a97;
  --rose-deep: #7A2E42;
  --charcoal: #2B2320;
  --charcoal-soft: #6b5a56;
  --gold: #CBA05A;
  --white: #ffffff;
  --shadow: 0 22px 55px -22px rgba(43, 35, 32, 0.30);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-script: 'Meddon', cursive;
  --font-sans: 'Jost', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  margin: 0;
  color: var(--charcoal);
  font-weight: 600;
}

p { line-height: 1.7; color: var(--charcoal-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose-deep);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -18px rgba(122, 46, 66, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose);
}
.btn-ghost:hover { background: var(--blush-soft); }

/* ===== Header ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 250, 248, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 138, 151, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo-mark { display: flex; align-items: center; gap: 10px; }
.logo-mark svg { height: 46px; width: auto; }
.logo-mark img { height: 54px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose-deep);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-weight: 600; color: var(--rose-deep); font-size: 0.92rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 24px; height: 2px; background: var(--charcoal);
  position: relative; transition: all 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 10%, var(--blush) 0%, transparent 55%),
              radial-gradient(circle at 5% 90%, var(--blush-soft) 0%, transparent 45%),
              var(--ivory);
}
.hero.hero-white {
  background: var(--white);
}
.hero-reviews-link {
  display: inline-flex;
  margin-top: 38px;
}
.hero-reviews-link:hover {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  border-color: transparent;
}
.hero-reviews-link:active {
  background: var(--rose-deep);
  color: var(--white);
  border-color: transparent;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 18px 0 10px;
}
.hero .script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--rose-deep);
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}
.hero p.lead {
  font-size: 1.08rem;
  max-width: 480px;
  margin: 18px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  display: block;
  color: var(--rose-deep);
}
.hero-stats div span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--blush) 0%, var(--rose) 60%, var(--rose-deep) 100%);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(122,46,66,0.05) 30%, rgba(74,26,38,0.68) 100%);
}
.badge-float {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.25);
  text-align: center;
}
.badge-float strong { font-family: var(--font-serif); font-size: 1.4rem; color: var(--rose-deep); display: block; }
.badge-float span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft); }
.hero-visual .badge-float { margin-bottom: 32px; }

/* ===== Slideshow ===== */
.slideshow-section { padding: 60px 0; }
/* 首屏幻灯片：满屏通栏，不留粉色边框 */
main > .slideshow-section:first-child { padding: 82px 0 0; }
main > .slideshow-section:first-child > .container { width: 100%; margin: 0; }
main > .slideshow-section:first-child .slideshow {
  aspect-ratio: auto;
  height: calc(100vh - 82px);
  min-height: 440px;
  border-radius: 0;
  box-shadow: none;
}
.slideshow {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slideshow .slide.active { opacity: 1; }
.slideshow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,35,32,0.08) 35%, rgba(43,35,32,0.7) 100%);
  pointer-events: none;
}
.slideshow-caption {
  position: absolute;
  left: 44px;
  bottom: 40px;
  z-index: 2;
  color: var(--white);
  max-width: 480px;
}
.slideshow-caption .tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.92;
}
.slideshow-caption h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 2rem;
  margin-top: 10px;
  line-height: 1.2;
}
.slideshow-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); border-color: var(--white); }
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slide-nav:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }

.slideshow-dots {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.slideshow-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slideshow-dots .dot.active { background: var(--white); transform: scale(1.35); }

/* ===== Gallery toggle ===== */
.gallery-toggle-wrap { text-align: center; margin: 40px 0 0; }
.gallery-extra { margin-top: 24px; }

.hero.hero-photo {
  background-size: cover;
  background-position: center 45%;
  position: relative;
}
.hero.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(248,184,200,0.55) 0%, rgba(122,46,66,0.78) 65%, rgba(74,26,38,0.85) 100%);
}
.hero.hero-photo .container { position: relative; z-index: 2; }

/* 通透版 Hero：蒙层减半让照片更清楚，靠文字投影 + 底部渐深保证可读性 */
.hero.hero-photo-light::before {
  background: linear-gradient(160deg, rgba(248,184,200,0.275) 0%, rgba(122,46,66,0.39) 65%, rgba(74,26,38,0.425) 100%);
}
.hero.hero-photo-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 75% at 22% 55%, rgba(58,22,32,0.62) 0%, rgba(58,22,32,0.32) 45%, transparent 78%);
  pointer-events: none;
}
.hero.hero-photo-light .eyebrow,
.hero.hero-photo-light h1,
.hero.hero-photo-light p.lead {
  text-shadow: 0 2px 4px rgba(40,16,24,0.55), 0 6px 22px rgba(40,16,24,0.45);
}
.hero.hero-photo-light .eyebrow::before {
  box-shadow: 0 1px 3px rgba(40,16,24,0.6);
}
.hero.hero-photo .eyebrow { color: var(--white); }
.hero.hero-photo .eyebrow::before { background: var(--white); }
.hero.hero-photo h1 { color: var(--white); }
.hero.hero-photo p.lead { color: rgba(255,255,255,0.9); }
.hero.hero-photo .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.7); }
.hero.hero-photo .btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ===== Section shared ===== */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 16px 0; }
.section-head::before { margin: 0 auto; }

.alt-bg { background: var(--blush-soft); }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 25px 60px -35px rgba(51, 39, 35, 0.25);
  border: 1px solid rgba(201,138,151,0.15);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card h3 .icon-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rose); display: inline-block;
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(201,138,151,0.3);
}
.service-row:last-child { border-bottom: none; }
.service-row .name { font-weight: 500; color: var(--charcoal); }
.service-row .desc { font-size: 0.85rem; color: var(--charcoal-soft); margin-top: 3px; }
.service-row .price { font-family: var(--font-serif); font-size: 1.15rem; color: var(--rose-deep); white-space: nowrap; }
.tag-jp {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--blush);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.services-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

/* ===== Menu tabs (services.html) ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.menu-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid var(--rose);
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.menu-tab-icon { width: 22px; height: 22px; display: flex; flex-shrink: 0; }
.menu-tab-icon svg { width: 100%; height: 100%; }
.menu-tab.active {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.menu-tab:not(.active):hover { background: var(--blush); }

.menu-panel { display: none; max-width: 720px; margin: 0 auto; }
.menu-panel.active { display: block; animation: menuFadeIn 0.4s ease; }
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(201,138,151,0.3);
}
.menu-row:last-child { border-bottom: none; }
.menu-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--rose);
  width: 28px;
  flex-shrink: 0;
}
.menu-row-body { flex: 1; }
.menu-row-body .name { font-weight: 500; color: var(--charcoal); font-size: 1.05rem; }
.menu-row-body .desc { font-size: 0.85rem; color: var(--charcoal-soft); margin-top: 4px; }
.menu-row .price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--rose-deep); white-space: nowrap; }

.menu-addon {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 720px;
  margin: 50px auto 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  box-shadow: 0 25px 60px -35px rgba(51,39,35,0.25);
}
.menu-addon-icon { font-size: 1.4rem; }
.menu-addon strong { font-family: var(--font-sans); font-size: 1rem; }
.menu-addon p { margin: 6px 0 0; font-size: 0.9rem; }

/* ===== Pricing cards (services.html) ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 60px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 25px 60px -35px rgba(51,39,35,0.25);
  border: 1px solid rgba(201,138,151,0.12);
}
.price-card-featured {
  background: linear-gradient(160deg, var(--white) 0%, var(--blush) 100%);
  border: 1px solid rgba(201,138,151,0.3);
  box-shadow: var(--shadow);
}
.price-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,138,151,0.2);
}
.price-card-icon { width: 32px; height: 32px; color: var(--rose-deep); flex-shrink: 0; }
.price-card-icon svg { width: 100%; height: 100%; }
.price-card-head h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--charcoal); margin: 0; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(201,138,151,0.25);
}
.price-row:last-of-type { border-bottom: none; }
.pname {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.96rem;
}
.pdesc { font-size: 0.78rem; color: var(--charcoal-soft); font-weight: 400; }
.pprice {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--rose-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

/* 现金/刷卡双价 */
.price-legend {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 2px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.price-legend span { min-width: 54px; text-align: right; }
.pprices { display: flex; gap: 12px; flex-shrink: 0; }
.pprices span {
  min-width: 54px;
  text-align: right;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  white-space: nowrap;
}
.pprices .cash { color: var(--rose-deep); }
.pprices .card { color: var(--charcoal-soft); font-weight: 400; }
.cash-note {
  text-align: center;
  margin: 30px 0 0;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.cash-note strong { color: var(--rose-deep); font-weight: 600; }
.price-card-note {
  margin: 18px 0 0;
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  font-style: italic;
}

/* ===== Why section ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blush-soft), var(--blush));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.why-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(122,46,66,0.05) 40%, rgba(51,39,35,0.55) 100%);
}
.why-visual .why-badge {
  position: relative;
  z-index: 2;
}
/* 浅色系图片专用：用混合模式把冷灰背景染成品牌柔粉，花与手保持自然 */
.why-visual-light {
  background-color: #FBD9E2;
  background-blend-mode: multiply;
}
.why-visual-light .why-visual-overlay {
  background: linear-gradient(200deg, rgba(248,184,200,0.08) 35%, rgba(122,46,66,0.22) 100%);
}
.feature-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.feature-item { display: flex; gap: 18px; }
.feature-item .num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--rose);
  width: 40px; flex-shrink: 0;
}
.feature-item h4 { margin: 0 0 6px; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; }
.feature-item p { margin: 0; font-size: 0.92rem; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-grid[hidden] { display: none; }
.gallery-tile {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px -25px rgba(51,39,35,0.4);
  background: var(--blush);
  transition: transform 0.35s ease;
}
.gallery-tile:hover { transform: translateY(-6px); }
.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile span {
  position: relative;
  min-width: 0;
  max-width: 100%;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  z-index: 2;
}
.gallery-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(51,20,28,0.65) 100%);
  z-index: 1;
}
.gallery-note { text-align: center; margin-top: 28px; font-size: 0.85rem; color: var(--charcoal-soft); }

/* ===== Reviews ===== */
.reviews-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.rating-badge strong {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--rose-deep);
  display: block;
}
.rating-badge .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin: 6px 0; }
.rating-badge span.src { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--charcoal-soft); }
.reviews-cta { text-align: center; margin-top: 46px; }

/* 双栏版评价区：文字左对齐，右侧配图 */
.reviews-title { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 16px 0 0; }
.reviews-wrap-left {
  justify-content: flex-start;
  gap: 46px;
  text-align: left;
  margin-top: 34px;
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 25px 60px -35px rgba(51,39,35,0.25);
}
.location-card .row { display: flex; gap: 16px; margin-bottom: 26px; }
.location-card .row .ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush-soft); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.location-card .row h4 { margin: 0 0 4px; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; }
.location-card .row p { margin: 0; font-size: 0.92rem; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 340px; }

/* ===== Footer ===== */
footer {
  background: var(--charcoal);
  color: #e9dcd8;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 18px;
}
footer p, footer a { color: #cbb9b4; font-size: 0.92rem; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer a:hover { color: var(--white); }
.footer-logo svg { height: 44px; margin-bottom: 16px; }
.footer-logo img { height: 60px; width: auto; display: block; margin-bottom: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 0.8rem;
  color: #a3908c;
}
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--rose); border-color: var(--rose); }

.sticky-call {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .why-grid, .location-grid { grid-template-columns: 1fr; }
  .hero { padding: 150px 0 80px; }
  .pricing-cards { grid-template-columns: 1fr; }
  main > .slideshow-section:first-child { padding-top: 82px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .slideshow { aspect-ratio: 4/3; }
  .slideshow-caption h3 { font-size: 1.3rem; }
  .slide-nav { width: 36px; height: 36px; font-size: 1.2rem; }
  .slide-nav.prev { left: 10px; }
  .slide-nav.next { right: 10px; }
  main > .slideshow-section:first-child { padding-top: 68px; }
  main > .slideshow-section:first-child .slideshow { height: calc(100vh - 68px); }
  .slideshow-caption { left: 20px; bottom: 22px; max-width: calc(100% - 40px); }
  .slideshow-caption h3 { font-size: 1.3rem; }
  .slideshow-actions { margin-top: 16px; gap: 10px; }
  .slideshow-actions .btn { padding: 10px 18px; font-size: 0.8rem; }
  .menu-tab { padding: 12px 20px; font-size: 0.9rem; }
  .menu-row { gap: 14px; }
  .menu-addon { padding: 20px; }
  .pprices { gap: 8px; }
  .pprices span, .price-legend span { min-width: 46px; font-size: 1rem; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-primary { padding: 10px 20px; font-size: 0.8rem; }
  .logo-mark img { height: 40px; }
  .footer-logo img { height: 52px; }
  section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 18px; left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    box-shadow: 0 20px 40px -12px rgba(122,46,66,0.5);
  }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ivory);
  padding: 24px;
  gap: 18px;
  border-bottom: 1px solid rgba(201,138,151,0.15);
}

/* ===== 全宽卡片：Artistic Waxing ===== */
.price-card-wide {
  margin-top: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 25px 60px -35px rgba(51,39,35,0.25);
  border: 1px solid rgba(203,160,90,0.18);
}
.wax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}
.wax-grid .price-row:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 760px) {
  .price-card-wide { padding: 28px 24px; }
  .wax-grid { grid-template-columns: 1fr; column-gap: 0; }
  .wax-grid .price-row:nth-last-child(-n+2) { border-bottom: 1px dashed rgba(201,138,151,0.25); }
  .wax-grid .price-row:last-child { border-bottom: none; }
}
