/* ============================================================
   Hunan Noodle Bar & Sushi Bar — Hub Site
   ============================================================ */

:root {
  --red:        #7a1818;
  --red-deep:   #5a0e0e;
  --red-soft:   #a23232;
  --gold:       #c9a961;
  --gold-soft:  #e8d5a3;
  --ink:        #1a1410;
  --ink-soft:   #3a3128;
  --muted:      #6b5f57;
  --cream:      #faf6f0;
  --paper:      #fffdf8;
  --line:       #ebe2d2;
  --line-soft:  #f3ecdf;

  --radius:     12px;
  --radius-lg:  18px;
  --shadow-sm:  0 1px 3px rgba(26, 20, 16, 0.06);
  --shadow-md:  0 10px 30px rgba(122, 24, 24, 0.08);
  --shadow-lg:  0 24px 60px rgba(122, 24, 24, 0.12);

  --max-w:      1180px;
  --pad-x:      28px;

  --serif:      "Playfair Display", Georgia, serif;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cn:         "Noto Serif SC", "Songti SC", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--red); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow.light { color: var(--gold); }

.cn { font-family: var(--cn); }

.ico { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--red-deep);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 10px var(--pad-x);
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; opacity: 0.95; }
.topbar-item .ico { width: 14px; height: 14px; }
.topbar-sep { opacity: 0.4; }
.topbar-cta a {
  color: var(--gold-soft); font-weight: 600; letter-spacing: 0.04em;
}
.topbar-cta a:hover { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x); gap: 20px;
}
.brand { flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; display: block; }
.header-cta { flex-shrink: 0; }
.site-nav { display: flex; gap: 28px; flex: 1; justify-content: center; flex-wrap: nowrap; }
.site-nav a {
  color: var(--ink); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.02em; padding: 6px 0; position: relative;
  white-space: nowrap;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red); transform: scaleX(0);
  transform-origin: center; transition: transform 0.25s ease;
}
.site-nav a:hover { color: var(--red); }
.site-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px;
  border: 1.5px solid var(--red); border-radius: var(--radius);
  color: var(--red); background: transparent;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn:hover { background: var(--red); color: #fff; transform: translateY(-1px); }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn-outline { background: transparent; }

.btn-ghost {
  border-color: transparent; color: var(--ink-soft); background: var(--line-soft);
}
.btn-ghost:hover { background: var(--line); color: var(--ink); border-color: transparent; }

.btn-gold {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--ink); }

.btn-outline-light {
  background: transparent; color: var(--cream); border-color: rgba(250, 246, 240, 0.4);
}
.btn-outline-light:hover { background: var(--cream); color: var(--red-deep); }

.btn-sm { padding: 9px 16px; font-size: 0.84rem; }

.header-cta { padding: 10px 18px; font-size: 0.85rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 80px; text-align: center;
  background:
    radial-gradient(ellipse 1200px 600px at top, rgba(122, 24, 24, 0.07), transparent 60%),
    linear-gradient(180deg, var(--cream), #fff8ec);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0, transparent 8%),
    radial-gradient(circle at 80% 70%, rgba(122, 24, 24, 0.06) 0, transparent 8%),
    radial-gradient(circle at 60% 20%, rgba(201, 169, 97, 0.07) 0, transparent 6%);
  background-size: 80px 80px, 100px 100px, 60px 60px;
  pointer-events: none;
}
.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--cn); font-weight: 700;
  font-size: clamp(180px, 28vw, 360px);
  color: rgba(122, 24, 24, 0.04);
  letter-spacing: 0.2em; pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.hero-logo {
  width: 220px; height: auto;
  filter: drop-shadow(0 20px 40px rgba(122, 24, 24, 0.12));
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin: 0; line-height: 1.08;
  color: var(--ink);
}
.hero h1 br { display: block; }
.tagline {
  margin: 0; font-size: 1.1rem;
  color: var(--muted); max-width: 620px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

.ornament {
  display: flex; align-items: center; gap: 14px;
  margin: 4px 0;
}
.ornament span {
  display: block; width: 60px; height: 1px; background: var(--gold);
}
.ornament .diamond {
  width: 8px; height: 8px; background: var(--red);
  transform: rotate(45deg); border-radius: 1px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { padding: 8px; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--red); font-weight: 700; line-height: 1; letter-spacing: -0.02em;
}
.stat-num span { color: var(--gold); margin-left: 2px; }
.stat-label {
  margin-top: 8px; font-size: 0.86rem;
  color: var(--muted); letter-spacing: 0.04em;
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
section { padding: 90px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 12px; color: var(--ink);
}
.section-sub { color: var(--muted); margin: 0; font-size: 1.02rem; }

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.story-art {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.story-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, var(--paper)),
    var(--paper);
  border: 2px solid var(--red);
  box-shadow: 0 0 0 12px var(--cream), 0 0 0 13px var(--gold), var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.story-circle::before, .story-circle::after {
  content: ""; position: absolute;
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
.story-circle::before { top: 12px; left: 50%; transform: translateX(-50%); }
.story-circle::after { bottom: 12px; left: 50%; transform: translateX(-50%); }
.story-circle .cn {
  font-family: var(--cn); font-weight: 700;
  font-size: 4rem; line-height: 1.1;
  color: var(--red); text-align: center;
  letter-spacing: 0.05em;
}
.story-tag {
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.story-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 0 0 18px; }
.story-copy p { color: var(--ink-soft); font-size: 1.04rem; margin: 0 0 16px; }
.story-points {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.story-points li {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft); font-size: 0.96rem;
}
.story-points .ico { color: var(--red); }

/* ============================================================
   DISHES
   ============================================================ */
.dishes { background: var(--paper); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column; align-items: center;
}
.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.dish-medallion {
  width: 92px; height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, #f5e9d3),
    var(--gold-soft);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 4px var(--cream), 0 6px 18px rgba(122, 24, 24, 0.12);
  transition: transform 0.3s ease;
}
.dish-card:hover .dish-medallion { transform: rotate(-4deg) scale(1.05); }
.dish-medallion .cn {
  font-family: var(--cn); color: var(--red);
  font-weight: 700; font-size: 1.4rem; line-height: 1;
  text-align: center; letter-spacing: 0.04em;
}
.dish-card h3 {
  margin: 0 0 8px; font-size: 1.2rem;
  color: var(--ink);
}
.dish-card p {
  margin: 0; font-size: 0.94rem; color: var(--muted);
  flex: 1;
}
.dish-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.spice { display: inline-flex; gap: 3px; }
.spice i {
  display: inline-block; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
}
.spice i.off { background: var(--line); }
.dish-tag {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background:
    linear-gradient(180deg, var(--cream), var(--paper) 90%);
}
.tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px; margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.tab {
  background: transparent; border: 0; cursor: pointer;
  padding: 14px 22px; font-family: var(--sans); font-size: 0.92rem;
  font-weight: 500; color: var(--muted);
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }

.tab-panels { max-width: 820px; margin: 0 auto; }
.tab-panel { display: none; animation: fade 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: 10px;
  padding: 14px 6px;
  border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.m-name {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.08rem; color: var(--ink);
}
.m-dot {
  flex: 1; border-bottom: 1px dotted var(--line);
  align-self: center; min-width: 24px;
}
.m-desc { font-size: 0.9rem; color: var(--muted); font-style: italic; }
.m-price { font-weight: 700; color: var(--red); font-size: 1rem; }

.menu-foot {
  text-align: center; color: var(--muted);
  font-size: 0.88rem; margin: 28px auto 0;
  font-style: italic;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.location-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.loc-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--cream);
  padding: 32px 24px;
  position: relative; overflow: hidden;
  text-align: center;
}
.loc-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 169, 97, 0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
}
.loc-banner::after {
  content: "稻香邨"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--cn); font-size: 5rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.05); letter-spacing: 0.2em;
  pointer-events: none;
}
.loc-city {
  display: block; font-family: var(--serif);
  font-size: 1.9rem; font-weight: 600;
  position: relative; z-index: 1;
}
.loc-state {
  display: block; font-size: 0.78rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 4px;
  position: relative; z-index: 1;
}

.loc-body { padding: 26px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.loc-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 0 0 12px; font-size: 0.95rem;
  color: var(--ink-soft);
}
.loc-row .ico { color: var(--red); margin-top: 3px; }
.loc-sub { color: var(--muted); font-size: 0.88rem; }

.hours {
  margin: 8px 0 18px; padding: 14px;
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.hours h4 {
  margin: 0 0 8px; font-family: var(--sans);
  font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.hours dl {
  margin: 0; display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 0.88rem;
}
.hours dt { color: var(--muted); }
.hours dd { margin: 0; color: var(--ink); text-align: right; }

.card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.card-actions .btn {
  padding: 11px 12px;
  font-size: 0.84rem;
  white-space: nowrap;
}
.card-actions .btn-primary {
  grid-column: 1 / -1;
}

/* ============================================================
   PRESS
   ============================================================ */
.press {
  padding: 50px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.press-label {
  font-size: 0.72rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 18px;
}
.press-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px; font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink-soft); font-style: italic;
}
.press-row .dot { color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }
.quote-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quote-card {
  margin: 0; padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card::before {
  content: "\201C"; position: absolute; top: -8px; left: 18px;
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--gold-soft); font-weight: 700;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.quote-card blockquote {
  margin: 0 0 18px; font-family: var(--serif);
  font-size: 1.08rem; line-height: 1.5; color: var(--ink);
  font-style: italic;
}
.quote-card figcaption {
  font-size: 0.88rem; color: var(--ink-soft); font-weight: 600;
}
.quote-card figcaption span { color: var(--muted); font-weight: 400; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    radial-gradient(circle at 70% 30%, var(--red-soft), var(--red-deep));
  background-blend-mode: multiply, normal;
  color: var(--cream); text-align: center;
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-banner::before {
  content: "湖南"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--cn); font-size: clamp(180px, 26vw, 320px);
  font-weight: 700; color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.2em; pointer-events: none;
  white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner h2 {
  color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 14px;
}
.cta-inner p { color: rgba(250, 246, 240, 0.85); font-size: 1.05rem; margin: 0 0 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--paper); }
.news-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.news-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0 0 12px; }
.news-copy p { color: var(--muted); margin: 0; font-size: 1rem; }
.news-form {
  display: flex; gap: 8px; align-items: stretch;
  background: var(--cream); padding: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.news-form input {
  flex: 1; border: 0; background: transparent;
  padding: 12px 16px; font-family: var(--sans); font-size: 0.98rem;
  color: var(--ink); outline: none;
}
.news-form input::placeholder { color: var(--muted); }
.news-form .btn { white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.foot-brand p { margin: 14px 0 18px; font-size: 0.92rem; max-width: 320px; }
.foot-logo {
  height: 64px; width: auto;
  filter: brightness(1.4) drop-shadow(0 0 0 #fff);
  background: var(--cream); padding: 6px; border-radius: 50%;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(250, 246, 240, 0.08);
  border-radius: 50%; color: var(--cream);
  transition: background 0.2s ease;
}
.social a:hover { background: var(--red); color: #fff; }
.social .ico { fill: currentColor; }

.foot-col h4 {
  font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px; font-weight: 700;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col li { font-size: 0.9rem; line-height: 1.5; }
.foot-col strong { color: var(--cream); display: inline-block; margin-bottom: 2px; }
.foot-col.links {}
.foot-col ul.links li { margin-bottom: 0; }
.foot-col ul.links a { color: rgba(250, 246, 240, 0.78); }
.foot-col ul.links a:hover { color: var(--gold); }
.foot-col p { margin: 0 0 8px; font-size: 0.9rem; }
.foot-col .muted { color: rgba(250, 246, 240, 0.5); font-size: 0.82rem; }

.foot-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding: 22px 0;
}
.foot-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.foot-bottom p { margin: 0; font-size: 0.82rem; color: rgba(250, 246, 240, 0.55); }
.foot-bottom .locations-line { letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 0.88rem; }
  .header-cta { padding: 9px 14px; font-size: 0.8rem; }
  .brand-logo { height: 52px; }
}

@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .story-points { justify-content: center; }
  .story-points li { justify-content: center; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .quote-grid { grid-template-columns: 1fr; }
  .news-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .loc-banner { padding: 28px 20px; }
  .loc-city { font-size: 1.6rem; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .brand-logo { height: 48px; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .location-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .loc-banner { padding: 24px 18px; }
  .loc-city { font-size: 1.5rem; }
  .loc-banner::after { font-size: 4rem; }
  .loc-body { padding: 22px 20px 20px; }
  .hours dl { font-size: 0.85rem; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .site-nav.open { max-height: 400px; }
  .site-nav a {
    padding: 14px 20px; border-bottom: 1px solid var(--line-soft);
    width: 100%; text-align: center;
  }
  .topbar { font-size: 0.74rem; }
  .topbar-inner { gap: 8px; }
  .hero { padding: 56px 0 60px; }
  .hero-logo { width: 150px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dish-grid { grid-template-columns: 1fr; }
  .story-circle { width: 240px; height: 240px; }
  .story-circle .cn { font-size: 3rem; }
  .menu-list li {
    grid-template-columns: 1fr auto;
    gap: 4px;
  }
  .m-dot { display: none; }
  .m-desc { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 460px) {
  :root { --pad-x: 18px; }
  .card-actions { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; }
}
