@font-face {
  font-family: "SeseYouHei";
  src: url("assets/fonts/FZYouHei-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "SeseYouHei";
  src: url("assets/fonts/FZYouHei-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "SeseYouHei";
  src: url("assets/fonts/FZYouHei-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "SeseChiron";
  src: url("assets/fonts/ChironSansHKPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "SeseChiron";
  src: url("assets/fonts/ChironSansHKPro-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "SeseChiron";
  src: url("assets/fonts/ChironSansHKPro-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

:root {
  --mustard: #c7c08f;
  --mustard-deep: #b9ae75;
  --paper: #e5e5e2;
  --paper-warm: #f0eee7;
  --ink: #111111;
  --muted: #68665f;
  --line: rgba(17, 17, 17, 0.18);
  --field: rgba(255, 255, 255, 0.42);
  --display:
    "SeseChiron",
    "PingFang SC",
    -apple-system,
    sans-serif;
  --body: "SeseChiron", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  letter-spacing: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-shell {
  min-height: 100svh;
  padding-bottom: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  background: rgba(229, 229, 226, 0.88);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 15px;
}

.language-toggle {
  min-width: 22px;
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.15;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-bottom-color: currentColor;
  color: var(--ink);
}

html[data-language="zh"] .en,
html[data-language="zh"] .booking-language.en,
html[data-language="zh"] .section-title-en.en {
  display: none !important;
}

html[data-language="en"] .zh,
html[data-language="en"] .booking-language.zh {
  display: none !important;
}

html[data-language="zh"] .intro-en,
html[data-language="en"] .intro-zh {
  display: none !important;
}

.menu-toggle,
.menu-close,
.menu-backdrop {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle {
  display: inline-grid;
  width: 38px;
  height: 34px;
  align-content: center;
  justify-self: start;
  gap: 6px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.wordmark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: center;
}

.wordmark img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav a,
.top-booking,
.side-menu a,
.bilingual-link {
  display: grid;
  gap: 2px;
  place-items: center;
  line-height: 1.05;
}

.desktop-nav .zh,
.top-booking .zh,
.side-menu .zh,
.bilingual-link .zh {
  font-size: 12px;
  font-weight: 500;
}

.desktop-nav .en,
.top-booking .en,
.side-menu .en,
.bilingual-link .en {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.top-booking {
  justify-self: auto;
  width: max-content;
  min-width: 0;
  min-height: auto;
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 600;
}

.top-booking:hover,
.top-booking:focus-visible {
  border-bottom-color: currentColor;
}

.top-booking .en,
.side-menu .en {
  color: rgba(52, 50, 46, 0.72);
  font-size: 12px;
}

.desktop-nav a[aria-current="page"],
.side-menu a[aria-current="page"],
.top-booking[aria-current="page"] {
  color: var(--ink);
}

.side-menu {
  position: fixed;
  z-index: 42;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(78vw, 320px);
  align-content: start;
  gap: 22px;
  padding: 28px 26px;
  background: rgba(240, 238, 231, 0.96);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 18px 0 54px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateX(-105%);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.side-menu[hidden],
.menu-backdrop[hidden] {
  display: none;
}

.side-menu.is-open {
  opacity: 1;
  transform: translateX(0);
}

.side-menu a {
  justify-items: start;
  gap: 4px;
  font-size: 22px;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.side-menu.is-open a {
  opacity: 1;
  transform: translateX(0);
}

.side-menu.is-open a:nth-of-type(2) {
  transition-delay: 35ms;
}

.side-menu.is-open a:nth-of-type(3) {
  transition-delay: 70ms;
}

.side-menu.is-open a:nth-of-type(4) {
  transition-delay: 105ms;
}

.side-menu.is-open a:nth-of-type(5) {
  transition-delay: 140ms;
}

.side-menu .zh {
  font-size: 18px;
}

.side-menu .en {
  font-size: 16px;
}

.menu-close {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 30px;
  line-height: 0.8;
}

.menu-backdrop {
  position: fixed;
  z-index: 41;
  inset: 0;
  background: rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.menu-backdrop.is-open {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.side-menu {
  inset: 0;
  width: 100vw;
  max-width: none;
  min-height: 100svh;
  align-content: stretch;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: max(34px, env(safe-area-inset-top)) 30px max(34px, env(safe-area-inset-bottom));
  background: rgba(229, 229, 226, 0.98);
  border-right: 0;
  box-shadow: none;
  transform: translateY(-10px);
}

.side-menu.is-open {
  transform: translateY(0);
}

.side-menu .menu-mark {
  position: absolute;
  top: max(34px, env(safe-area-inset-top));
  left: 30px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  opacity: 1;
  transform: none;
}

.side-menu .menu-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.menu-close {
  position: absolute;
  top: max(34px, env(safe-area-inset-top));
  right: 30px;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 0;
  border-radius: 0;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 300;
  line-height: 0.8;
}

.menu-links {
  align-self: center;
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 56px 0 12px;
  transform: translateY(7svh);
}

.side-menu .menu-links a {
  justify-items: center;
  gap: 5px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.side-menu.is-open .menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.side-menu.is-open .menu-links a:nth-child(2) {
  transition-delay: 45ms;
}

.side-menu.is-open .menu-links a:nth-child(3) {
  transition-delay: 90ms;
}

.side-menu.is-open .menu-links a:nth-child(4) {
  transition-delay: 135ms;
}

.side-menu.is-open .menu-links a:nth-child(5) {
  transition-delay: 180ms;
}

.side-menu.is-open .menu-links a:nth-child(6) {
  transition-delay: 225ms;
}

.side-menu.is-open .menu-links a:nth-child(7) {
  transition-delay: 270ms;
}

.menu-drops {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 28px);
  justify-content: center;
  align-items: start;
  gap: 3px;
  width: 90px;
  height: 74px;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(-2px);
  transition:
    opacity 320ms ease 210ms,
    transform 320ms ease 210ms;
}

.side-menu.is-open .menu-drops {
  opacity: 1;
  transform: translateY(0);
}

.menu-drop {
  display: block;
  width: 28px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
  transform-origin: 50% 12%;
}

.side-menu.is-open .menu-drop {
  animation: dropCartoon 2.7s steps(5, end) infinite;
}

.drop-one {
  margin-top: 18px;
}

.drop-two {
  margin-top: 0;
}

.drop-three {
  margin-top: 24px;
}

.side-menu.is-open .drop-one {
  animation-delay: 0.12s;
}

.side-menu.is-open .drop-two {
  animation-delay: 0.54s;
}

.side-menu.is-open .drop-three {
  animation-delay: 0.96s;
}

.side-menu .menu-links .zh {
  font-size: clamp(25px, 8vw, 38px);
  font-weight: 400;
  letter-spacing: 0;
}

.side-menu .menu-links .en {
  color: rgba(52, 50, 46, 0.72);
  font-size: clamp(22px, 7vw, 34px);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: none;
}

.side-menu .menu-links a[aria-current="page"] .zh {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.page {
  padding: 28px 18px 42px;
}

.visual-hero {
  display: grid;
  min-height: auto;
  align-content: start;
  padding: clamp(18px, 4vw, 42px) 18px clamp(28px, 5vw, 54px);
  background: var(--paper);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.visual-hero-media {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
}

.visual-hero-media picture {
  display: block;
}

.visual-hero-media img {
  display: block;
  width: calc(100% + 1px);
  height: auto;
  margin-left: -1px;
  filter: saturate(0.95) contrast(1);
}

.visual-hero-caption {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px 0 2px;
  text-align: center;
}

.visual-hero-caption h1 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.visual-hero-caption a {
  display: inline-grid;
  gap: 2px;
  margin: 0;
  line-height: 1.2;
  padding: 2px 0 5px;
  border-bottom: 1px solid currentColor;
  text-align: center;
  font-size: 14px;
}

.visual-hero-caption a .en {
  color: var(--muted);
  font-size: 12px;
}

.hero {
  display: grid;
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 56px;
  align-content: start;
}

.intro-section {
  padding-top: 56px;
}

.hero-media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mustard);
}

.hero-media img:not(.sticker-float) {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.78) contrast(0.96);
}

.sticker-float {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 92px;
  height: auto;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(229, 229, 226, 0.78);
  filter: none;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.intro-head {
  display: block;
  margin: 0 0 clamp(28px, 6vw, 38px);
}

.intro-head h2 {
  font-size: clamp(32px, 8.5vw, 50px);
}

.intro-head h2 .en,
.section-head h2 .en {
  display: block;
}

html[data-language="en"] .intro-head h2 .en,
html[data-language="en"] .section-head h2 .en {
  color: var(--ink);
  font-size: inherit;
}

.intro-head .section-title-en {
  font-size: clamp(22px, 6.5vw, 38px);
}

.intro-head h1 {
  margin-top: 14px;
}

.intro-body {
  display: flow-root;
}

.intro-text {
  display: block;
  min-width: 0;
}

.intro-text.dual-copy {
  display: block;
  overflow: visible;
}

.intro-text span {
  display: block;
  margin: 0 0 14px;
}

.intro-text span:last-child {
  margin-bottom: 0;
}

.intro-zh {
  margin: 0;
}

.intro-en {
  margin: 0;
}

.intro-body > .hero-media {
  float: right;
  width: min(42%, 178px);
  margin: 0 0 14px 18px;
}

.eyebrow {
  display: grid;
  gap: 3px;
  color: var(--muted);
}

.eyebrow .zh {
  font-size: 12px;
}

.eyebrow .en {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy > .eyebrow {
  margin-bottom: -6px;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(58px, 20vw, 122px);
}

h2 {
  font-size: clamp(44px, 14vw, 84px);
}

h3 {
  display: grid;
  gap: 3px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

h3 .en {
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.dual-copy,
.translation,
.booking-copy {
  display: grid;
  gap: 10px;
  font-size: 15px;
  line-height: 1.82;
}

.dual-copy .zh,
.translation .zh,
.booking-copy .zh {
  color: #22211e;
}

.dual-copy .en,
.translation .en,
.booking-copy .en {
  color: var(--muted);
}

.booking-intro {
  margin: 0;
}

.booking-language {
  display: grid;
  gap: 6px;
}

.booking-language + .booking-language {
  margin-top: 8px;
}

.booking-language.en {
  color: var(--muted);
}

.booking-rules {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-rules li {
  padding: 2px 0 2px 15px;
  position: relative;
  line-height: 1.5;
}

.booking-rules li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ink);
}

.booking-language.en .booking-rules li::before {
  background: rgba(17, 17, 17, 0.4);
}

.hero-copy .dual-copy .zh + .en,
.location-section > .translation .zh + .en {
  margin-top: 8px;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 72px;
}

.actions.single-action {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.actions.single-action .primary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 17, 17, 0.26);
}

.actions.single-action .primary .en {
  color: var(--muted);
}

.primary,
.secondary,
.submit {
  display: grid;
  gap: 4px;
  min-height: 56px;
  align-content: center;
  justify-items: center;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  line-height: 1.1;
}

.primary .zh,
.secondary .zh,
.submit .zh {
  font-size: 14px;
}

.primary .en,
.secondary .en,
.submit .en {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.primary,
.submit {
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.secondary,
.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.surface {
  background: var(--mustard);
}

.section {
  display: grid;
  gap: 22px;
  padding: 54px 18px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

.section-title-en {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(28px, 12vw, 78px);
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(42px, 12vw, 78px);
}

.location-section h2 {
  font-size: clamp(32px, 8.5vw, 50px);
}

.location-section .section-title-en {
  font-size: clamp(22px, 6.5vw, 38px);
}

.location-section {
  padding-bottom: 58px;
}

.contact-panel {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  margin-top: 18px;
  padding-top: 36px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  scroll-margin-top: 92px;
}

.contact-panel .compact-head {
  align-items: start;
}

.contact-panel h2 {
  font-size: clamp(32px, 8.5vw, 50px);
}

.contact-panel .section-title-en {
  font-size: clamp(22px, 6.5vw, 38px);
}

.contact-list {
  gap: 0;
}

.contact-list .about-item {
  border-bottom: 0;
}

.contact-list .translation .zh,
.contact-list p,
.contact-list a {
  color: #22211e;
}

.contact-list a {
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-bottom-color: currentColor;
}

.contact-list .platforms {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.flower-mark {
  display: block;
  width: 96px;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
}

.animated-flower {
  animation:
    flowerFloat 4.8s ease-in-out infinite,
    flowerLeafSway 6.4s ease-in-out infinite;
  transform-origin: 48% 56%;
}

.big-mark {
  width: min(28vw, 124px);
  height: auto;
  margin: 0 auto 6px;
  opacity: 1;
}

.big-mark .flower-mark {
  width: 100%;
}

.hero-copy .big-mark {
  justify-self: start;
  width: 82px;
  margin: -2px 0 0;
}

.home-mark {
  display: none;
}

.booking-layout .big-mark,
.section .big-mark {
  justify-self: center;
  width: min(26vw, 118px);
  margin: 0 auto 6px;
}

.booking-layout .hero-copy .big-mark {
  justify-self: center;
  width: min(13vw, 58px);
  margin: 0 auto;
}

.page-end-mark {
  width: clamp(78px, 12vw, 96px);
  margin: 28px auto 0;
}

.section .page-end-mark {
  grid-column: 1 / -1;
  justify-self: center;
  width: clamp(78px, 12vw, 96px);
  margin: 30px auto -16px;
}

.booking-layout > .page-end-mark {
  grid-column: 1 / -1;
  justify-self: center;
  width: clamp(78px, 12vw, 96px);
  margin: 30px auto -12px;
}

.work-hero {
  display: grid;
  gap: 18px;
  align-items: start;
}

.work-intro {
  max-width: none;
  font-size: 14px;
  line-height: 1.68;
}

.shop-intro {
  max-width: 720px;
  margin-top: 22px;
}

.work-category {
  grid-column: 1 / -1;
}

.work-category + .work-category {
  margin-top: clamp(56px, 10vw, 112px);
  padding-top: clamp(22px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.work-category-title {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.25vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.work-card {
  position: relative;
  display: grid;
  min-height: 216px;
  padding: 0;
  text-align: left;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-warm);
  cursor: pointer;
}

.work-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.work-card[hidden] {
  display: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 216px;
  object-fit: cover;
}

.work-card.is-featured {
  min-height: 300px;
}

.work-viewer {
  display: none;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(240, 240, 236, 0.96);
  color: var(--ink);
}

.work-viewer[open] {
  display: grid;
  position: fixed;
  z-index: 1000;
  inset: 0;
  margin: 0;
  transform: none;
}

.work-viewer::backdrop {
  background: rgba(17, 17, 17, 0.56);
}

.viewer-bar,
.viewer-controls {
  display: none;
}

.viewer-thumbnails {
  display: flex;
  grid-row: 2;
  gap: 8px;
  min-width: 0;
  min-height: 84px;
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  overflow-x: auto;
  background: rgba(240, 240, 236, 0.76);
  scrollbar-width: none;
}

.viewer-thumbnails::-webkit-scrollbar {
  display: none;
}

.viewer-thumbnail {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  opacity: 0.44;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.viewer-thumbnail.is-active {
  border-color: var(--ink);
  opacity: 1;
}

.viewer-track {
  grid-row: 1;
  display: flex;
  height: auto;
  min-width: 0;
  min-height: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.viewer-track::-webkit-scrollbar {
  display: none;
}

.viewer-slide {
  display: grid;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 20px 16px 10px;
  place-items: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.viewer-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.viewer-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 760px) {
  .work-viewer {
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    grid-template-rows: minmax(0, 1fr) 44px;
    width: min(calc(100vw - 64px), 1440px);
    height: min(calc(100svh - 48px), 880px);
    background: rgba(240, 240, 236, 0.78);
  }

  .work-viewer[open] {
    inset: 24px auto auto 50%;
    transform: translateX(-50%);
  }

  .viewer-bar {
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    padding: 0;
  }

  .viewer-bar p {
    display: none;
  }

  .viewer-close,
  .viewer-controls button {
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
  }

  .viewer-close:hover,
  .viewer-controls button:hover {
    opacity: 0.55;
  }

  .viewer-track {
    grid-column: 1 / -1;
    grid-row: 1;
    overflow-x: auto;
    touch-action: pan-x pan-y;
  }

  .viewer-slide {
    padding: 48px 88px 12px;
  }

  .viewer-thumbnails {
    display: none;
  }

  .viewer-controls {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 72px 1fr 72px;
    align-items: center;
    min-height: 44px;
  }

  .viewer-controls p {
    margin: 0;
    text-align: center;
    font-size: 14px;
  }

  .viewer-controls button {
    justify-self: center;
    width: 52px;
    height: 44px;
    font-size: 32px;
  }
}

.booking-layout {
  display: grid;
  gap: 20px;
}

.booking-layout > .hero-copy > h1 {
  font-size: clamp(32px, 8.5vw, 50px);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 20px 0 0;
  color: var(--muted);
}

.form-section:first-child {
  margin-top: 4px;
}

.form-section::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 1px;
  background: rgba(17, 17, 17, 0.18);
}

.form-section .zh {
  grid-column: 1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.form-section .en {
  grid-column: 1;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.15;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  display: grid;
  gap: 2px;
  color: #2f2e2a;
  font-size: 13px;
}

.field label span + span {
  color: var(--muted);
  font-size: 11px;
}

.req,
.opt {
  display: inline-grid;
  margin-left: 5px;
  padding: 2px 6px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  vertical-align: 2px;
}

.req {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.opt {
  color: var(--muted);
  background: transparent;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 8px;
  outline: 0;
  background: var(--field);
}

.contact-grid {
  display: grid;
  gap: 10px;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.field-note[hidden] {
  display: none;
}

.field-note.is-error {
  color: #641f1f;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-control {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 8px;
  background: var(--field);
  cursor: pointer;
}

.upload-button {
  display: grid;
  gap: 2px;
  min-width: 72px;
  padding: 5px 9px;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.34);
  border-radius: 2px;
  background: transparent;
  text-align: center;
  line-height: 1.05;
}

.upload-button > span {
  color: var(--muted);
  font-size: 12px;
}

.upload-status {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkline {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #2f2e2a;
  font-size: 13px;
  line-height: 1.6;
}

.checkline input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.summary {
  display: none;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
  line-height: 1.8;
}

.summary.is-visible {
  display: grid;
}

.summary.is-error {
  color: #641f1f;
  border-color: rgba(100, 31, 31, 0.32);
}

.summary-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.summary-head .flower-mark {
  width: 48px;
  height: auto;
}

.summary-text {
  white-space: pre-wrap;
}

.shop-list,
.about-list {
  display: grid;
  gap: 10px;
}

.shop-item,
.about-item {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.object-status {
  display: inline-grid;
  gap: 2px;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  color: #34322e;
  font-size: 12px;
  line-height: 1.05;
}

.object-status span + span {
  color: var(--muted);
  font-size: 11px;
}

.shop-thumb {
  width: 100%;
  min-height: 144px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-warm);
  object-fit: cover;
}

.shop-thumb-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shop-thumb-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

footer {
  padding: 26px 18px calc(40px + env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 12px;
}

@keyframes flowerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-8px) rotate(3deg) scale(1.025);
  }
}

@keyframes flowerLeafSway {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(17, 17, 17, 0));
  }
  45% {
    filter: drop-shadow(3px 1px 0 rgba(17, 17, 17, 0.02));
  }
}

@keyframes dropCartoon {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg) scaleY(1);
  }
  18% {
    transform: translateY(3px) rotate(1deg) scaleY(1.03);
  }
  36% {
    transform: translateY(7px) rotate(-0.5deg) scaleY(0.98);
  }
  54% {
    transform: translateY(5px) rotate(1.5deg) scaleY(1.02);
  }
  72% {
    transform: translateY(9px) rotate(-1deg) scaleY(0.99);
  }
  86% {
    transform: translateY(4px) rotate(0.5deg) scaleY(1.01);
  }
}

@media (min-width: 760px) {
  .topbar,
  .visual-hero,
  .page,
  .section,
  footer {
    padding-right: max(38px, calc((100vw - 1080px) / 2));
    padding-left: max(38px, calc((100vw - 1080px) / 2));
  }

  .visual-hero {
    padding-top: clamp(28px, 4vw, 50px);
    padding-bottom: 44px;
  }

  .visual-hero-media img {
    height: auto;
  }

  .desktop-nav {
    display: flex;
    justify-self: start;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    align-items: start;
  }

  .home-mark {
    display: block;
  }

  .actions {
    margin-bottom: 10px;
  }

  .hero-media {
    max-height: 360px;
  }

  .hero-copy {
    max-width: 940px;
  }

  .intro-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
    grid-template-rows: auto 1fr;
    gap: 48px;
    row-gap: 30px;
    align-items: center;
  }

  .intro-body > .intro-head {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }

  .intro-body > .hero-media {
    float: none;
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    height: clamp(330px, 44vw, 420px);
    max-height: none;
    max-width: 340px;
    margin: 0;
    align-self: center;
    justify-self: end;
  }

  .intro-body > .hero-media img:not(.sticker-float) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  .intro-body > .intro-text {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    display: block;
  }

  .section {
    grid-template-columns: 0.35fr 0.65fr;
    align-items: start;
  }

  .contact-panel {
    grid-template-columns: 0.35fr 0.65fr;
    gap: 22px;
    align-items: start;
  }

  .contact-panel .compact-head {
    grid-column: 1;
  }

  .contact-panel .contact-list {
    grid-column: 2;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .work-hero {
    display: block;
  }

  .work-intro {
    max-width: 660px;
    padding-top: 0;
  }

  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-card.is-featured {
    grid-column: span 2;
  }

  .booking-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide {
    grid-column: 1 / -1;
  }

  .shop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-shell {
    padding-bottom: 0;
  }
}

html.mobile-preview body {
  max-width: 430px;
  min-height: 100svh;
  margin: 0 auto;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.03);
}

html.mobile-preview .topbar,
html.mobile-preview .visual-hero,
html.mobile-preview .page,
html.mobile-preview .section,
html.mobile-preview footer {
  padding-right: 18px;
  padding-left: 18px;
}

html.mobile-preview .visual-hero {
  min-height: auto;
}

html.mobile-preview .visual-hero-media img {
  height: auto;
}

html.mobile-preview .desktop-nav {
  display: none;
}

html.mobile-preview .menu-toggle {
  display: inline-grid;
}

html.mobile-preview .side-menu {
  left: max(0px, calc((100vw - 430px) / 2));
  width: min(100vw, 430px);
  right: auto;
}

html.mobile-preview .menu-backdrop {
  left: max(0px, calc((100vw - 430px) / 2));
  width: min(100vw, 430px);
  right: auto;
}

html.mobile-preview .site-shell {
  padding-bottom: 0;
}

html.mobile-preview .hero-copy {
  max-width: none;
}

html.mobile-preview .hero-media {
  max-height: none;
}

html.mobile-preview .intro-zh {
  grid-column: 1;
}

html.mobile-preview .intro-body {
  display: flow-root;
}

html.mobile-preview .intro-body > .hero-media {
  float: right;
  width: min(42%, 178px);
  margin: 0 0 14px 18px;
}

html.mobile-preview .intro-body > .intro-text,
html.mobile-preview .intro-body > .intro-text.dual-copy {
  display: block !important;
  overflow: visible;
}

html.mobile-preview .section,
html.mobile-preview .contact-panel,
html.mobile-preview .booking-layout,
html.mobile-preview .booking-form,
html.mobile-preview .work-hero,
html.mobile-preview .contact-grid,
html.mobile-preview .shop-list {
  grid-template-columns: none;
}

html.mobile-preview .contact-panel .compact-head,
html.mobile-preview .contact-panel .contact-list {
  grid-column: auto;
}

html.mobile-preview .work-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html.mobile-preview .work-card.is-featured {
  grid-column: auto;
}

html.mobile-preview .wide {
  grid-column: auto;
}
