/* ============================================================
   Chinese Diani Restaurant — lacquer red meets the Diani coast
   Palette: lacquer #A81F24 · gold #D9A441 · ink #241812
            rice paper #FBF5E9 · palm #2E5E43
   Type: Young Serif / Ma Shan Zheng / Figtree / Spline Sans Mono
   ============================================================ */

:root {
  --red: #A81F24;
  --red-deep: #7D1419;
  --gold: #D9A441;
  --gold-soft: #E8C98A;
  --ink: #241812;
  --ink-2: #33241B;
  --paper: #FBF5E9;
  --paper-2: #F3E9D5;
  --palm: #2E5E43;
  --display: "Young Serif", "Noto Serif SC", serif;
  --calli: "Ma Shan Zheng", "Noto Serif SC", serif;
  --body: "Figtree", system-ui, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, monospace;
  --pad: clamp(1.25rem, 4vw, 3rem);
  /* This site uses one fixed warm/light palette. Opt out of browser
     auto-dark-mode (e.g. Samsung Internet, Chrome) so phones with dark
     mode on still render the intended design instead of force-inverting. */
  color-scheme: only light;
}

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

html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

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

a { color: inherit; }

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

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.12; }

h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--paper { color: var(--gold-soft); }

.band { padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.band--paper { background: var(--paper); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--red {
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(217,164,65,0.18), transparent 60%),
    linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--paper);
}

/* -------------------- preloader -------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.8rem;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo {
  width: 5.2rem;
  height: 5.2rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55));
  animation: seal-stamp 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}
@keyframes seal-stamp {
  0% { transform: scale(2.4) rotate(-14deg); opacity: 0; }
  60% { transform: scale(0.94) rotate(-3deg); opacity: 1; }
  100% { transform: scale(1) rotate(-3deg); opacity: 1; }
}
.loader__name {
  font-family: var(--display);
  font-size: 1.35rem;
  animation: loader-fade 0.5s ease 0.35s both;
}
.loader__name em { font-style: normal; color: var(--gold); }
.loader__zh {
  font-family: var(--calli);
  color: var(--gold-soft);
  letter-spacing: 0.4em;
  animation: loader-fade 0.5s ease 0.5s both;
}
@keyframes loader-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* -------------------- scroll progress -------------------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

/* -------------------- buttons -------------------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--red {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(168, 31, 36, 0.35);
}
.btn--red:hover { background: var(--red-deep); }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost {
  background: rgba(251, 245, 233, 0.12);
  color: var(--paper);
  border: 1.5px solid rgba(251, 245, 233, 0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(251, 245, 233, 0.22); }
.btn--big { padding: 0.95rem 1.9rem; font-size: 1.02rem; }

/* -------------------- nav -------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem var(--pad);
  background: rgba(36, 24, 18, 0.88);
  backdrop-filter: blur(10px);
  color: var(--paper);
  transition: box-shadow 0.25s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.nav__logo {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}
.nav__name {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.nav__name em { font-style: normal; color: var(--gold); }
.nav__links { display: flex; gap: 1.4rem; }
.nav__links a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav__links a:hover { opacity: 1; color: var(--gold); }
.nav__links a.is-active { opacity: 1; color: var(--gold); }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__status {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.5);
  color: var(--gold-soft);
  white-space: nowrap;
}
.nav__status.is-open::before,
.nav__status.is-closed::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.4rem;
  background: #6ECF8B;
}
.nav__status.is-closed::before { background: #E86A5E; }
.nav__burger { display: none; }

.mobilemenu {
  position: sticky;
  top: 3.8rem;
  z-index: 49;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem var(--pad) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.mobilemenu[hidden] { display: none; }
.mobilemenu a { text-decoration: none; font-weight: 600; }
.mobilemenu .btn { align-self: flex-start; }

/* -------------------- hero -------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 94vh, 880px);
  display: flex;
  align-items: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.09) translate(-1.2%, -1.5%); }
}
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(78deg, rgba(26, 12, 8, 0.88) 0%, rgba(38, 16, 12, 0.62) 46%, rgba(60, 20, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(26, 12, 8, 0.55) 0%, transparent 35%);
}
.hero__inner {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  padding: 6rem var(--pad);
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}
.hero__eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}
.hero__title-accent { color: var(--gold); }
.hero__sub {
  max-width: 34rem;
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(251, 245, 233, 0.92);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem; }
.chip {
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(26, 12, 8, 0.55);
  border: 1px solid rgba(217, 164, 65, 0.45);
  backdrop-filter: blur(4px);
}
.chip strong { color: var(--gold-soft); font-weight: 600; }
.chip a { color: inherit; text-decoration: none; }
.chip a:hover { text-decoration: underline; }
.chip--status.is-open strong { color: #8FE3AB; }
.chip--status.is-closed strong { color: #FFB4A8; }

/* vertical couplet rails — echo the scrolls on the real pillars */
.hero__rail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--calli);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: 0.45em;
  z-index: 1;
  padding: 1.4rem 0.45rem;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--gold-soft);
  border: 1px solid rgba(217, 164, 65, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.hero__rail--left { left: clamp(0.5rem, 2vw, 2rem); }
.hero__rail--right { right: clamp(0.5rem, 2vw, 2rem); }

/* floating lanterns w/ parallax */
.lantern {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
  transform-origin: top center;
  will-change: transform;
}
.lantern svg { animation: lantern-sway 5.5s ease-in-out infinite; transform-origin: top center; }
.lantern--2 svg { animation-duration: 6.8s; animation-delay: 0.6s; }
.lantern--3 svg { animation-duration: 4.7s; animation-delay: 1.1s; }
.lantern--1 { top: 0; right: clamp(4rem, 12vw, 12rem); }
.lantern--2 { top: 4%; right: clamp(11rem, 24vw, 22rem); }
.lantern--3 { top: 1%; left: clamp(3rem, 9vw, 9rem); }
@keyframes lantern-sway {
  0%, 100% { transform: rotate(2.5deg); }
  50% { transform: rotate(-2.5deg); }
}

.hero__scrollcue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(251, 245, 233, 0.55);
  border-radius: 14px;
  z-index: 2;
}
.hero__scrollcue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* -------------------- marquee -------------------- */
.marquee {
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
  border-block: 2px solid var(--red-deep);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 0;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* -------------------- counters -------------------- */
.counters {
  padding: clamp(2.2rem, 5vw, 3.4rem) var(--pad);
  border-bottom: 1px solid rgba(168, 31, 36, 0.15);
}
.counters__grid {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.counter strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--red);
  line-height: 1.1;
}
.counter__unit { font-size: 0.6em; color: var(--gold); }
.counter__label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(36, 24, 18, 0.65);
}

/* -------------------- story -------------------- */
.story__grid {
  max-width: 1150px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story h2 { margin-bottom: 1.2rem; }
.story p + p { margin-top: 1rem; }
.story__points {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.story__points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.story__points span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-family: var(--calli);
  font-size: 1.05rem;
}
.story__media {
  position: relative;
  min-height: 420px;
}
.story__photo {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(36, 24, 18, 0.28);
  transition: transform 0.3s ease;
}
.story__photo:hover { transform: scale(1.02) rotate(0deg) !important; }
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__photo--a {
  width: 62%;
  aspect-ratio: 3 / 4;
  top: 0;
  left: 0;
  transform: rotate(-2.5deg);
  border: 6px solid #fff;
}
.story__photo--b {
  width: 55%;
  aspect-ratio: 4 / 3.4;
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  border: 6px solid #fff;
}
.story__lobster {
  position: absolute;
  width: 44%;
  top: -9%;
  right: -2%;
  z-index: 2;
  filter: drop-shadow(0 16px 22px rgba(36, 24, 18, 0.35));
}
.float-dish { animation: float-dish 6s ease-in-out infinite; }
@keyframes float-dish {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
.story__seal {
  position: absolute;
  bottom: -4%;
  left: 6%;
  writing-mode: vertical-rl;
  font-family: var(--calli);
  font-size: 1.5rem;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 0.5rem 0.25rem;
  letter-spacing: 0.3em;
  background: var(--paper);
  transform: rotate(-4deg);
}

/* -------------------- koi divider -------------------- */
.koi {
  position: relative;
  height: 90px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.koi__pond { position: absolute; inset: 0; width: 100%; height: 100%; }
.koi__ripple {
  stroke: var(--palm);
  stroke-width: 1.6;
  opacity: 0.35;
  stroke-dasharray: 8 10;
  animation: ripple-drift 14s linear infinite;
}
.koi__ripple--2 { opacity: 0.18; animation-duration: 20s; }
@keyframes ripple-drift {
  to { stroke-dashoffset: -180; }
}
.koi__swimmer {
  position: absolute;
  top: 24px;
  left: -140px;
  animation: koi-swim 17s linear infinite;
}
.koi__swimmer svg { animation: koi-wiggle 1.6s ease-in-out infinite; }
@keyframes koi-swim {
  to { transform: translateX(calc(100vw + 300px)); }
}
@keyframes koi-wiggle {
  0%, 100% { transform: rotate(1.6deg) translateY(0); }
  50% { transform: rotate(-1.6deg) translateY(3px); }
}

/* -------------------- dishes -------------------- */
.dishes { text-align: center; }
.dishes__title { margin-bottom: 0.6rem; }
.dishes__note {
  color: rgba(251, 245, 233, 0.65);
  font-size: 0.95rem;
  margin-bottom: 2.8rem;
}
.dishes__grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.dish {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
  cursor: zoom-in;
}
.dish:hover { transform: translateY(-6px); }
.dish img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish:hover img { transform: scale(1.05); }
.dish img.crop-top { object-position: top; }
.dish figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 0.9rem;
  text-align: left;
  background: linear-gradient(0deg, rgba(20, 10, 6, 0.92) 0%, rgba(20, 10, 6, 0.55) 55%, transparent 100%);
}
.dish figcaption strong {
  font-family: var(--display);
  font-size: 1.05rem;
  display: block;
}
.dish figcaption span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

/* -------------------- lightbox -------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(20, 10, 6, 0.93);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  max-width: min(860px, 86vw);
  text-align: center;
}
.lightbox img {
  max-height: 74vh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox figcaption {
  margin-top: 1rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.2rem;
}
.lightbox figcaption small {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-top: 0.2rem;
}
.lightbox__close,
.lightbox__arrow {
  background: rgba(251, 245, 233, 0.1);
  border: 1px solid rgba(251, 245, 233, 0.35);
  color: var(--paper);
  font-size: 1.6rem;
  line-height: 1;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
  flex: 0 0 auto;
}
.lightbox__close:hover,
.lightbox__arrow:hover { background: rgba(168, 31, 36, 0.8); }
.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

/* -------------------- menu -------------------- */
.menu { background: var(--paper-2); }
.menu__card {
  max-width: 1000px;
  margin-inline: auto;
  background: var(--paper);
  border: 1.5px solid rgba(168, 31, 36, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(36, 24, 18, 0.16);
  padding: clamp(1.8rem, 5vw, 4rem);
  position: relative;
}
.menu__card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 164, 65, 0.55);
  border-radius: 12px;
  pointer-events: none;
}
.menu__head { text-align: center; margin-bottom: 2.2rem; }
.menu__seal {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 10px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--calli);
  font-size: 1.35rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  transform: rotate(-3deg);
  box-shadow: 0 6px 16px rgba(168, 31, 36, 0.35);
}
.menu__head p { max-width: 34rem; margin: 0.8rem auto 0; color: rgba(36, 24, 18, 0.75); }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.menu__tab {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(168, 31, 36, 0.35);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.menu__tab span { font-family: var(--calli); color: var(--red); margin-right: 0.3rem; }
.menu__tab:hover { border-color: var(--red); }
.menu__tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.menu__tab.is-active span { color: var(--gold-soft); }

.menu__panels { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.menu__panel { animation: panel-in 0.35s ease both; }
.menu__panel[hidden] { display: none; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.menu__subhead {
  display: flex;
  align-items: baseline;
  font-size: 1.25rem;
  color: var(--red);
  margin: 1.6rem 0 0.6rem;
}
.menu__subhead:first-child { margin-top: 0; }
.menu__panel ul { list-style: none; }
.menu__panel li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.42rem 0;
  font-size: 0.99rem;
}
.menu__panel li b {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(36, 24, 18, 0.6);
  font-style: italic;
}
.menu__panel li i {
  flex: 1;
  border-bottom: 2px dotted rgba(36, 24, 18, 0.25);
  transform: translateY(-4px);
}
.menu__panel li em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  display: flex;
  flex: 0 0 auto;
  gap: 0.75rem;
}
.menu__panel li em b {
  font-weight: 600;
  min-width: 3.4rem;
  text-align: right;
}
.menu__panel li em b:only-child { min-width: 3.4rem; }
.menu__panel li em small { font-family: var(--body); font-size: 0.68rem; opacity: 0.7; }

.menu__vat {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(36, 24, 18, 0.55);
  margin-top: 0.6rem !important;
}

.menu__subhead small {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(36, 24, 18, 0.45);
}
.menu__subhead small span { min-width: 3.4rem; text-align: right; }

/* -------------------- reviews -------------------- */
.reviews { text-align: center; }
.reviews__title { margin-bottom: 1.6rem; }
.reviews__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}
.stat {
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.4);
  background: rgba(217, 164, 65, 0.08);
}
.stat strong { color: var(--gold); }
.stat--stars { color: var(--gold-soft); }

.carousel { max-width: 1150px; margin-inline: auto; overflow: hidden; }
.carousel__track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.review {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  text-align: left;
  background: var(--ink-2);
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review p { font-size: 0.95rem; color: rgba(251, 245, 233, 0.92); }
.review cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: auto;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.carousel__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.45);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.carousel__btn:hover { background: rgba(217, 164, 65, 0.15); }
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(251, 245, 233, 0.25);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.carousel__dots button.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
.reviews__source {
  text-align: center;
  margin-top: 1.9rem;
  font-size: 0.95rem;
  color: rgba(251, 245, 233, 0.72);
}
.reviews__source a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.reviews__source a:hover { text-decoration: underline; }

/* -------------------- visit -------------------- */
.visit__grid {
  max-width: 1150px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.visit h2 { margin-bottom: 1rem; }
.visit__facts {
  margin: 1.6rem 0 1.8rem;
  display: grid;
  gap: 0.85rem;
}
.visit__facts div {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
}
.visit__facts dt {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.visit__facts dd { font-weight: 600; overflow-wrap: break-word; }
.visit__facts dd.is-open { color: var(--palm); }
.visit__facts dd.is-closed { color: var(--red-deep); }
.visit__facts a { color: inherit; text-decoration: none; }
.visit__facts a:hover { text-decoration: underline; text-decoration-color: rgba(168, 31, 36, 0.5); }
.visit__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(36, 24, 18, 0.22);
  border: 6px solid #fff;
}
.visit__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* -------------------- reserve -------------------- */
.reserve__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.reserve h2 { margin-bottom: 1.1rem; }
.reserve p { color: rgba(251, 245, 233, 0.92); }
.reserve__alt { margin-top: 1.4rem; font-weight: 600; }
.reserve__alt a { color: var(--gold-soft); }
.reserve__form {
  background: rgba(20, 10, 6, 0.28);
  border: 1px solid rgba(251, 245, 233, 0.25);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  gap: 1.1rem;
  backdrop-filter: blur(6px);
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
}
.field label small { text-transform: none; letter-spacing: 0; opacity: 0.7; }
.field input,
.field select {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--paper);
  background: rgba(251, 245, 233, 0.1);
  border: 1.5px solid rgba(251, 245, 233, 0.35);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s, background 0.15s;
}
.field input::placeholder { color: rgba(251, 245, 233, 0.45); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(251, 245, 233, 0.16);
}
.field select option { color: var(--ink); }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field--split { display: grid; grid-template-columns: 0.8fr 1.2fr 1fr; gap: 0.8rem; }
.reserve__form .btn { width: 100%; }
.reserve__hint {
  font-size: 0.82rem;
  color: rgba(251, 245, 233, 0.65);
  text-align: center;
}
.field input.field--error { border-color: #FFB4A8; background: rgba(255, 120, 100, 0.12); }

/* -------------------- footer -------------------- */
.footer {
  background: #180F0A;
  color: var(--paper);
  padding: 3rem var(--pad) 3.4rem;
  text-align: center;
}
.footer__inner { display: grid; justify-items: center; gap: 0.7rem; }
.footer__tag { font-family: var(--display); font-size: 1.05rem; color: var(--gold-soft); }
.footer__meta { font-size: 0.88rem; opacity: 0.75; }
.footer__meta a { color: inherit; }

/* -------------------- mobile action bar -------------------- */
.actionbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  background: rgba(24, 15, 10, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(217, 164, 65, 0.35);
  padding: 0.45rem 0.4rem calc(0.45rem + env(safe-area-inset-bottom));
}
.actionbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  border-radius: 10px;
}
.actionbar a:active { background: rgba(251, 245, 233, 0.1); }
.actionbar__wa { color: var(--gold) !important; }

/* -------------------- back to top -------------------- */
.totop {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 3rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(217, 164, 65, 0.4);
  background: rgba(24, 15, 10, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.3s ease;
}
.totop:hover { transform: translateY(-3px); }
.totop[hidden] { display: none; }

/* -------------------- reveal on scroll -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------- responsive -------------------- */
@media (max-width: 1050px) {
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .review { flex-basis: calc((100% - 1.2rem) / 2); }
  .hero__rail--right { display: none; }
  .lantern--2 { display: none; }
  .nav__status { display: none; }
}

@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: grid;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.4rem;
    cursor: pointer;
  }
  .nav__burger span {
    width: 24px;
    height: 2.5px;
    background: var(--paper);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .story__grid, .visit__grid, .reserve__inner { grid-template-columns: 1fr; }
  .story__media { min-height: 0; height: auto; margin-top: 1rem; padding-bottom: 2rem; }
  .story__photo { position: relative; }
  .story__photo--a { width: 78%; }
  .story__photo--b { width: 64%; margin: -3rem 0 0 auto; }
  .story__lobster { width: 38%; top: auto; bottom: 30%; right: 0; }
  .hero__rail--left { display: none; }
  .lantern--1 { right: 1.5rem; }
  .lantern--3 { left: 1rem; }
  .visit__map iframe { height: 320px; }
  .counters__grid { grid-template-columns: repeat(2, 1fr); }
  .actionbar { display: flex; }
  .footer { padding-bottom: 6.5rem; }
  .totop { bottom: 5.4rem; }
  .review { flex-basis: 100%; }
}

@media (max-width: 480px) {
  .dishes__grid { grid-template-columns: 1fr; }
  .field--split { grid-template-columns: 1fr; }
  .hero__inner { padding-block: 4.5rem; }
  .hero__scrollcue { display: none; }
  .nav__name { font-size: 1rem; }
}
@media (max-width: 360px) {
  .nav__name { font-size: 0.8rem; }
}

/* -------------------- reduced motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track,
  .koi__swimmer,
  .koi__swimmer svg,
  .koi__ripple,
  .lantern svg,
  .hero__photo,
  .hero__scrollcue span,
  .loader__logo,
  .loader__name,
  .loader__zh,
  .float-dish { animation: none; }
  .koi__swimmer { left: 12%; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .carousel__track { transition: none; }
  .menu__panel { animation: none; }
}
