:root {
  --navy: #0a1f3d;
  --navy-2: #0f2a4d;
  --navy-deep: #061327;
  --teal: #2c8aae;
  --teal-2: #1f6f8f;
  --cream: #faf6ee;
  --cream-2: #f3ecdc;
  --ink: #1a1a1a;
  --muted: #5b5757;
  --muted-2: #8a8585;
  --line: rgba(10, 31, 61, 0.08);
  --gold: #c89a3a;
  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.06), 0 2px 8px rgba(10, 31, 61, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 31, 61, 0.08), 0 12px 40px rgba(10, 31, 61, 0.06);
  --shadow-lg: 0 12px 32px rgba(10, 31, 61, 0.12), 0 32px 80px rgba(10, 31, 61, 0.10);

  --font-sans: "Asap", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-script: "Satisfy", "Brush Script MT", cursive;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--teal);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-2); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.on-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.on-hero .nav a,
.site-header.on-hero .brand,
.site-header.on-hero .header-phone,
.site-header.on-hero .lang-toggle { color: #fff; }
.site-header.on-hero .lang-toggle { border-color: rgba(255,255,255,0.5); }
.site-header.on-hero .nav-toggle span { background: #fff; }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.brand .mark {
  width: 38px; height: 38px;
  display: inline-grid; place-items: center;
}
.brand .mark svg { width: 100%; height: 100%; }

.nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transition: right 0.25s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.lang-toggle {
  position: relative;
  display: inline-flex;
  background: rgba(10, 31, 61, 0.07);
  border: 1px solid rgba(10, 31, 61, 0.10);
  border-radius: 999px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  padding: 3px;
  isolation: isolate;
}
.lang-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  bottom: 3px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  box-shadow: 0 1px 2px rgba(10, 31, 61, 0.15);
}
html[lang="vi"] .lang-toggle::before { transform: translateX(100%); }
.lang-toggle .opt {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  padding: 6px 12px;
  min-width: 34px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.lang-toggle .opt:hover { color: var(--navy); }
.lang-toggle .opt.active { color: #fff; }
.lang-toggle .opt.active:hover { color: #fff; }

/* Hero (transparent header) variant: frosted, light pill */
.site-header.on-hero .lang-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.on-hero .lang-toggle::before { background: #fff; }
.site-header.on-hero .lang-toggle .opt { color: rgba(255, 255, 255, 0.7); }
.site-header.on-hero .lang-toggle .opt:hover { color: #fff; }
.site-header.on-hero .lang-toggle .opt.active,
.site-header.on-hero .lang-toggle .opt.active:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    padding: 40px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 40;
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav a { font-size: 1.1rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .header-phone { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  margin-top: -78px; /* slip under sticky header */
  padding-top: 78px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 19, 39, 0.45) 0%, rgba(6, 19, 39, 0.55) 60%, rgba(6, 19, 39, 0.85) 100%),
    url("/pholacorp/assets/img/hero.jpg") center/cover no-repeat;
  z-index: -1;
  transform: scale(1.02);
}
.hero-inner {
  text-align: center;
  padding: 80px 24px 120px;
  max-width: 880px;
}
.hero h1 { color: #fff; }
.hero h1 .script {
  display: block;
  font-size: 0.5em;
  color: #f5d77a;
  margin-bottom: 0.2em;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #f5d77a;
}
.hero p.lede {
  margin: 22px auto 36px;
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}
.hero .eyebrow { color: #f5d77a; }
.hero-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.5);
  animation: pulseLine 2s ease-in-out infinite;
}
@keyframes pulseLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Section common ---------- */
section { padding: 96px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { margin: 14px 0 16px; }
.section-header h2 .script { display: block; font-size: 1.15em; line-height: 1.1; margin-top: 4px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ---------- About strip ---------- */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 144px; height: 144px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
}
.about-photo .badge .num { font-size: 2.6rem; display: block; line-height: 1; margin-bottom: 4px; font-weight: 600; }

.about-copy h2 .script { display: block; font-size: 1.2em; line-height: 1.05; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stats .stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stats .stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; }
  .about-photo .badge { bottom: 16px; right: 16px; width: 110px; height: 110px; font-size: 0.85rem; }
  .about-photo .badge .num { font-size: 2rem; }
}

/* ---------- Menu preview ---------- */
.menu-preview { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.menu-preview h2 { color: #fff; }
.menu-preview .eyebrow { color: #f5d77a; }
.menu-preview .section-header p { color: rgba(255,255,255,0.75); }
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.menu-card:hover { transform: translateY(-4px); border-color: rgba(245,215,122,0.5); }
.menu-card .img-wrap { aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover img { transform: scale(1.06); }
.menu-card .meta { padding: 18px 20px; }
.menu-card .meta h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.menu-card .meta .vi {
  font-family: var(--font-script);
  color: #f5d77a;
  font-size: 1.05rem;
  display: block;
  line-height: 1;
}
.menu-preview .cta-row { text-align: center; }
.menu-preview .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.menu-preview .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

@media (max-width: 880px) {
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.testimonial blockquote::before { content: "“"; font-family: var(--font-serif); font-size: 3rem; color: var(--teal); line-height: 0.4; vertical-align: -0.5em; margin-right: 2px; }
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.testimonial cite span { display: block; font-weight: 400; color: var(--muted-2); font-size: 0.85rem; margin-top: 2px; }

@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Visit ---------- */
.visit { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; justify-content: center; }
.visit-info h2 .script { display: block; font-size: 1.15em; line-height: 1.05; margin-top: 4px; }
.visit-info .info-block { margin-top: 28px; }
.visit-info .info-block h4 { color: var(--teal); margin-bottom: 10px; font-size: 0.78rem; }
.visit-info .info-block p, .visit-info .info-block a { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.visit-info .info-block a:hover { color: var(--teal); }
.hours-table { width: 100%; max-width: 360px; }
.hours-table tr td { padding: 6px 0; color: var(--ink); }
.hours-table tr td:last-child { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-table tr.today td { color: var(--teal); font-weight: 600; }

.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-md);
  background: #ddd;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 480px; }

@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .visit-map { min-height: 320px; }
  .visit-map iframe { min-height: 320px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand { color: #fff; font-size: 2.4rem; }
.footer-brand p { margin-top: 16px; max-width: 280px; line-height: 1.65; color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 0.78rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.footer-col a:hover { color: #f5d77a; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.15s ease, transform 0.15s ease;
}
.socials a:hover { background: var(--teal); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Menu page ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 19, 39, 0.7), rgba(6, 19, 39, 0.95)),
    url("/pholacorp/assets/img/slide2.jpg") center/cover no-repeat;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero h1 .script { display: block; color: #f5d77a; font-size: 0.55em; margin-bottom: 0.1em; }
.page-hero p { margin: 18px auto 0; max-width: 540px; color: rgba(255,255,255,0.8); }
.page-hero .crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.6); }
.page-hero .crumbs a:hover { color: #fff; }

.menu-section { padding: 80px 0; }
.menu-section + .menu-section { padding-top: 0; }

.menu-cat-nav {
  position: sticky;
  top: 76px;
  z-index: 30;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin-bottom: 64px;
}
.menu-cat-nav .row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.menu-cat-nav .row::-webkit-scrollbar { display: none; }
.menu-cat-nav a {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.menu-cat-nav a:hover, .menu-cat-nav a.active {
  background: var(--navy);
  color: #fff;
}

.menu-block-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 14px;
  margin-bottom: 36px;
}
.menu-block-header h2 { font-size: 2rem; }
.menu-block-header h2 .script { color: var(--teal); font-size: 1rem; margin-left: 12px; font-family: var(--font-script); }
.menu-block-header .price-note {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.1;
}
.menu-block-header .price-note > span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.menu-block-header .price-note strong {
  color: var(--navy);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  margin-left: 2px;
}
.menu-block-header .price-note .sep {
  color: var(--teal);
  font-size: 1.4rem;
  font-family: var(--font-sans);
  font-weight: 300;
}

@media (max-width: 720px) {
  .menu-block-header .price-note { font-size: 1.35rem; }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 56px;
}
.menu-subhead {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 32px 0 6px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
}
.menu-subhead:first-child { margin-top: 0; }
.menu-subhead .vi {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--teal);
  font-weight: 400;
}
.menu-subhead::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10, 31, 61, 0.12);
  align-self: center;
}
.menu-note-row {
  grid-column: 1 / -1;
  margin: 14px 0;
  padding: 14px 18px;
  background: rgba(44, 138, 174, 0.06);
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.menu-note-row strong { color: var(--navy); font-weight: 600; }
.menu-item {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(10, 31, 61, 0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}
.menu-item .name {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.3;
}
.menu-item .name .num {
  display: inline-block;
  width: 2.6em;
  color: var(--muted-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9em;
}
.menu-item .vi {
  display: block;
  font-family: var(--font-script);
  color: var(--teal);
  font-size: 1rem;
  margin-top: 2px;
  margin-left: 2.6em;
  line-height: 1.1;
}
.menu-item .price {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .menu-cat-nav .row { justify-content: flex-start; padding: 0 24px; }
}

.menu-note {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  max-width: 720px;
  margin: 64px auto 0;
}
.menu-note h3 { font-size: 1.4rem; margin-bottom: 8px; }
.menu-note p { color: var(--muted); margin: 0; }

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

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