/* ============================================================
   Warner Chinese Restaurant · 聚福樓
   "A letter home from a Cantonese kitchen"
   ============================================================ */

:root {
  --red: #8C1F28;
  --red-deep: #6E151D;
  --gold: #C8A34B;
  --gold-soft: #E3CD96;
  --cream: #FAF5EC;
  --cream-dark: #F1E8D8;
  --ink: #1C1917;
  --ink-soft: #4A4440;
  --serif: "Fraunces", "Noto Serif TC", serif;
  --tc: "Noto Serif TC", serif;
  --sans: "Karla", sans-serif;
  --rule: 1px solid rgba(140, 31, 40, 0.25);
  --shadow: 0 18px 45px -18px rgba(28, 25, 23, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0 0.35 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
/* <picture> wraps every photo (WebP + JPEG fallback). It must not introduce a
   box of its own, or the height:100% on images inside fixed-ratio figures
   resolves against it instead of the figure. */
picture { display: block; width: 100%; height: 100%; }
a { color: var(--red); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.zh { font-family: var(--tc); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 236, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: var(--rule);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { flex: 0 0 auto; }
.logo-text { line-height: 1.1; }
.logo-zh { font-family: var(--tc); font-size: 1.35rem; color: var(--red); letter-spacing: 0.35em; font-weight: 700; }
.logo-en { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em; color: var(--ink-soft); text-transform: uppercase; }

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--red); }

.nav-call {
  background: var(--red); color: var(--cream) !important;
  padding: 10px 18px !important; border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-call:hover { background: var(--red-deep); transform: translateY(-1px); }
.nav-call::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--red); margin: 5px 0; transition: 0.25s; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 72vh;
  display: flex; align-items: flex-end;
  color: var(--cream); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.25) 0%, rgba(28,25,23,0.05) 35%, rgba(28,25,23,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 0 72px; max-width: 780px; }
.hero-content::before {
  content: ""; position: absolute; z-index: -1;
  inset: -10px -14px 96px -14px;
  background: rgba(28, 25, 23, 0.22);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 8px;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, black 55%, transparent 100%);
  pointer-events: none;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 18px;
}
.hero-kicker::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); font-weight: 500; margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero-sub { font-size: 1.05rem; color: rgba(250,245,236,0.85); max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 3px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.22s ease;
}
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { border-color: rgba(250,245,236,0.6); color: var(--cream); }
.btn-ghost:hover { background: rgba(250,245,236,0.12); border-color: var(--cream); }
.btn-outline { border-color: var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--cream); }

/* ---------- trust bar ---------- */
.trust-bar { background: var(--red); color: var(--cream); position: relative; z-index: 2; }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 22px 0; gap: 18px; text-align: center;
}
.trust-item { font-size: 0.85rem; letter-spacing: 0.06em; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--gold-soft); font-weight: 600; }
.trust-item + .trust-item { border-left: 1px solid rgba(250,245,236,0.2); }

/* ---------- sections ---------- */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--cream-dark); }
.section-head { max-width: 640px; margin-bottom: 52px; position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 500; }
.section-head p { margin-top: 14px; color: var(--ink-soft); }

/* ghost watermark character */
.watermark {
  position: absolute; top: 30px; right: 0;
  font-family: var(--tc); font-weight: 900;
  font-size: clamp(9rem, 20vw, 17rem);
  color: rgba(140, 31, 40, 0.055);
  line-height: 1; pointer-events: none; user-select: none; z-index: 0;
}

/* ---------- dish grid ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.dish-card {
  background: var(--cream); border: var(--rule); border-radius: 4px;
  overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish-card figure { aspect-ratio: 4/3; overflow: hidden; margin: 0; }
.dish-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover img { transform: scale(1.05); }
.dish-meta { padding: 18px 20px 20px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish-meta h3 { font-size: 1.08rem; font-weight: 600; }
.dish-meta .zh { color: var(--red); font-size: 0.95rem; white-space: nowrap; }

/* ---------- family packs ---------- */
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pack {
  background: var(--cream); border: 2px solid var(--red);
  border-radius: 4px; padding: 34px 30px; position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pack:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pack::before {
  content: "福"; font-family: var(--tc); font-weight: 700;
  position: absolute; top: -16px; left: 26px;
  background: var(--red); color: var(--gold-soft);
  width: 32px; height: 32px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.pack-label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-soft); }
.pack-price { font-family: var(--serif); font-size: 2.6rem; color: var(--red); font-weight: 600; margin: 4px 0 2px; }
.pack-serves { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 6px; }
.pack-save {
  display: inline-block; background: var(--gold-soft); color: var(--red-deep);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 16px; font-weight: 700;
}
.pack ul { list-style: none; border-top: var(--rule); padding-top: 16px; }
.pack li { padding: 5px 0; font-size: 0.94rem; display: flex; gap: 10px; }
.pack li::before { content: "·"; color: var(--gold); font-weight: 900; }

/* ---------- lunch special ---------- */
.lunch-band {
  background: var(--red); color: var(--cream); position: relative; overflow: hidden;
}
.lunch-band::before {
  content: "午"; position: absolute; right: -20px; top: -40px;
  font-family: var(--tc); font-weight: 900; font-size: 16rem;
  color: rgba(250,245,236,0.06); line-height: 1; pointer-events: none;
}
.lunch-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  padding: 44px 0;
}
.lunch-price-tag { text-align: center; }
.lunch-price-tag .amount {
  font-family: var(--serif); font-weight: 600; font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--gold-soft); line-height: 1;
}
.lunch-price-tag .when {
  display: block; margin-top: 8px; font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(250,245,236,0.8);
}
.lunch-copy h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 500; margin-bottom: 8px; }
.lunch-copy p { color: rgba(250,245,236,0.85); font-size: 0.97rem; max-width: 560px; }
.lunch-band .btn-gold {
  background: var(--gold-soft); color: var(--red-deep); border-color: var(--gold-soft); font-weight: 700;
}
.lunch-band .btn-gold:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }

.lunch-card {
  background: var(--red); color: var(--cream); border-radius: 4px;
  border: 2px solid var(--gold); padding: 44px 46px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.lunch-card::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(200,163,75,0.45); border-radius: 2px; pointer-events: none;
}
.lunch-card::after {
  content: "午市特餐"; position: absolute; right: 18px; bottom: -30px;
  font-family: var(--tc); font-weight: 900; font-size: 7rem;
  color: rgba(250,245,236,0.07); line-height: 1; pointer-events: none; white-space: nowrap;
}
.lunch-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 6px; }
.lunch-card-head h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream); }
.lunch-card-head .amount { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold-soft); line-height: 1; }
.lunch-when {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-deep); background: var(--gold-soft); padding: 4px 12px; border-radius: 2px;
  margin-bottom: 22px; font-weight: 700;
}
.lunch-list { list-style: none; columns: 2; column-gap: 46px; margin-bottom: 24px; position: relative; z-index: 1; }
.lunch-list li {
  break-inside: avoid; display: flex; align-items: baseline; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid rgba(250,245,236,0.18); font-size: 1rem;
}
.lunch-list li::before { content: "福"; font-family: var(--tc); font-size: 0.7rem; color: var(--gold); }
.lunch-list .rice { color: rgba(250,245,236,0.65); font-size: 0.86rem; font-style: italic; }
.lunch-combo {
  background: rgba(250,245,236,0.1); border: 1px dashed rgba(200,163,75,0.6); border-radius: 3px;
  padding: 16px 20px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1;
}
.lunch-combo .plus { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--gold-soft); white-space: nowrap; }
.lunch-combo p { font-size: 0.95rem; color: rgba(250,245,236,0.9); }

/* ---------- primary CTA emphasis ---------- */
.btn-xl { padding: 19px 36px; font-size: 0.95rem; font-weight: 700; }

/* ---------- hero lunch teaser ---------- */
.hero-lunch-tease {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 0.85rem; letter-spacing: 0.08em; color: var(--gold-soft);
  border-bottom: 1px solid rgba(200,163,75,0.6); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-lunch-tease:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- full-bleed photo band ---------- */
.photo-band { position: relative; height: 52vh; min-height: 320px; overflow: hidden; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.photo-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.18), transparent 40%, rgba(28,25,23,0.45));
}
.photo-band figcaption {
  position: absolute; left: 0; right: 0; bottom: 26px; text-align: center;
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  z-index: 1; text-shadow: 0 2px 12px rgba(28,25,23,0.6);
}

/* ---------- Google reviews marquee ---------- */
.gm-head { display: flex; align-items: center; gap: 12px; }
.gm-wrap { overflow: hidden; position: relative; }
.gm-wrap::before, .gm-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.gm-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.gm-wrap::after { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.section-alt .gm-wrap::before { background: linear-gradient(90deg, var(--cream-dark), transparent); }
.section-alt .gm-wrap::after { background: linear-gradient(270deg, var(--cream-dark), transparent); }
.gm-track { display: flex; gap: 24px; width: max-content; animation: gm-scroll 45s linear infinite; padding: 6px 0; }
.gm-wrap:hover .gm-track { animation-play-state: paused; }
@keyframes gm-scroll { to { transform: translateX(-50%); } }
.gm-card {
  width: 340px; flex: none; background: var(--cream); border: var(--rule);
  border-left: 3px solid var(--gold); border-radius: 3px; padding: 24px 26px;
}
.gm-card .stars { margin-bottom: 10px; }
.gm-card p { font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.5; }
.gm-card footer { margin-top: 14px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.gm-card footer strong { color: var(--red); }
@media (prefers-reduced-motion: reduce) { .gm-track { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.quote {
  background: var(--cream); border: var(--rule); border-left: 3px solid var(--gold);
  padding: 30px 32px; border-radius: 3px; position: relative;
}
.quote p { font-family: var(--serif); font-size: 1.12rem; font-style: italic; line-height: 1.5; }
.quote footer { margin-top: 16px; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.quote footer strong { color: var(--red); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.hours-table td { padding: 10px 0; border-bottom: var(--rule); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; }
.hours-table .closed td { color: var(--red); font-weight: 700; }
.map-frame { border: var(--rule); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- double-rule divider ---------- */
.rule-divider { border: none; border-top: 3px double rgba(140,31,40,0.4); max-width: 220px; margin: 0 auto; }

/* ---------- menu page ---------- */
.menu-nav {
  position: sticky; top: 69px; z-index: 40;
  background: var(--cream-dark); border-bottom: var(--rule);
  overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;
}
.menu-nav-inner { display: flex; gap: 4px; padding: 10px 24px; max-width: 1180px; margin: 0 auto; }
.menu-nav a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 3px; color: var(--ink-soft);
  transition: all 0.2s;
}
.menu-nav a:hover, .menu-nav a.active { background: var(--red); color: var(--cream); }

.menu-section { padding: 56px 0 8px; scroll-margin-top: 130px; }
.menu-section h2 {
  font-size: 1.7rem; color: var(--red); display: flex; align-items: center; gap: 16px; margin-bottom: 8px;
}
.menu-section h2::after { content: ""; flex: 1; border-top: 3px double rgba(140,31,40,0.35); }
.menu-note { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; margin-bottom: 20px; }
.menu-items { columns: 2; column-gap: 56px; }
.menu-item { break-inside: avoid; display: flex; align-items: baseline; gap: 8px; padding: 7px 0; }
.menu-item .name { flex-shrink: 0; }
.menu-item .dots { flex: 1; border-bottom: 1px dotted rgba(28,25,23,0.4); transform: translateY(-4px); min-width: 20px; }
.menu-item .price { font-family: var(--serif); font-weight: 600; color: var(--red); white-space: nowrap; }
.menu-item .sub { display: block; font-size: 0.8rem; color: var(--ink-soft); font-style: italic; }
.badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 1px 6px; border-radius: 2px; vertical-align: 2px; margin-left: 6px;
}
.badge-gf { background: #DCE8D4; color: #3D5A2E; }
.badge-hot { background: #F3D1CB; color: var(--red-deep); }
.badge-df { background: var(--gold-soft); color: var(--red-deep); }

/* ---------- gallery ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: none; border: 1px solid rgba(140,31,40,0.4); color: var(--ink-soft);
  padding: 9px 18px; border-radius: 3px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px;
  cursor: zoom-in; border: var(--rule); display: block; width: 100%; padding: 0; background: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(28,25,23,0.85));
  color: var(--cream); padding: 26px 16px 12px; font-size: 0.85rem;
  opacity: 0; transition: opacity 0.3s; text-align: left;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item.hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(28,25,23,0.93);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 4px; }
.lightbox-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--cream); font-size: 0.95rem; }
.lightbox-close {
  position: absolute; top: 20px; right: 26px; background: none; border: none;
  color: var(--cream); font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* ---------- story page ---------- */
.story-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.story-split.rev { grid-template-columns: 0.9fr 1.1fr; }
.story-img { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.story-img::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(250,245,236,0.55); border-radius: 2px; pointer-events: none;
}
.story-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 18px; }
.story-text p { color: var(--ink-soft); margin-bottom: 14px; }
.story-text .zh-inline { color: var(--red); }

.meaning {
  text-align: center; padding: 70px 24px;
}
.meaning-chars { display: flex; justify-content: center; gap: clamp(18px, 6vw, 60px); margin: 34px 0; }
.meaning-char { text-align: center; }
.meaning-char .char {
  font-family: var(--tc); font-size: clamp(3.4rem, 9vw, 6rem); font-weight: 700; color: var(--red);
  line-height: 1;
}
.meaning-char .label { margin-top: 12px; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact-hero { text-align: center; padding: 80px 24px 50px; }
.contact-hero .phone-big {
  font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--red); font-weight: 600; display: inline-block; margin: 18px 0 8px;
}
.contact-hero .phone-big:hover { color: var(--red-deep); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.contact-card { background: var(--cream); border: var(--rule); border-radius: 4px; padding: 30px; }
.contact-card h3 { color: var(--red); font-size: 1.1rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: center; }
.contact-card p { font-size: 0.94rem; color: var(--ink-soft); }

.form-grid { display: grid; gap: 16px; max-width: 640px; }
.form-grid label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 13px 14px; font-family: var(--sans); font-size: 0.95rem;
  border: 1px solid rgba(140,31,40,0.35); border-radius: 3px; background: var(--cream); color: var(--ink);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,245,236,0.75); padding: 64px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--gold-soft); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--sans); font-weight: 700; }
.footer-grid a { color: rgba(250,245,236,0.75); display: block; padding: 3px 0; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-grid p { font-size: 0.92rem; }
.footer-seal { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-seal .logo-zh { color: var(--gold-soft); }
.footer-seal .logo-en { color: rgba(250,245,236,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(250,245,236,0.15); margin-top: 46px; padding-top: 24px;
  font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: rgba(250,245,236,0.45);
}

/* ---------- sticky mobile call ---------- */
.sticky-call {
  display: none; position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 60;
  background: var(--red); color: var(--cream); text-align: center;
  padding: 16px; border-radius: 4px; font-size: 0.95rem; letter-spacing: 0.1em;
  text-transform: uppercase; box-shadow: 0 12px 30px rgba(28,25,23,0.45); font-weight: 700;
}

/* ---------- reveal animations ---------- */
/* Scroll reveals are gated on the `js` class that main.js sets on <html>.
   If the script fails to load or parse, the content stays visible instead of
   being stranded at opacity 0. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; } .reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .dish-grid, .packs, .gallery-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid, .story-split, .story-split.rev { grid-template-columns: 1fr; }
  .menu-items { columns: 1; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item + .trust-item { border-left: none; }
  .lunch-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .lunch-copy p { margin: 0 auto; }
  .lunch-list { columns: 1; }
  .lunch-card { padding: 34px 26px; }
}
@media (max-width: 680px) {
  .dish-grid, .packs, .quotes, .gallery-grid, .contact-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--cream); border-bottom: var(--rule);
    padding: 18px 24px; gap: 16px; align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .sticky-call { display: block; }
  .hero { min-height: 74vh; }
  .hero-content { padding-bottom: 40px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 22px; }
  .section { padding: 60px 0; }
  body { padding-bottom: 70px; }
}
