/* ============================================================
   Hua.Doo 花道 — website stylesheet
   Built from the brand design system: sumi ink on warm rice-paper,
   cinnabar seal-red, brass hairlines, the plum-blossom floret.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Manrope:wght@300;400;500;600;700;800&family=Noto+Serif+SC:wght@400;500;600;700&family=Ma+Shan+Zheng&display=swap');

:root {
  /* ---- Brand core ---- */
  --cinnabar-700: #8E2A20;
  --cinnabar:     #BE3A2F;
  --cinnabar-500: #C9463A;
  --cinnabar-300: #E89B92;
  --cinnabar-100: #F6DED9;
  --blossom:      #D3020D;

  /* ---- Ink ---- */
  --ink-900: #1F1A17;
  --ink-700: #3A332E;
  --ink-500: #6A615A;
  --ink-400: #8C837B;
  --ink-300: #B6ABA0;
  --ink-200: #D9CFC2;
  --ink-100: #ECE4D8;

  /* ---- Paper ---- */
  --paper:      #F7F1E7;
  --paper-deep: #EFE7D7;
  --card:       #FFFFFF;
  --card-warm:  #FCF7EE;

  /* ---- Nori green ---- */
  --nori-700: #2E3A28;
  --nori:     #4A5A3C;
  --nori-300: #97A487;
  --nori-100: #E4E8DC;

  /* ---- Sakura ---- */
  --sakura:     #E7AEB0;
  --sakura-300: #F0CBCC;
  --sakura-100: #FAEDED;

  /* ---- Brass ---- */
  --brass-700: #8A6B33;
  --brass:     #B0894C;
  --brass-300: #D8C49A;

  /* ---- Semantic aliases ---- */
  --bg-app:        var(--paper);
  --bg-alt:        var(--paper-deep);
  --surface-card:  var(--card);
  --surface-warm:  var(--card-warm);
  --surface-ink:   var(--ink-900);
  --text-strong:   var(--ink-900);
  --text-body:     var(--ink-700);
  --text-muted:    var(--ink-500);
  --text-faint:    var(--ink-400);
  --text-on-ink:   var(--paper);
  --text-on-brand: #FFFFFF;
  --brand:         var(--cinnabar);
  --brand-hover:   var(--cinnabar-500);
  --brand-press:   var(--cinnabar-700);
  --brand-wash:    var(--cinnabar-100);
  --accent:        var(--nori);
  --accent-soft:   var(--sakura);
  --line-gold:     var(--brass);
  --border:        var(--ink-200);
  --border-soft:   var(--ink-100);
  --border-strong: var(--ink-300);
  --focus-ring:    var(--cinnabar-500);

  /* ---- Type ---- */
  --font-display: 'Marcellus', 'Noto Serif SC', Georgia, serif;
  --font-body:    'Manrope', 'Noto Serif SC', system-ui, -apple-system, sans-serif;
  --font-cn:      'Noto Serif SC', 'Marcellus', serif;
  --font-brush:   'Ma Shan Zheng', 'Noto Serif SC', cursive;

  --text-2xs:  11px;  --text-xs:   12px;  --text-sm:   14px;
  --text-base: 16px;  --text-md:   18px;  --text-lg:   22px;
  --text-xl:   28px;  --text-2xl:  36px;  --text-3xl:  46px;
  --text-4xl:  60px;  --text-5xl:  78px;

  /* ---- Spacing ---- */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  /* ---- Radii ---- */
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 14px;
  --radius-xl: 22px; --radius-pill: 999px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(31,26,23,0.06);
  --shadow-sm: 0 2px 6px rgba(31,26,23,0.07);
  --shadow-md: 0 6px 18px rgba(31,26,23,0.09);
  --shadow-lg: 0 16px 40px rgba(31,26,23,0.12);
  --shadow-xl: 0 28px 70px rgba(31,26,23,0.16);

  /* ---- Layout & motion ---- */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 76px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 140ms; --dur-base: 240ms; --dur-slow: 420ms;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text-body);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-strong);
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }
img { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; transition: color var(--dur-fast); }
a:hover { color: var(--brand-hover); }

::selection { background: var(--cinnabar-100); color: var(--ink-900); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 1080px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow.on-ink { color: var(--brass-300); }
.brush { font-family: var(--font-brush); }
.price { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.hidden { display: none !important; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft),
              transform var(--dur-fast) var(--ease-soft);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--lg { padding: 15px 30px; font-size: var(--text-md); }
.btn--sm { padding: 8px 16px; font-size: var(--text-sm); }

.btn--primary { background: var(--brand); color: var(--text-on-brand); border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: #fff; }
.btn--primary:active { background: var(--brand-press); border-color: var(--brand-press); }

.btn--secondary { background: transparent; color: var(--ink-900); border-color: var(--ink-300); }
.btn--secondary:hover { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }

.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand-wash); color: var(--brand); }

.btn--onink { background: transparent; color: var(--paper); border-color: rgba(247,241,231,0.45); }
.btn--onink:hover { background: rgba(247,241,231,0.10); border-color: var(--paper); color: var(--paper); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,241,231,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; }
.brand-lockup img { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 50%; flex: none; }
.brand-lockup .word { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-lockup .word b { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--ink-900); letter-spacing: 0.01em; }
.brand-lockup .word small { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-400); margin-top: 3px; }

.site-nav { display: flex; align-items: center; gap: var(--space-8); }
.site-nav a.navlink {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-700);
}
.site-nav a.navlink:hover { color: var(--brand); }
.site-nav a.navlink.active { color: var(--brand); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink-900);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   Sections / generic
   ============================================================ */
.section { padding: var(--space-24) 0; }
.section--tight { padding: var(--space-16) 0; }
.bg-paper { background: var(--paper); }
.bg-warm  { background: var(--card-warm); }

.section-heading { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.section-heading.left { align-items: flex-start; text-align: left; }
.section-heading h2 { font-size: clamp(28px, 4vw, 46px); }
.section-heading .cn { font-family: var(--font-cn); font-size: var(--text-md); color: var(--ink-400); letter-spacing: 0.1em; }
.section-heading.on-ink h2 { color: var(--paper); }
.section-heading.on-ink .cn { color: var(--ink-300); }
.floret-rule { display: inline-flex; align-items: center; gap: 12px; margin-top: 4px; }
.floret-rule span { height: 1px; width: 46px; background: var(--brass-300); }
.floret-rule img { height: 15px; width: 15px; object-fit: contain; }

/* ============================================================
   Cards
   ============================================================ */
.card { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: var(--surface-card); border: 1px solid var(--border-soft); }
.card--warm { background: var(--surface-warm); }
.card--ink { background: var(--surface-ink); color: var(--text-on-ink); border-color: var(--ink-700); }
.card--lift { transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.card--lift:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* photo placeholder panel */
.photo {
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--paper-deep);
}
.photo img.floret { width: 30px; height: 30px; object-fit: contain; opacity: 0.9; }
.photo span.label { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-400); }
.photo--ink { background: var(--ink-900); }
.photo--ink span.label { color: var(--ink-300); }
.photo--nori { background: var(--nori); }
.photo--nori span.label { color: rgba(247,241,231,0.7); }
.photo--sakura { background: var(--sakura-100); }
.photo--sakura span.label { color: var(--cinnabar-700); }
.photo--brand { background: var(--cinnabar-100); }
.photo--brand span.label { color: var(--cinnabar-700); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero .watermark {
  position: absolute; right: -2%; top: -8%;
  font-family: var(--font-brush); font-size: clamp(280px, 38vw, 560px);
  color: var(--cinnabar); opacity: 0.05; line-height: 0.8;
  pointer-events: none; user-select: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-16); align-items: center; padding: var(--space-24) 0;
}
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: var(--space-5); }
.hero-kicker img { height: 18px; }
.hero h1 { font-size: clamp(46px, 6.4vw, 86px); line-height: 1.02; color: var(--ink-900); }
.hero .lead { font-size: var(--text-md); line-height: 1.6; color: var(--ink-500); max-width: 42ch; margin-top: var(--space-6); }
.hero .actions { display: flex; gap: var(--space-3); margin-top: var(--space-8); flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo .photo { height: 440px; border-radius: var(--radius-xl); }
.hero-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.rating-badge {
  position: absolute; left: -22px; bottom: -22px;
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.rating-badge img { width: 46px; height: 46px; border-radius: 50%; background: #fff; }
.rating-badge .stars { font-family: var(--font-display); font-size: var(--text-lg); color: var(--ink-900); line-height: 1; }
.rating-badge .sub { font-family: var(--font-body); font-size: var(--text-xs); color: var(--ink-400); margin-top: 3px; }

/* ============================================================
   Scratch strip (nori band)
   ============================================================ */
.strip { background: var(--nori); color: var(--paper); }
.strip .container { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.strip-item { display: flex; flex-direction: column; gap: 6px; }
.strip-item img { height: 18px; align-self: flex-start; }
.strip-item .t { font-family: var(--font-display); font-size: var(--text-lg); color: var(--paper); }
.strip-item .d { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(247,241,231,0.72); line-height: 1.5; }

/* ============================================================
   Signature dishes
   ============================================================ */
.sig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-12); }
.sig-card { overflow: hidden; border-radius: var(--radius-lg); }
.sig-card .photo { height: 190px; border-radius: 0; box-shadow: none; }
.sig-card .body { padding: var(--space-5); }
.sig-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.sig-card .name { font-family: var(--font-display); font-size: var(--text-md); color: var(--ink-900); }
.sig-card .amt { font-family: var(--font-display); font-size: var(--text-md); color: var(--brand); }
.sig-card .cn { font-family: var(--font-cn); font-size: var(--text-sm); color: var(--ink-400); }
.sig-card .note { font-family: var(--font-body); font-size: var(--text-sm); color: var(--ink-500); margin-top: 6px; line-height: 1.45; }
.sig-tag { position: absolute; top: 12px; left: 12px; background: var(--nori); color: #fff; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-pill); }
.center-cta { display: flex; justify-content: center; margin-top: var(--space-10); }

/* ---- Photo gallery banner ---- */
.gallery {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 150px;
  gap: var(--space-3);
}
.gallery .g-item {
  position: relative; margin: 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); background: var(--paper-deep);
}
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-out); }
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px var(--space-4) 12px;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(31,26,23,0.78), rgba(31,26,23,0.0));
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-soft), transform var(--dur-base) var(--ease-soft);
  pointer-events: none;
}
.gallery .g-item:hover figcaption { opacity: 1; transform: none; }
@media (hover: none) { .gallery figcaption { opacity: 1; transform: none; } }
/* mobile: first tile is a 2x2 feature, rest single — tiles 2x4 with 7 items */
.gallery .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* desktop: asymmetric 4-column mosaic that tiles a perfect rectangle */
@media (min-width: 761px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; }
  .gallery .g-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; } /* feature 2x2 */
  .gallery .g-item:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }     /* wide */
  .gallery .g-item:nth-child(3) { grid-column: 3; grid-row: 2; }
  .gallery .g-item:nth-child(4) { grid-column: 4; grid-row: 2; }
  .gallery .g-item:nth-child(5) { grid-column: 1; grid-row: 3; }
  .gallery .g-item:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }     /* wide */
  .gallery .g-item:nth-child(7) { grid-column: 4; grid-row: 3; }
}
.gallery-note { text-align: center; font-family: var(--font-body); font-size: var(--text-sm); color: var(--ink-400); margin-top: var(--space-5); }

/* ---- Delivery / order online ---- */
.order-line { margin-top: var(--space-5); font-family: var(--font-body); font-size: var(--text-sm); color: var(--ink-500); }
.order-line a { color: var(--brand); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--brand); }
.order-line a:hover { border-bottom-color: var(--brand); }
.order-cta {
  margin-top: var(--space-10); text-align: center;
  background: var(--brand-wash); border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl); padding: var(--space-10) var(--space-8);
}
.order-cta h3 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--ink-900); margin: 0; }
.order-cta p { font-family: var(--font-body); color: var(--ink-500); margin: var(--space-2) 0 var(--space-6); }
.order-btns { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ---- Story storefront photo ---- */
.story-photo { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---- Embedded map ---- */
.map-embed { width: 100%; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: block; }

/* ---- Menu index (jump-to-category) ---- */
.menu-index-bar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(247,241,231,0.94); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-3) 0;
}
/* one compact line, swipeable, no visible scrollbar, soft fade at both ends */
.menu-index {
  display: flex; flex-wrap: nowrap; gap: var(--space-2);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 1px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.menu-index::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: none; cursor: pointer; white-space: nowrap;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  color: var(--ink-700); background: transparent; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); padding: 6px 15px;
  transition: color var(--dur-fast) var(--ease-soft), border-color var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.cat-chip:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-wash); }
.cat-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---- Hot flag ---- */
.flag { display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--nori); padding: 1px 7px; border-radius: var(--radius-pill); vertical-align: middle; }
.flag-hot { background: var(--blossom); }
.menu-item .flag.flag-hot { background: var(--blossom); }

/* ============================================================
   Story
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-16); align-items: center; }
.story-grid .photo { height: 380px; }
.story p.big { font-size: var(--text-md); line-height: 1.7; color: var(--ink-700); margin-top: var(--space-6); }
.story p.small { font-size: var(--text-base); line-height: 1.7; color: var(--ink-500); margin-top: var(--space-4); }
.story-stats { display: flex; gap: var(--space-8); margin-top: var(--space-8); flex-wrap: wrap; }
.story-stats .k { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); }
.story-stats .v { font-family: var(--font-display); font-size: var(--text-base); color: var(--ink-900); margin-top: 4px; }

/* ============================================================
   Find-us card
   ============================================================ */
.findus { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; padding: var(--space-8); }
.findus .photo { height: 240px; }
.findus p { font-size: var(--text-base); color: var(--ink-300); line-height: 1.7; margin-top: var(--space-5); max-width: 40ch; }
.findus .actions { display: flex; gap: var(--space-3); margin-top: var(--space-6); flex-wrap: wrap; }

/* ============================================================
   Menu page
   ============================================================ */
.menu-head { text-align: center; padding: var(--space-16) 0 var(--space-8); }
.menu-head h1 { font-size: clamp(40px, 5.5vw, 64px); color: var(--ink-900); margin-top: 12px; }
.menu-tabs { display: flex; justify-content: center; gap: var(--space-3); margin-top: var(--space-8); flex-wrap: wrap; }
.menu-tab {
  background: transparent; color: var(--ink-700);
  border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  padding: 10px 24px; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.04em;
  display: inline-flex; align-items: baseline; gap: 8px;
  transition: all var(--dur-fast) var(--ease-soft);
}
.menu-tab .cn { font-family: var(--font-cn); font-size: var(--text-xs); opacity: 0.8; }
.menu-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: start; }

.menu-section { margin-bottom: var(--space-12); scroll-margin-top: var(--scroll-off, 150px); }
.menu-section header { display: flex; align-items: baseline; gap: 12px; padding-bottom: 10px; border-bottom: 1.5px solid var(--brass-300); margin-bottom: 6px; }
.menu-section header img { height: 16px; width: 16px; object-fit: contain; transform: translateY(2px); }
.menu-section header h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--ink-900); line-height: 1.1; }
.menu-section header .cn { font-family: var(--font-cn); font-size: var(--text-md); color: var(--ink-400); font-weight: 500; }
.menu-section header .kicker { margin-left: auto; font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--nori); }

.menu-item { padding: 10px 0; }
.menu-item .top { display: flex; align-items: baseline; gap: 12px; }
.menu-item .names { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; flex: 0 1 auto; min-width: 0; }
.menu-item .en { font-family: var(--font-display); font-size: var(--text-md); color: var(--ink-900); line-height: 1.2; }
.menu-item .cn { font-family: var(--font-cn); font-size: var(--text-sm); color: var(--ink-400); font-weight: 500; }
.menu-item .flag { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--nori); padding: 1px 7px; border-radius: var(--radius-pill); }
.menu-item .leader { flex: 1 1 auto; min-width: 18px; border-bottom: 1px dotted var(--ink-300); transform: translateY(-5px); margin: 0 2px; }
.menu-item .amt { font-family: var(--font-display); font-size: var(--text-md); color: var(--brand); font-variant-numeric: tabular-nums; flex: none; white-space: nowrap; }
.menu-item .amt .alt { color: var(--ink-400); font-size: var(--text-sm); }
.menu-item .note { font-family: var(--font-body); font-size: var(--text-sm); color: var(--ink-500); margin-top: 3px; line-height: 1.45; max-width: 46ch; }

.menu-foot { margin-top: var(--space-10); padding: var(--space-6); background: var(--card-warm); border-radius: var(--radius-lg); text-align: center; }
.menu-foot p { font-size: var(--text-sm); color: var(--ink-500); }

/* ============================================================
   Reserve page
   ============================================================ */
.reserve-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-16); align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { width: 100%; }
.field label { display: block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--text-base);
  color: var(--ink-900); background: var(--card);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; outline: none;
  transition: border-color var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.field textarea { min-height: 96px; resize: vertical; padding: 12px 14px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-wash); }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err { font-family: var(--font-body); font-size: var(--text-xs); color: var(--danger); margin-top: 5px; min-height: 0; }
.field .err:empty { display: none; }
.privacy { font-family: var(--font-body); font-size: var(--text-xs); color: var(--ink-400); line-height: 1.5; margin-top: var(--space-5); max-width: 60ch; }
.field.full { grid-column: 1 / -1; }
.form-foot { margin-top: var(--space-6); display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.form-foot .hint { font-family: var(--font-body); font-size: var(--text-xs); color: var(--ink-400); }

.confirm { text-align: center; padding: var(--space-8); }
.confirm img { width: 64px; height: 64px; border-radius: 50%; background: #fff; margin: 0 auto; }
.confirm h3 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--ink-900); margin-top: var(--space-5); }
.confirm p { font-size: var(--text-base); color: var(--ink-500); margin-top: var(--space-3); line-height: 1.6; }

.info-card .info-row { padding-bottom: var(--space-4); margin-bottom: var(--space-4); border-bottom: 1px solid var(--border-soft); }
.info-card .info-row:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.info-card .k { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); }
.info-card .v { font-family: var(--font-body); font-size: var(--text-sm); color: var(--ink-700); line-height: 1.6; margin-top: 5px; white-space: pre-line; }
.info-card .v a { font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink-900); color: var(--paper); padding: var(--space-16) 0 var(--space-10); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--space-9); align-items: start; }
.footer-brand .brand-lockup .word b { color: var(--paper); }
.footer-brand .brand-lockup .word small { color: var(--ink-300); }
.footer-brand p { font-size: var(--text-sm); color: var(--ink-300); line-height: 1.7; max-width: 30ch; margin-top: 8px; }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-300); margin-bottom: 10px; }
.footer-col p, .footer-col a { font-family: var(--font-body); font-size: var(--text-sm); color: var(--ink-300); line-height: 1.7; }
.footer-col a.gold { color: var(--brass-300); font-weight: 600; }
.footer-col a.gold.block { display: inline-block; margin-top: 6px; }
.footer-col a.gold.block:hover { color: var(--brass-200, var(--brass-300)); text-decoration: underline; }
.footer-col em { color: var(--ink-400); font-style: italic; }
.footer-bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid var(--ink-700); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font-family: var(--font-body); font-size: var(--text-xs); color: var(--ink-300); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); padding: var(--space-2) 0;
  }
  .site-nav:not(.open) { display: none; }
  .site-nav a.navlink { padding: 14px var(--gutter); }
  .site-nav .btn { margin: var(--space-3) var(--gutter); }

  .hero-grid { grid-template-columns: 1fr; gap: var(--space-10); padding: var(--space-16) 0; }
  .hero-photo .photo { height: 320px; }
  .hero-img { height: 300px; }
  .rating-badge { left: 16px; bottom: 16px; }
  .story-photo { height: 280px; }

  .strip-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .story-grid .photo { height: 280px; }
  .findus { grid-template-columns: 1fr; gap: var(--space-8); }
  .menu-cols { grid-template-columns: 1fr; gap: 0; }
  .reserve-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 540px) {
  .strip-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .menu-item .names { gap: 6px; }
}

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