@import url('fonts.css');

:root {
  --wall: #2A211D;        /* the brown-charcoal wall behind their lit sign */
  --wall-2: #3A2E28;
  --glow: #F2C99A;        /* warm backlight halo */
  --paper: #F8F6F3;
  --mirror: #E6E2DD;
  --line: #CFC9C2;
  --ink: #211F1E;
  --graphite: #5F5A55;
  --red: #B0152F;
  --red-deep: #8E0F25;
  --red-lit: #E0405A;     /* sign red, as it reads on the dark wall */
  --blush: #F6E4E6;
  --white: #FFFFFF;
  --on-wall: #D9CFC6;
  --on-wall-muted: #A99D92;

  --serif: 'Bodoni Moda', 'Bodoni 72', Didot, Georgia, serif;
  --sans: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif;
  --cjk: 'Noto Serif TC', 'PMingLiU', 'Songti TC', serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 72px;
  --edge: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.on-wall :focus-visible { outline-color: var(--glow); }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: var(--ink); color: var(--paper); padding: .6rem 1rem; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.06; margin: 0; letter-spacing: -0.012em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: 1.55rem; line-height: 1.15; }
p { margin: 0 0 1em; max-width: 62ch; }
.lede { font-size: clamp(1.125rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--graphite); max-width: 42ch; }
.zh { font-family: var(--cjk); font-weight: 600; }
.text-link { color: var(--red); font-weight: 500; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
.text-link:hover { color: var(--red-deep); }
.on-wall .text-link { color: var(--glow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: 0 1.45rem;
  border: 1.5px solid var(--ink); border-radius: 999px;
  background: transparent; color: var(--ink);
  font: 500 1rem/1 var(--sans); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); }
.btn-light { border-color: rgba(248, 246, 243, .6); color: var(--paper); }
.btn-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.count {
  display: inline-grid; place-items: center; min-width: 1.45em; height: 1.45em; padding: 0 .4em;
  border-radius: 999px; background: var(--white); color: var(--red);
  font-size: .78em; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 246, 243, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mirror);
  transition: background-color .25s, border-color .25s, color .25s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.wordmark { position: relative; z-index: 2; font: 500 1.55rem/1 var(--sans); letter-spacing: -0.02em; color: var(--graphite); text-decoration: none; white-space: nowrap; }
.wordmark-s { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--red); font-size: 1.4em; margin-left: .1em; margin-right: .02em; }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a { text-decoration: none; font-size: .98rem; }
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn)[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 7px; }
.nav-phone { opacity: .75; font-variant-numeric: tabular-nums; }
.nav-home { display: none; }
.site-nav .btn { min-height: 42px; padding-inline: 1.2rem; }
.nav-toggle {
  display: none; position: relative; z-index: 2; min-height: 42px; padding: 0 1rem;
  border: 1.5px solid currentColor; border-radius: 999px; background: none;
  font: 500 .95rem var(--sans); cursor: pointer;
}

/* Home: header floats over the dark hero until you scroll */
body[data-page="home"] .site-header { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; color: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
body[data-page="home"] .site-header .wordmark { color: var(--paper); }
body[data-page="home"] .site-header .wordmark-s { color: var(--red-lit); }
body[data-page="home"] .site-header.is-solid { background: rgba(248, 246, 243, .94); border-color: var(--mirror); color: var(--ink); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
body[data-page="home"] .site-header.is-solid .wordmark { color: var(--graphite); }
body[data-page="home"] .site-header.is-solid .wordmark-s { color: var(--red); }
body.menu-open .site-header,
body[data-page="home"].menu-open .site-header { background: transparent; border-color: transparent; color: var(--paper); backdrop-filter: none; }
body.menu-open .site-header .wordmark { color: var(--paper); }
body.menu-open .site-header .wordmark-s { color: var(--red-lit); }

/* ---------- Signature: vertical shop-sign characters ---------- */
.sign {
  font-family: var(--cjk); font-weight: 600; color: var(--red);
  writing-mode: vertical-rl; text-orientation: upright;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem); line-height: 1; letter-spacing: .14em;
  margin: 0; user-select: none;
}
.sign span { display: inline-block; }
.sign-lit { color: var(--red-lit); text-shadow: 0 0 14px rgba(224, 64, 90, .55), 0 0 44px rgba(242, 201, 154, .28); }
.sign-intro span { opacity: 0; animation: ink-in .8s ease-out forwards; animation-delay: .35s; }
.sign-intro span:nth-child(2) { animation-delay: .5s; }
.sign-intro span:nth-child(3) { animation-delay: .65s; }
.sign-intro span:nth-child(4) { animation-delay: .8s; }
@keyframes ink-in { from { opacity: 0; transform: translateY(-.25em); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }

/* ---------- Mirror frame (photos) ---------- */
.mirror { display: block; border: 6px solid var(--ink); background: var(--ink); overflow: hidden; }
.mirror img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Layout helpers ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tint { background: var(--mirror); }
.on-wall { background: var(--wall); color: var(--paper); }
.on-wall .lede, .on-wall p { color: var(--on-wall); }
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split-rev { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin: 0; color: var(--graphite); max-width: 40ch; }
.on-wall .section-head p { color: var(--on-wall-muted); }

/* ---------- Home hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--wall); color: var(--paper); min-height: min(100svh, 980px); display: flex; }
.hero-media { position: absolute; top: 0; right: 0; bottom: 0; width: min(60vw, 900px); z-index: -1; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--wall) 0%, rgba(42, 33, 29, .55) 30%, rgba(42, 33, 29, 0) 60%),
    linear-gradient(0deg, var(--wall) 0%, rgba(42, 33, 29, 0) 35%),
    linear-gradient(180deg, rgba(42, 33, 29, .7) 0%, rgba(42, 33, 29, 0) 22%);
}
.hero-inner { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem)); padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: var(--paper); font-size: clamp(2.8rem, 6vw, 5.6rem); max-width: 11.5ch; }
.hero .lede { margin-top: 1.5rem; color: var(--on-wall); }
.hero .btn-row { margin-top: 2rem; }
.hero .sign { align-self: start; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin: 2.75rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid rgba(248, 246, 243, .18); max-width: 560px; }
.hero-facts div { display: flex; flex-direction: column; }
.hero-facts dt { font-size: .9rem; color: var(--on-wall-muted); }
.hero-facts dd { margin: 0; font-size: 1.15rem; font-weight: 500; font-variant-numeric: tabular-nums; }
.fact-link { text-decoration: underline; text-decoration-color: rgba(248, 246, 243, .35); text-underline-offset: 4px; }
.fact-link:hover { text-decoration-color: var(--paper); }
.fact-star { color: #F4B400; }
.fact-count { color: var(--on-wall-muted); font-weight: 400; font-size: .9em; }
.hero-copy > * { animation: rise .9s cubic-bezier(.2, .7, .2, 1) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-media { animation: fade 1.4s ease-out both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Reels rail ---------- */
.rail-wrap { position: relative; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(210px, 21vw, 270px);
  gap: clamp(.75rem, 1.6vw, 1.25rem);
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  padding: .25rem var(--edge) 1rem; scroll-padding-inline: var(--edge);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail[data-loop] { scroll-snap-type: none; }
.reel { margin: 0; scroll-snap-align: start; }
.reel-frame { position: relative; display: block; aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; background: #000; box-shadow: 0 0 0 1px rgba(248, 246, 243, .1); }
.reel-frame video, .reel-frame img { width: 100%; height: 100%; object-fit: cover; }
.reel figcaption { margin-top: .7rem; font-size: .95rem; color: var(--on-wall); }
.rail-nav { display: flex; gap: .5rem; }
.rail-btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(248, 246, 243, .35); background: none; font: 500 1.3rem/1 var(--sans); cursor: pointer; }
.rail-btn:hover:not(:disabled) { border-color: var(--paper); }
.rail-btn:disabled { opacity: .3; cursor: default; }
.section-tint .rail-btn, .rail-light .rail-btn { border-color: var(--line); }

/* ---------- Home: featured ---------- */
.feature-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.75rem); }
.feature:nth-child(2) { margin-top: 4.5rem; }
.feature:nth-child(3) { margin-top: 2.25rem; }
.feature .mirror { aspect-ratio: 4 / 5; }
.feature h3 { margin-top: 1.4rem; }
.feature p { color: var(--graphite); margin: .5rem 0 .8rem; }

/* ---------- Quotes / proof ---------- */
.quote { margin: 0; }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.1vw, 2.5rem); line-height: 1.22; max-width: 26ch; margin: 0; color: inherit; }
.quote cite { display: block; margin-top: 1.25rem; font-style: normal; color: var(--graphite); }
.proof-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; }
.rating-line { font-size: 1.1rem; color: var(--graphite); max-width: 32ch; margin: 0; }
.rating-line strong { display: block; font-weight: 600; color: var(--ink); font-size: 1.35rem; margin-bottom: .35rem; }

/* Google rating card: the whole card links to the Google Maps listing */
.g-rating {
  display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; align-items: center;
  max-width: 24rem; padding: 1.25rem 1.4rem;
  background: var(--white); color: var(--ink); text-decoration: none;
  border: 1.5px solid var(--line); border-radius: 16px;
  transition: border-color .15s, box-shadow .2s, transform .2s;
}
.g-rating:hover { border-color: var(--ink); box-shadow: 0 10px 28px rgba(33, 31, 30, .12); transform: translateY(-2px); }
.g-rating svg { grid-row: span 2; width: 40px; height: 40px; }
.g-score { display: flex; align-items: baseline; gap: .6rem; font-size: 1.9rem; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.g-stars { position: relative; display: inline-block; font-size: 1.05rem; letter-spacing: .08em; color: #D9D4CE; line-height: 1; }
.g-stars::before { content: '★★★★★'; position: absolute; inset: 0; width: var(--fill, 94%); overflow: hidden; color: #F4B400; }
.g-meta { color: var(--graphite); font-size: .98rem; }
.g-meta strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.g-sub { grid-column: 1 / -1; margin: .5rem 0 0; padding-top: .75rem; border-top: 1px solid var(--mirror); color: var(--graphite); font-size: .9rem; }

/* ---------- Visit ---------- */
.visit-list { margin: 1.75rem 0 2rem; display: grid; gap: 1.25rem; }
.visit-list div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.visit-list dt { color: var(--graphite); font-size: .95rem; padding-top: .2rem; }
.visit-list dd { margin: 0; font-size: 1.2rem; font-weight: 500; line-height: 1.4; }
.visit-list a { text-decoration: none; }
.visit-list a:hover { color: var(--red); }
.visit-photo { aspect-ratio: 4 / 3; }

/* ---------- Inner page head ---------- */
.page-head {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: start;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3.5rem);
}
.page-head h1 { max-width: 14ch; }
.page-head .lede { margin-top: 1.25rem; }
.page-head .sign { font-size: clamp(2rem, 3.8vw, 3.4rem); }

/* ---------- Services menu ---------- */
.jump { display: flex; gap: .5rem; margin: 0; padding: 0 0 .25rem; list-style: none; overflow-x: auto; scrollbar-width: none; }
.jump::-webkit-scrollbar { display: none; }
.jump a { display: inline-block; padding: .55rem 1rem; border: 1.5px solid var(--line); border-radius: 999px; text-decoration: none; font-size: .95rem; white-space: nowrap; }
.jump a:hover { border-color: var(--ink); }
.menu-group {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.menu-intro { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.menu-intro p { color: var(--graphite); margin-top: 1rem; }
.menu-intro .mirror { width: 70%; aspect-ratio: 4 / 5; margin-top: 1.5rem; }
.menu { list-style: none; margin: 0; padding: 0; }
.menu li { padding: 1.2rem 0; border-bottom: 1px solid var(--mirror); }
.menu li:first-child { padding-top: 0; }
.menu-row { display: flex; align-items: baseline; gap: .75rem; }
.menu-name { font-family: var(--serif); font-size: 1.3rem; line-height: 1.3; }
.menu-leader { flex: 1; min-width: 1.5rem; border-bottom: 2px dotted #B6AFA7; transform: translateY(-.28em); }
.menu-price { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem 1rem; margin-top: .4rem; color: var(--graphite); font-size: .95rem; }
.add-btn {
  flex: none; display: inline-flex; align-items: center; gap: .35rem;
  min-height: 38px; padding: 0 .95rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  font: 500 .9rem var(--sans); cursor: pointer; transition: background-color .15s, border-color .15s, color .15s;
}
.add-btn:hover { border-color: var(--ink); }
.add-btn[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: var(--white); }
.add-btn[aria-pressed="true"] .add-icon { animation: pop .35s cubic-bezier(.2, 1.4, .4, 1); }
@keyframes pop { from { transform: scale(.4); } to { transform: none; } }
.note { background: var(--white); border-left: 3px solid var(--red); padding: 1.25rem 1.5rem; }
.note p { margin: 0; color: var(--graphite); }
.note p + p { margin-top: .5rem; }

/* ---------- Gallery ---------- */
.filters { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; padding-bottom: .25rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.filters::-webkit-scrollbar { display: none; }
.filter { flex: none; padding: .6rem 1.05rem; border-radius: 999px; border: 1.5px solid var(--line); background: none; font: 500 .95rem var(--sans); cursor: pointer; white-space: nowrap; }
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filter span { opacity: .6; font-variant-numeric: tabular-nums; margin-left: .3rem; }
.masonry { columns: 3 260px; column-gap: clamp(1rem, 2.4vw, 1.75rem); }
.masonry figure { break-inside: avoid; margin: 0 0 clamp(1rem, 2.4vw, 1.75rem); }
.g-open { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.g-open .mirror { transition: border-color .2s; }
.g-open:hover .mirror { border-color: var(--red); }
.masonry img { width: 100%; height: auto; }
.masonry figcaption { margin-top: .6rem; color: var(--graphite); font-size: .95rem; }
.masonry figcaption strong { display: block; color: var(--ink); font-family: var(--serif); font-weight: 500; font-size: 1.15rem; }

.lightbox { border: 0; padding: 0; background: transparent; color: var(--paper); max-width: min(94vw, 980px); max-height: 94vh; overflow: visible; }
.lightbox::backdrop { background: rgba(33, 31, 30, .94); }
.lightbox-inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; }
.lightbox img { max-height: 80vh; width: auto; margin-inline: auto; border: 6px solid var(--ink); }
.lightbox figure { margin: 0; }
.lightbox figcaption { margin-top: .75rem; text-align: center; }
.lb-btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(248, 246, 243, .5); background: none; color: var(--paper); font: 500 1.4rem/1 var(--sans); cursor: pointer; }
.lb-btn:hover { border-color: var(--paper); }
.lb-close { position: absolute; top: -3.5rem; right: 0; width: auto; padding: 0 1.1rem; border-radius: 999px; font-size: .95rem; }

/* ---------- About ---------- */
.welcome { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.welcome-zh { color: var(--red); font-size: clamp(5rem, 13vw, 10rem); line-height: 1; writing-mode: vertical-rl; letter-spacing: .08em; margin: 0; }
.welcome p { font-size: 1.2rem; }
.team { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(248, 246, 243, .2); }
.team li { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 2rem; align-items: baseline; padding: 1.6rem 0; border-bottom: 1px solid rgba(248, 246, 243, .2); }
.team h3 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.team p { margin: 0; font-size: 1.1rem; }
.reviews { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); }
.reviews .quote p { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.5rem 3rem; margin: 0; }
.facts div { border-top: 1px solid var(--line); padding-top: 1rem; }
.facts dt { font-family: var(--serif); font-size: 1.3rem; }
.facts dd { margin: .35rem 0 0; color: var(--graphite); }
.photo-pair { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(1rem, 2.4vw, 1.75rem); align-items: end; }
.photo-pair .mirror:first-child { aspect-ratio: 4 / 3; }
.photo-pair .mirror:last-child { aspect-ratio: 3 / 4; }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; padding-bottom: clamp(3.5rem, 8vw, 7rem); }
.step { border: 0; margin: 0 0 3rem; padding: 0; min-width: 0; }
.step-title { display: flex; align-items: baseline; gap: .8rem; padding: 0; margin-bottom: 1.25rem; font-family: var(--serif); font-size: 1.8rem; }
.step-num { font: 600 1rem var(--sans); color: var(--red); font-variant-numeric: tabular-nums; }
.step-hint { margin: -.5rem 0 1.25rem; color: var(--graphite); }
.svc-group { border: 0; padding: 0; margin: 0 0 1.5rem; min-width: 0; }
.svc-group legend { padding: 0; margin-bottom: .6rem; font-weight: 600; }
.svc {
  position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "box name price" "box meta price";
  column-gap: .9rem; align-items: center;
  padding: .8rem 1rem; margin-bottom: .5rem;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer;
  transition: border-color .15s, background-color .15s;
}
.svc:hover { border-color: var(--ink); }
.svc input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.svc-box { grid-area: box; width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line); background: var(--white); display: grid; place-items: center; }
.svc-name { grid-area: name; font-weight: 500; line-height: 1.3; }
.svc-meta { grid-area: meta; font-size: .88rem; color: var(--graphite); }
.svc-price { grid-area: price; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.svc:has(input:checked) { border-color: var(--red); background: var(--blush); }
.svc input:checked ~ .svc-box { background: var(--red); border-color: var(--red); }
.svc input:checked ~ .svc-box::after { content: '✓'; color: var(--white); font-size: .85rem; font-weight: 700; line-height: 1; }
.svc:has(input:focus-visible) { outline: 2px solid var(--red); outline-offset: 2px; }
.service-total { margin: .25rem 0 0; font-weight: 600; }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 500; }
.hint { font-size: .9rem; color: var(--graphite); font-weight: 400; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
select, input[type="text"], input[type="tel"], textarea {
  width: 100%; min-height: 50px; padding: .75rem .95rem;
  font: inherit; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px;
}
textarea { min-height: 96px; resize: vertical; }
input[type="text"]:focus, input[type="tel"]:focus, textarea:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px var(--blush); }
[aria-invalid="true"] { border-color: var(--red); }
.chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .6rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span { display: block; height: 100%; padding: .8rem 1rem; background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; font-weight: 500; }
.chip small { display: block; margin-top: .15rem; font-weight: 400; font-size: .86rem; color: var(--graphite); }
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { border-color: var(--red); background: var(--blush); }
.chip input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }

.picker { display: grid; grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.cal { background: var(--white); border: 1.5px solid var(--mirror); border-radius: 14px; padding: 1rem 1rem 1.1rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.cal-month { font-family: var(--serif); font-size: 1.3rem; }
.cal-nav { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--mirror); background: none; font: 500 1.1rem var(--sans); cursor: pointer; }
.cal-nav:hover:not(:disabled) { border-color: var(--ink); }
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { text-align: center; font-size: .78rem; color: var(--graphite); padding: .2rem 0 .35rem; }
.cal-day { aspect-ratio: 1; border: 0; border-radius: 50%; background: none; font: 500 .95rem var(--sans); font-variant-numeric: tabular-nums; cursor: pointer; }
.cal-day:hover:not(:disabled) { background: var(--mirror); }
.cal-day:disabled { color: #BDB6AE; font-weight: 400; cursor: default; }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--ink); }
.cal-day[aria-pressed="true"] { background: var(--red); color: var(--white); box-shadow: none; }
.times-head { margin: 0 0 .75rem; font-weight: 500; }
.times-empty { margin: 0; color: var(--graphite); grid-column: 1 / -1; }
.times { display: grid; grid-template-columns: repeat(auto-fill, minmax(5.2rem, 1fr)); gap: .5rem; }
.time { min-height: 44px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); font: 500 .95rem var(--sans); font-variant-numeric: tabular-nums; cursor: pointer; }
.time:hover:not(:disabled) { border-color: var(--ink); }
.time:disabled { background: transparent; border-style: dashed; color: #ADA69E; text-decoration: line-through; cursor: not-allowed; }
.time[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: var(--white); }
.times-key { margin: .9rem 0 0; font-size: .88rem; color: var(--graphite); }

.form-error { background: var(--blush); border-left: 3px solid var(--red); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.form-error:focus { outline: none; }
.form-error p { margin: 0 0 .35rem; font-weight: 600; }
.form-error ul { margin: 0; padding-left: 1.2rem; }

.summary { position: sticky; top: calc(var(--header-h) + 1.5rem); background: var(--wall); color: var(--paper); padding: 1.75rem; border-radius: 4px; }
.summary h2 { font-size: 1.7rem; }
.sum-list { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.sum-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid rgba(248, 246, 243, .14); font-size: .98rem; }
.sum-list li span:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; }
.sum-list .empty { color: var(--on-wall-muted); }
.summary dl { margin: .5rem 0 1.5rem; }
.summary dl div { display: grid; grid-template-columns: 5.5rem 1fr; gap: .75rem; padding: .7rem 0; border-bottom: 1px solid rgba(248, 246, 243, .14); }
.summary dt { color: var(--on-wall-muted); font-size: .92rem; }
.summary dd { margin: 0; }
.summary dd.empty { color: var(--on-wall-muted); }
.summary .btn { width: 100%; }
.summary small { display: block; margin-top: 1rem; color: var(--on-wall-muted); font-size: .88rem; line-height: 1.5; }
.book-bar { display: none; }

.confirm { background: var(--white); border-top: 4px solid var(--red); padding: clamp(1.75rem, 4vw, 3rem); margin-bottom: clamp(3.5rem, 8vw, 7rem); }
.confirm h2:focus { outline: none; }
.confirm .lede { margin-top: 1rem; }
.confirm-tick { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: var(--white); display: grid; place-items: center; font-size: 1.6rem; margin: 0 0 1.25rem; animation: pop .5s cubic-bezier(.2, 1.4, .4, 1); }
.confirm dl { margin: 1.5rem 0; display: grid; gap: .6rem; }
.confirm dl div { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; }
.confirm dt { color: var(--graphite); }
.confirm dd { margin: 0; font-weight: 500; }
.confirm .btn-row { margin-top: 1.5rem; }

/* ---------- Dock: visit tray on desktop, call/book bar on phones ---------- */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; padding: 0 var(--gutter) calc(1rem + env(safe-area-inset-bottom)); pointer-events: none; transform: translateY(120%); transition: transform .35s cubic-bezier(.2, .7, .2, 1); }
.dock.is-shown { transform: none; }
.dock-inner { pointer-events: auto; display: flex; align-items: center; gap: .75rem; max-width: 640px; margin-inline: auto; padding: .5rem .5rem .5rem 1.25rem; background: var(--ink); color: var(--paper); border-radius: 999px; box-shadow: 0 12px 32px rgba(33, 31, 30, .28); }
.dock-text { flex: 1; min-width: 0; font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock-text strong { font-weight: 600; }
.dock-call { display: none; }
.dock .btn { min-height: 44px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--wall); color: var(--paper); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 3fr)); gap: 2.5rem; }
.site-footer .wordmark { color: var(--paper); font-size: 1.9rem; }
.site-footer .wordmark-s { color: var(--red-lit); }
.footer-grid h2 { font: 500 1rem var(--sans); color: var(--on-wall-muted); margin-bottom: .6rem; }
.footer-grid p { margin: 0; }
.footer-grid a { text-decoration-color: rgba(248, 246, 243, .35); text-underline-offset: 4px; }
.footer-grid a:hover { text-decoration-color: var(--paper); }
.footer-grid .footer-tag { margin-top: 1rem; color: var(--on-wall-muted); max-width: 30ch; }
.footer-base { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(248, 246, 243, .14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--on-wall-muted); font-size: .88rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .picker { grid-template-columns: 1fr; }
  .cal { max-width: 24rem; }
  .booking { grid-template-columns: 1fr; }
  .summary { position: static; }
  .summary .btn, .summary small { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    align-items: center; justify-content: space-between; gap: 1rem;
    padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
    background: var(--ink); color: var(--paper); box-shadow: 0 -8px 24px rgba(33, 31, 30, .18);
  }
  .book-bar span { font-size: .98rem; }
  body.is-confirmed .book-bar { display: none; }
  body[data-page="book"] { padding-bottom: 76px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: .35rem;
    padding: calc(var(--header-h) + 1rem) var(--gutter) 3rem;
    background: var(--wall); color: var(--paper);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav .nav-home { display: block; }
  .site-nav a:not(.btn) { font-family: var(--serif); font-size: clamp(2.4rem, 11vw, 3.4rem); line-height: 1.2; }
  .site-nav a.nav-phone { font-family: var(--sans); font-size: 1.2rem; line-height: 1.4; margin-top: 1rem; opacity: .8; }
  .site-nav .btn { margin-top: 1rem; min-height: 52px; padding-inline: 1.6rem; font-size: 1.05rem; }
  .site-nav a:not(.btn)[aria-current="page"] { text-decoration-color: var(--red-lit); }

  .hero { flex-direction: column; min-height: 0; }
  .hero-media { position: relative; width: 100%; height: 68svh; min-height: 420px; }
  .hero-media::after { background: linear-gradient(0deg, var(--wall) 2%, rgba(42, 33, 29, 0) 45%), linear-gradient(180deg, rgba(42, 33, 29, .75) 0%, rgba(42, 33, 29, 0) 25%); }
  .hero-inner { margin-top: -7rem; padding-top: 0; }
  .hero .sign { position: absolute; top: calc(var(--header-h) + 1rem); right: var(--gutter); font-size: 2.6rem; }

  .split, .split-rev, .proof-grid, .menu-group, .welcome { grid-template-columns: 1fr; }
  .menu-intro { position: static; }
  .menu-intro .mirror { display: none; }
  .feature-row { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 78vw; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
  .feature-row::-webkit-scrollbar { display: none; }
  .feature { scroll-snap-align: start; }
  .feature:nth-child(n) { margin-top: 0; }
  .rail { grid-auto-columns: 58vw; }
  .rail-nav { display: none; }
  .team li { grid-template-columns: 1fr; gap: .35rem; }
  .reviews { grid-template-columns: 1fr; }
  .welcome-zh { writing-mode: horizontal-tb; font-size: 5rem; }
  .section-head { flex-direction: column; align-items: start; gap: 1rem; }

  .dock { transform: none; }
  .dock-call { display: inline-flex; }
  .dock-inner { border-radius: 999px; }
  body:not([data-page="book"]) { padding-bottom: 84px; }
}
@media (max-width: 560px) {
  .masonry { columns: 2 140px; column-gap: .75rem; }
  .masonry figure { margin-bottom: .75rem; }
  .masonry figcaption { font-size: .85rem; }
  .masonry figcaption strong { font-size: 1rem; }
  .mirror { border-width: 4px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .visit-list div { grid-template-columns: 1fr; gap: .2rem; }
  .lightbox-inner { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { display: none; }
  .menu-meta { align-items: flex-start; }
  .photo-pair { grid-template-columns: 1fr; }
  .dock-text { font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .sign-intro span { opacity: 1; }
}
