/* ============================================================
   Hao's Restaurant Group — 一门三味
   Dark, warm, editorial. Gold hairlines, seal-red accents.
   ============================================================ */

:root {
  --ink: #0c0a08;
  --coal: #131009;
  --surface: #1a1610;
  --card: #201b13;
  --line: rgba(206, 168, 102, 0.18);
  --line-strong: rgba(206, 168, 102, 0.38);
  --gold: #c9a25e;
  --gold-bright: #e8cf96;
  --red: #c23b2e;
  --cream: #f4ecdd;
  --body: #cfc4b2;
  --muted: #9c8f7c;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.75);
  --ff-display: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  --ff-body: "Jost", "Noto Sans SC", "PingFang SC", system-ui, sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

html, body { overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--body);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(201, 162, 94, 0.35); color: #fff; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 40px); } }

/* ---------- Language switching ---------- */
/* Paired content: .i18n-en / .i18n-zh siblings; <html data-lang> picks one. */
[data-lang="en"] .i18n-zh { display: none !important; }
[data-lang="zh"] .i18n-en { display: none !important; }

/* Chinese-first typography: CJK display glyphs lead, wider tracking, serif fallback flipped. */
[data-lang="zh"] .hero h1,
[data-lang="zh"] .section-title {
  font-family: "Noto Serif SC", "Cormorant Garamond", "Songti SC", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}
[data-lang="zh"] .hero h1 { font-size: clamp(40px, 7vw, 88px); }
[data-lang="zh"] body { letter-spacing: 0.03em; }

.lang-toggle {
  display: inline-flex; flex: none;
  border: 1px solid var(--line-strong);
}
.lang-toggle button {
  min-width: 46px; min-height: 34px; padding: 0 12px;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.25s, background 0.25s;
}
.lang-toggle button + button { border-left: 1px solid var(--line); }
[data-lang="en"] .lang-toggle [data-set-lang="en"],
[data-lang="zh"] .lang-toggle [data-set-lang="zh"] {
  background: linear-gradient(135deg, rgba(216, 180, 117, 0.22), rgba(216, 180, 117, 0.08));
  color: var(--gold-bright);
}
.lang-toggle button:hover { color: var(--cream); }

.ov-lang { margin-top: 30px; align-self: flex-start; }
.ov-lang button { min-height: 44px; min-width: 60px; font-size: 14px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="2"] { transition-delay: 0.12s; }
[data-reveal="3"] { transition-delay: 0.24s; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.kicker::before { content: ""; width: 36px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  margin-top: 18px;
  text-wrap: balance;
}
.section-title .cn { color: var(--gold-bright); }

.section-lede { max-width: 62ch; margin-top: 18px; font-size: clamp(15px, 1.6vw, 17px); color: var(--body); }

section { padding: clamp(76px, 11vw, 140px) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #d8b475, #b98f47); border-color: transparent; color: #191204; font-weight: 500; }
.btn-gold:hover { background: linear-gradient(135deg, #e8cb90, #c9a25e); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: 12px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s, height 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(12, 10, 8, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; width: min(1320px, calc(100% - 48px)); margin-inline: auto; }

.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.brand-logo {
  height: 48px; width: auto; display: block;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
}
@media (max-width: 640px) { .brand-logo { height: 40px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-en { font-family: var(--ff-display); font-size: 17px; font-weight: 600; letter-spacing: 0.06em; color: var(--cream); }
.brand-cn { font-size: 11px; letter-spacing: 0.5em; color: var(--gold); }

.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav a {
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--body);
  padding: 8px 0; position: relative; transition: color 0.3s;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.primary-nav a:hover { color: var(--cream); }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; flex: none;
  border: 1px solid var(--line-strong);
  position: relative; z-index: 75;
}
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--cream);
  transition: transform 0.35s, opacity 0.35s, top 0.35s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-open .nav-toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(12, 10, 8, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; padding: 90px 34px 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.nav-open .nav-overlay { opacity: 1; visibility: visible; }
.nav-open { overflow: hidden; }
.nav-overlay a.ov-link {
  font-family: var(--ff-display); font-size: clamp(30px, 8vw, 44px); font-weight: 600;
  color: var(--cream); padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s;
}
.nav-open .nav-overlay a.ov-link { opacity: 1; transform: none; }
.nav-open .nav-overlay a.ov-link:nth-child(2) { transition-delay: 0.06s; }
.nav-open .nav-overlay a.ov-link:nth-child(3) { transition-delay: 0.12s; }
.nav-open .nav-overlay a.ov-link:nth-child(4) { transition-delay: 0.18s; }
.nav-overlay .ov-cn { font-size: 15px; letter-spacing: 0.35em; color: var(--gold); font-family: var(--ff-body); font-weight: 300; }
.nav-overlay .ov-call { margin-top: 34px; align-self: flex-start; }

@media (max-width: 980px) {
  .primary-nav, .header-cta, .header-inner > .lang-toggle { display: none; }
  .nav-toggle { display: block; }
}
@media (min-width: 981px) {
  .nav-overlay { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(56px, 9vh, 110px);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 40%;
  transform: scale(1.06);
  animation: heroDrift 18s ease-out forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12, 10, 8, 0.96) 0%, rgba(12, 10, 8, 0.55) 38%, rgba(12, 10, 8, 0.28) 62%, rgba(12, 10, 8, 0.55) 100%),
    linear-gradient(100deg, rgba(12, 10, 8, 0.9) 0%, rgba(12, 10, 8, 0.42) 46%, rgba(12, 10, 8, 0.05) 78%);
}

.hero-inner { width: min(1320px, calc(100% - 48px)); margin-inline: auto; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }

.hero-eyebrow { display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-bright); }
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: var(--ff-display); font-weight: 600;
  color: var(--cream);
  font-size: clamp(44px, 8.4vw, 104px);
  line-height: 1.04;
  margin: 22px 0 6px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }

.hero-sub { max-width: 56ch; font-size: clamp(15px, 1.8vw, 18px); color: var(--body); margin-top: 14px; }
.hero-sub .cn { color: var(--gold); letter-spacing: 0.2em; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-vertical {
  writing-mode: vertical-rl;
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.6vw, 30px); letter-spacing: 0.42em;
  color: rgba(232, 207, 150, 0.8);
  border-left: 1px solid var(--line-strong);
  padding-left: 22px;
  height: clamp(220px, 33vh, 330px);
  align-self: center;
}
@media (max-width: 800px) { .hero-vertical { display: none; } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: drop 2.2s ease-in-out infinite; }
@media (max-width: 700px) { .hero-scroll { display: none; } }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   Story
   ============================================================ */
.story { background: var(--coal); border-block: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

.story-copy p + p { margin-top: 18px; }
.story-copy .cn-line { color: var(--gold); letter-spacing: 0.14em; }

.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 44px; }
.stat { background: var(--coal); padding: 26px 18px; text-align: center; }
.stat b { display: block; font-family: var(--ff-display); font-weight: 600; font-size: clamp(30px, 3.6vw, 44px); color: var(--gold-bright); line-height: 1.1; }
.stat span { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.stat .cn { display: block; font-size: 12px; color: var(--gold); letter-spacing: 0.3em; margin-top: 3px; }

.story-figure { position: relative; }
.story-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.story-figure::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--line-strong); z-index: -1;
}
.story-figure figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 46px 22px 16px;
  background: linear-gradient(transparent, rgba(12, 10, 8, 0.92));
  font-size: 13px; letter-spacing: 0.14em; color: var(--cream);
}
.story-figure figcaption .cn { color: var(--gold); margin-left: 10px; }

/* ============================================================
   Restaurants
   ============================================================ */
.rest-cards { display: grid; gap: clamp(28px, 4vw, 44px); margin-top: clamp(40px, 6vw, 70px); }

.rest-card {
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: var(--surface); border: 1px solid var(--line);
  overflow: clip;
  transition: border-color 0.4s, transform 0.4s;
}
.rest-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.rest-card:nth-child(even) .rest-media { order: 2; }
@media (max-width: 860px) {
  .rest-card, .rest-card:nth-child(even) { grid-template-columns: 1fr; }
  .rest-card:nth-child(even) .rest-media { order: 0; }
}

.rest-media { position: relative; min-height: 300px; }
.rest-media img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.rest-card:hover .rest-media img.photo { transform: scale(1.045); }
.rest-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 10, 8, 0.55), transparent 55%); }
.rest-num {
  position: absolute; top: 18px; left: 22px; z-index: 2;
  font-family: var(--ff-display); font-style: italic; font-size: 15px; letter-spacing: 0.2em;
  color: var(--gold-bright);
}

.rest-body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.rest-logo { height: 62px; width: auto; background: #fff; padding: 7px 14px; border-radius: 3px; }
.rest-body h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(26px, 3vw, 36px); color: var(--cream); line-height: 1.15; }
.rest-body h3 .cn { display: block; font-size: 0.62em; color: var(--gold-bright); letter-spacing: 0.28em; margin-top: 6px; }
.rest-desc { font-size: 15px; max-width: 46ch; }

.rest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rest-tags span {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--gold);
  padding: 6px 12px;
}

.rest-info { font-size: 13.5px; color: var(--muted); line-height: 1.9; }
.rest-info a { color: var(--body); border-bottom: 1px solid var(--line-strong); transition: color 0.3s; }
.rest-info a:hover { color: var(--gold-bright); }

.rest-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ============================================================
   Signature gallery
   ============================================================ */
.signatures { background: var(--coal); border-block: 1px solid var(--line); overflow: clip; }
.sig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.gallery-nav { display: flex; gap: 10px; }
.gallery-nav button {
  width: 52px; height: 52px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-size: 18px; color: var(--cream);
  transition: background 0.3s, border-color 0.3s;
}
.gallery-nav button:hover { border-color: var(--gold); color: var(--gold-bright); }
@media (max-width: 640px) { .gallery-nav { display: none; } }

.gallery-track {
  display: flex; gap: 20px;
  margin-top: clamp(36px, 5vw, 56px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.gallery-track::-webkit-scrollbar { height: 4px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--line-strong); }

.dish-card {
  flex: 0 0 clamp(240px, 26vw, 320px);
  scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color 0.35s, transform 0.35s;
}
.dish-card:hover { border-color: var(--line-strong); transform: translateY(-5px); }
.dish-card figure { position: relative; aspect-ratio: 1 / 1; overflow: clip; }
.dish-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.dish-card:hover figure img { transform: scale(1.06); }
.dish-chip {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(12, 10, 8, 0.78); color: var(--gold-bright);
  border: 1px solid var(--line-strong);
  padding: 5px 10px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.dish-meta { padding: 18px 18px 22px; }
.dish-meta h4 { font-family: var(--ff-display); font-weight: 600; font-size: 20px; color: var(--cream); line-height: 1.25; }
.dish-meta .cn { display: block; font-family: var(--ff-body); font-weight: 300; font-size: 13px; color: var(--gold); letter-spacing: 0.18em; margin-top: 4px; }
.dish-meta .price { display: inline-block; margin-top: 12px; font-size: 14px; letter-spacing: 0.08em; color: var(--gold-bright); border-top: 1px solid var(--line); padding-top: 10px; min-width: 72px; }

/* ============================================================
   Menu explorer
   ============================================================ */
.menu-tabs {
  display: flex; gap: 10px; margin-top: clamp(36px, 5vw, 54px);
  overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  color: var(--body);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  min-height: 64px;
}
.menu-tab .tab-en { font-family: var(--ff-display); font-size: 17px; font-weight: 600; letter-spacing: 0.04em; }
.menu-tab .tab-cn { font-size: 11px; letter-spacing: 0.34em; color: var(--muted); }
.menu-tab:hover { border-color: var(--line-strong); color: var(--cream); }
.menu-tab.is-active { background: linear-gradient(135deg, rgba(216, 180, 117, 0.16), rgba(216, 180, 117, 0.05)); border-color: var(--gold); color: var(--cream); }
.menu-tab.is-active .tab-cn { color: var(--gold); }
/* zh mode: the Chinese tab label leads */
[data-lang="zh"] .menu-tab .tab-cn { order: -1; font-family: "Noto Serif SC", serif; font-size: 16px; font-weight: 600; letter-spacing: 0.14em; color: inherit; }
[data-lang="zh"] .menu-tab .tab-en { font-size: 11px; letter-spacing: 0.05em; color: var(--muted); }
[data-lang="zh"] .menu-tab.is-active .tab-cn { color: var(--cream); }
[data-lang="zh"] .menu-tab.is-active .tab-en { color: var(--gold); }

.menu-panel { margin-top: 26px; border: 1px solid var(--line); background: var(--surface); }

.menu-rest-head {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
}
.menu-rest-logo { height: 56px; width: auto; background: #fff; padding: 6px 12px; border-radius: 3px; }
.menu-rest-meta { margin-right: auto; }
.menu-rest-meta h3 { font-family: var(--ff-display); font-size: clamp(21px, 2.6vw, 28px); font-weight: 600; color: var(--cream); }
.menu-rest-meta h3 .cn { color: var(--gold-bright); font-size: 0.8em; margin-left: 8px; letter-spacing: 0.2em; }
.menu-rest-meta p { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }
.menu-rest-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.menu-cats { padding: clamp(8px, 1.6vw, 18px) clamp(16px, 3vw, 32px) clamp(20px, 3vw, 34px); }

.menu-cat { border-bottom: 1px solid var(--line); }
.menu-cat:last-child { border-bottom: 0; }
.menu-cat summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px;
  transition: color 0.3s;
}
.menu-cat summary::-webkit-details-marker { display: none; }
.cat-names { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.cat-en { font-family: var(--ff-display); font-size: clamp(19px, 2.2vw, 24px); font-weight: 600; color: var(--cream); }
.cat-cn { font-size: 13px; letter-spacing: 0.3em; color: var(--gold); }
.cat-side { display: flex; align-items: center; gap: 16px; flex: none; }
.cat-count { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 560px) { .cat-count { display: none; } }
.cat-plus { position: relative; width: 30px; height: 30px; flex: none; border: 1px solid var(--line-strong); }
.cat-plus::before, .cat-plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); transition: transform 0.35s; }
.cat-plus::before { width: 12px; height: 1px; }
.cat-plus::after { width: 1px; height: 12px; }
.menu-cat[open] .cat-plus::after { transform: rotate(90deg); }
.menu-cat summary:hover .cat-en { color: var(--gold-bright); }

.menu-items { padding: 4px 4px 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 44px; }
@media (max-width: 860px) { .menu-items { grid-template-columns: 1fr; } }

.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; }
.mi-name { display: flex; flex-direction: column; min-width: 0; }
.mi-en { font-size: 14.5px; font-weight: 400; color: var(--cream); }
.mi-cn { font-size: 12.5px; color: var(--muted); letter-spacing: 0.1em; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(206, 168, 102, 0.35); transform: translateY(-4px); min-width: 24px; }
.mi-price { font-size: 14px; color: var(--gold-bright); letter-spacing: 0.04em; white-space: nowrap; }
.spice { margin-left: 7px; font-size: 11px; letter-spacing: 2px; }
.veg {
  display: inline-grid; place-items: center; margin-left: 7px;
  width: 16px; height: 16px; border: 1px solid #7da26b; border-radius: 50%;
  color: #9dc489; font-size: 10px; vertical-align: 1px;
}

.menu-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); letter-spacing: 0.05em; text-align: center; }

/* ============================================================
   Visit
   ============================================================ */
.visit { background: var(--coal); border-block: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(40px, 5vw, 64px); }
@media (max-width: 960px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-card { border: 1px solid var(--line); background: var(--surface); padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; transition: border-color 0.35s, transform 0.35s; }
.visit-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.visit-card h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--cream); line-height: 1.2; }
.visit-card h3 .cn { display: block; font-size: 13px; font-family: var(--ff-body); font-weight: 300; letter-spacing: 0.32em; color: var(--gold); margin-top: 5px; }
.visit-row { display: flex; gap: 12px; font-size: 14px; align-items: baseline; }
.visit-row .lbl { flex: none; width: 64px; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.visit-row a { border-bottom: 1px solid var(--line-strong); transition: color 0.3s; }
.visit-row a:hover { color: var(--gold-bright); }
.visit-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .section-title { margin-inline: auto; }
.cta-band .btn { margin-top: 38px; }
.cta-phone-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; margin-top: 30px; font-size: 14px; color: var(--muted); }
.cta-phone-list a { color: var(--cream); border-bottom: 1px solid var(--line-strong); }
.cta-phone-list a:hover { color: var(--gold-bright); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding: clamp(48px, 6vw, 76px) 0 44px; }
@media (max-width: 860px) { .footer-main { grid-template-columns: 1fr; gap: 34px; } }

.footer-brand .brand-logo { height: 58px; filter: none; }
.footer-brand p { font-size: 14px; max-width: 40ch; margin-top: 14px; color: var(--muted); }

.footer-col h4 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 400; }
.footer-col li { margin-bottom: 10px; font-size: 14px; color: var(--body); }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col .sub { display: block; font-size: 12px; color: var(--muted); }

.footer-legal {
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  font-size: 12.5px; color: var(--muted);
  text-align: center;
}

/* ---------- Supported by DineCall AI ---------- */
.dinecall-strip {
  border-top: 1px solid var(--line);
  padding: 24px 20px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.dinecall {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px;
  font-size: 14px; color: var(--muted);
  transition: color 0.2s;
}
.dinecall:hover { color: var(--gold-bright); }
.dc-by { letter-spacing: 0.03em; }
.dc-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 500; color: var(--cream);
  transition: color 0.2s;
}
.dinecall:hover .dc-brand { color: var(--gold-bright); }
.dc-mark {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 7px; overflow: hidden;
  border: 1px solid rgba(244, 236, 221, 0.12);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dc-mark svg { width: 100%; height: 100%; display: block; }
.dinecall:hover .dc-mark { transform: rotate(-6deg) scale(1.05); }
@media (prefers-reduced-motion: reduce) { .dinecall:hover .dc-mark { transform: none; } }
.dc-name { white-space: nowrap; }
.dc-tag { max-width: 46ch; font-size: 12px; line-height: 1.6; color: rgba(156, 143, 124, 0.85); }
