/* Premium Hairstyles & Premium Quick Cuts — desktop-first responsive */

:root {
  --bg: #F4EFE8;
  --bg-2: #ECE5DA;
  --paper: #FAF6F0;
  --ink: #171513;
  --ink-2: #3A332C;
  --muted: #79706A;
  --line: #D9D2C7;
  --line-2: #E6DFD3;
  --wood: #8C6B45;
  --wood-deep: #5E4628;
  --concrete: #D9D4CC;
  --glow: #E8B774;
  --accent: #C28A52;
  --pad: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  font-size: 16px;
  line-height: 1.55;
}

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

.display { font-family: 'Zen Kaku Gothic New', 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: 'tnum' 1; }
.zh { font-family: 'Noto Sans SC', 'Zen Kaku Gothic New', sans-serif; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

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

section { padding: 96px 0; }

.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.028em;
  margin: 0 0 10px; line-height: 1.04;
}
.section-head p { color: var(--muted); margin: 0; font-size: 17px; max-width: 56ch; }

/* ─── Top bar ─── */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(244, 239, 232, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px 0;
}
.brand-lockup { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.brand-sub  { font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  text-decoration: none; letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-2);
  padding: 7px 12px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--paper);
}

/* ─── Buttons ─── */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  cursor: pointer; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.cta:active { transform: translateY(1px); }
.cta-primary { background: var(--ink); color: var(--bg); }
.cta-primary:hover { background: #2a2520; }
.cta-glow { background: var(--glow); color: var(--ink); }
.cta-glow:hover { background: #F0C485; }
.cta-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.cta-ghost:hover { background: var(--paper); }
.cta-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.26); backdrop-filter: blur(6px); }
.cta-light:hover { background: rgba(255,255,255,0.2); }
.cta-lg { padding: 17px 28px; font-size: 15px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  max-height: 820px;
  background: #111;
  overflow: hidden;
  isolation: isolate;
}
.hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.74) saturate(1.02);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 52%, rgba(20,15,10,0.82) 100%),
    linear-gradient(90deg, rgba(20,15,10,0.5) 0%, rgba(20,15,10,0) 50%);
}
.hero-inner {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column; justify-content: space-between;
  padding-top: 36px; padding-bottom: 56px;
  color: #FAF6F0;
}
.hero-status {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px 7px 11px; border-radius: 999px;
  background: rgba(20,15,10,0.55);
  backdrop-filter: blur(8px);
  font-size: 12px; color: #fff; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5EE08A; box-shadow: 0 0 6px rgba(94,224,138,0.7);
}
.hero-body { max-width: 760px; }
.hero-zh {
  font-size: 13px; letter-spacing: 0.32em; opacity: 0.85;
  margin-bottom: 18px; font-family: 'Noto Sans SC', sans-serif; font-weight: 500;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px); line-height: 0.98; font-weight: 700;
  letter-spacing: -0.03em; font-family: 'Zen Kaku Gothic New', sans-serif;
  margin: 0 0 16px;
}
.hero-title em { font-style: normal; color: var(--glow); }
.hero-sub { font-size: 18px; opacity: 0.86; margin: 0 0 26px; max-width: 52ch; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 30px; }
.hero-tag {
  font-size: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px); color: #fff; font-weight: 500;
}
.hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Services ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  cursor: pointer;
  display: flex; flex-direction: column; min-height: 220px;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.service-card.feat {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.service-card.feat .service-num,
.service-card.feat .service-desc,
.service-card.feat .cur { color: rgba(250,246,240,0.62); }
.service-card.feat .service-tag { background: rgba(232,183,116,0.18); color: var(--glow); border-color: transparent; }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted); margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.service-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.service-zh { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 12px; }
.service-card.feat .service-zh { color: rgba(250,246,240,0.5); }
.service-desc { font-size: 13.5px; color: var(--ink-2); flex: 1; }
.service-card.feat .service-desc { color: rgba(250,246,240,0.78); }
.service-foot {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.service-card.feat .service-foot { border-top-color: rgba(255,255,255,0.16); }
.service-price {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 32px; font-weight: 700;
  font-feature-settings: 'tnum' 1; line-height: 1;
}
.service-price .cur { font-size: 15px; color: var(--muted); margin-right: 2px; font-weight: 500; }
.service-tag {
  font-size: 11px; padding: 5px 10px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--ink-2);
}
.services-note {
  grid-column: 1 / -1;
  margin-top: 12px;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  font-size: 14px; color: var(--ink-2);
}
.services-note svg { flex-shrink: 0; }

/* ─── Recent work / gallery ─── */
.work-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.work-card {
  position: relative; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.25s ease;
}
.work-card:hover { transform: translateY(-3px); }
.work-card img { width: 100%; height: 100%; object-fit: cover; }
.work-card .tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(20,15,10,0.78);
  color: #fff; font-size: 10.5px; font-weight: 600;
  padding: 5px 9px; border-radius: 6px;
  letter-spacing: 0.06em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* ─── Salon environment ─── */
.env-section { background: var(--ink); color: var(--paper); }
.env-section .section-head h2 { color: var(--paper); }
.env-section .section-head p { color: rgba(250,246,240,0.62); }
.env-section .eyebrow { color: rgba(250,246,240,0.5); }
.env-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px; gap: 12px;
}
.env-tile {
  position: relative; overflow: hidden; border-radius: 12px;
  background: #222;
}
.env-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.env-tile:hover img { transform: scale(1.04); }
.env-tile .cap {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  font-size: 12px; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  font-weight: 500; letter-spacing: 0.02em;
  display: flex; justify-content: space-between; align-items: center;
}
.env-tile .cap .pin {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; opacity: 0.7;
}
.t-a { grid-column: span 7; grid-row: span 3; }
.t-b { grid-column: span 5; grid-row: span 2; }
.t-c { grid-column: span 5; grid-row: span 1; }
.t-d { grid-column: span 6; grid-row: span 2; }
.t-e { grid-column: span 6; grid-row: span 2; }

/* ─── Wash ─── */
.wash-section { background: var(--bg-2); }
.wash-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center;
}
.wash-img {
  position: relative;
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.wash-img img { width: 100%; height: 100%; object-fit: cover; }
.wash-eyebrow { display: block; margin-bottom: 14px; }
.wash-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(34px, 3.4vw, 46px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 8px;
}
.wash-zh { font-size: 14px; color: var(--muted); margin-bottom: 22px; letter-spacing: 0.16em; }
.wash-lead { font-size: 17px; color: var(--ink-2); margin-bottom: 28px; max-width: 48ch; }
.wash-list { padding: 0; margin: 0; }
.wash-list li {
  list-style: none; padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 24px 1fr auto; gap: 14px;
  align-items: center;
  font-size: 15px; color: var(--ink);
}
.wash-list li:last-child { border-bottom: 1px solid var(--line); }
.wash-list .n {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.06em;
}
.wash-list .zh-side { color: var(--muted); font-size: 13px; }

/* ─── Booking ─── */
.book-section { background: var(--ink); color: var(--paper); }
.book-section .section-head h2 { color: var(--paper); }
.book-section .section-head p { color: rgba(250,246,240,0.62); }
.book-section .eyebrow { color: rgba(250,246,240,0.5); }
.book-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  align-items: stretch;
}
.book-card {
  position: relative;
  background: linear-gradient(168deg, #221E1A 0%, #1A1714 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 44px 40px; overflow: hidden;
  display: flex; flex-direction: column;
}
.book-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232,183,116,0.32), transparent);
  pointer-events: none;
}
.book-title {
  position: relative;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(28px, 3vw, 38px); font-weight: 700; letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.book-sub { position: relative; color: rgba(250,246,240,0.7); font-size: 16px; margin-bottom: 32px; max-width: 42ch; }
.book-cta-row { position: relative; display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.book-walkin {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,0.16);
  font-size: 14px; color: rgba(250,246,240,0.78);
}
.walkin-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #5EE08A;
  box-shadow: 0 0 8px rgba(94,224,138,0.6); flex-shrink: 0;
}
.fresha-mark {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; opacity: 0.55; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 18px;
}
.hours-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 32px 32px;
}
.hours-card h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px; font-weight: 700; margin: 0 0 4px;
}
.hours-card .sub { font-size: 12px; opacity: 0.55; margin-bottom: 22px; letter-spacing: 0.06em; }
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; font-size: 14.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hour-row:last-child { border-bottom: none; }
.hour-row.today { color: var(--glow); font-weight: 600; }
.hour-row .d { color: rgba(250,246,240,0.78); }
.hour-row.today .d { color: var(--glow); }
.hour-row .h { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.04em; }
.today-pill {
  font-size: 9.5px; opacity: 0.85; margin-left: 8px;
  padding: 2px 6px; border: 1px solid currentColor; border-radius: 4px;
  letter-spacing: 0.12em;
}

/* ─── Location ─── */
.loc-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
  align-items: stretch;
}
.loc-map {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px;
  background: var(--bg-2); min-height: 380px;
}
.loc-body {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.loc-eyebrow { font-size: 11px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.loc-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
}
.loc-addr { font-size: 15px; color: var(--ink-2); margin-top: 12px; line-height: 1.7; }
.loc-meta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--muted); }
.loc-meta-row { display: flex; gap: 10px; align-items: flex-start; }
.loc-meta-row svg { flex-shrink: 0; margin-top: 1px; opacity: 0.7; }
.loc-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 28px; flex-wrap: wrap; }
.loc-actions .cta { flex: 1; }

/* ─── Reviews / proof ─── */
.proof-section { background: var(--bg-2); }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--paper); margin-bottom: 36px;
  overflow: hidden;
}
.stat {
  text-align: center; padding: 28px 16px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 36px; font-weight: 700; letter-spacing: -0.025em;
}
.stat-num .unit { font-size: 17px; color: var(--muted); margin-left: 2px; font-weight: 500; }
.stat-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 8px; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.review-body { font-size: 15px; color: var(--ink-2); line-height: 1.6; flex: 1; }
.review-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--wood); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-meta { font-size: 11.5px; color: var(--muted); }

/* ─── Footer ─── */
.foot {
  background: var(--ink); color: rgba(250,246,240,0.72);
  padding: 64px 0 40px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--paper); font-size: 19px; font-weight: 700;
  margin-bottom: 6px;
}
.foot-zh { font-size: 12px; opacity: 0.55; letter-spacing: 0.18em; margin-bottom: 14px; }
.foot-blurb { font-size: 14px; opacity: 0.66; max-width: 36ch; }
.foot-col h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(250,246,240,0.5); font-weight: 600; margin: 0 0 16px;
}
.foot-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-links a { color: rgba(250,246,240,0.78); text-decoration: none; }
.foot-links a:hover { color: var(--paper); }
.foot-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12px; opacity: 0.5;
  font-family: 'JetBrains Mono', monospace; flex-wrap: wrap;
}

/* ─── Responsive: tablet (≤ 980px) ─── */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .wash-grid { grid-template-columns: 1fr; gap: 36px; }
  .wash-img { aspect-ratio: 16/10; }
  .book-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 260px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  /* Env grid collapses to 4-row simpler layout */
  .env-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; }
  .t-a { grid-column: span 6; grid-row: span 2; }
  .t-b { grid-column: span 3; grid-row: span 2; }
  .t-c { grid-column: span 3; grid-row: span 2; }
  .t-d { grid-column: span 3; grid-row: span 2; }
  .t-e { grid-column: span 3; grid-row: span 2; }
}

/* ─── Responsive: mobile (≤ 760px) ─── */
@media (max-width: 760px) {
  :root { --pad: 20px; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 15px; }
  .nav-links { display: none; }
  .hero { height: 50vh; min-height: 440px; }
  .hero-inner { padding-top: 28px; padding-bottom: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-cta-row .cta { flex: 1; }
  .services-grid { grid-template-columns: 1fr; }
  /* Work as horizontal carousel on mobile */
  .work-grid {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 calc(var(--pad) * -1); padding: 0 var(--pad) 12px;
    scrollbar-width: none;
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-card { flex: 0 0 64%; scroll-snap-align: start; aspect-ratio: 3/4; }
  /* Env grid 1 large + 2x2 small */
  .env-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 100px; }
  .t-a { grid-column: span 4; grid-row: span 2; }
  .t-b { grid-column: span 2; grid-row: span 2; }
  .t-c { grid-column: span 2; grid-row: span 2; }
  .t-d { grid-column: span 2; grid-row: span 2; }
  .t-e { grid-column: span 2; grid-row: span 2; }
  .book-card { padding: 32px 24px; }
  .hours-card { padding: 24px; }
  .loc-body { padding: 28px 24px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; gap: 4px; }
  .wash-list li { grid-template-columns: 22px 1fr; }
  .wash-list .zh-side { grid-column: 2; font-size: 12px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(40px, 12vw, 56px); }
  .service-card { min-height: 0; padding: 24px 22px; }
  .service-price { font-size: 28px; }
  .service-name { font-size: 21px; }
}
