/* ===========================================================
   Baitoey Restaurant — ร้านอาหารใบเตย
   Palette: Red (#d7263d), Black (#111), White (#fff), Yellow (#ffd100)
   =========================================================== */

/* ---------- i18n: show only current language ---------- */
[data-lang] { display: none !important; }
html[lang="th"] [data-lang="th"],
html[lang="en"] [data-lang="en"],
html[lang="zh"] [data-lang="zh"] { display: inline !important; }
/* Block-level elements need block display */
div[data-lang],
p[data-lang],
section[data-lang],
article[data-lang],
li[data-lang] { display: none !important; }
html[lang="th"] div[data-lang="th"],
html[lang="en"] div[data-lang="en"],
html[lang="zh"] div[data-lang="zh"],
html[lang="th"] p[data-lang="th"],
html[lang="en"] p[data-lang="en"],
html[lang="zh"] p[data-lang="zh"] { display: block !important; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  background: rgba(0, 0, 0, .25);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button,
.lang-switch a {
  background: transparent;
  border: 0;
  color: #ffdede;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: .3px;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: background 200ms, color 200ms;
}
.lang-switch button:hover,
.lang-switch a:hover { color: #fff; }
.lang-switch button.active,
.lang-switch a.active {
  background: #ffd100;
  color: #111;
}
.topstrip .lang-switch { margin-left: 12px; }


:root {
  --red: #d7263d;
  --red-dark: #a81a2c;
  --black: #111111;
  --ink: #1a1a1a;
  --white: #ffffff;
  --cream: #fffaf0;
  --yellow: #ffd100;
  --yellow-soft: #ffe664;
  --muted: #6b6b6b;
  --border: #ececec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --max: 1180px;
  --t: 260ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Prompt", "Noto Sans Thai", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Prompt", serif;
  font-weight: 700;
  margin: 0 0 .6em;
  line-height: 1.2;
  color: var(--ink);
}

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

/* ---------- Top strip ---------- */
.topstrip {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}
.topstrip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topstrip span { color: #cfcfcf; }
.topstrip .yellow { color: var(--yellow); font-weight: 600; }
.topstrip a { color: var(--yellow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--red);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand .mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}
.brand .mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand .name {
  line-height: 1.15;
}
.brand .name b {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 20px;
  letter-spacing: .3px;
}
.brand .name small {
  display: block;
  color: var(--yellow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  position: relative;
  color: var(--white);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav a:hover { color: var(--yellow); background: rgba(0, 0, 0, .15); }
.nav a.active {
  color: var(--red);
  background: var(--yellow);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 20%; right: 20%; bottom: -2px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px; background: var(--white);
  margin: 4px auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  transform: scale(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.35) 0%, rgba(17,17,17,.75) 100%);
}
.hero .content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 900px;
}
.hero .eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 6px;
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 6vw, 66px);
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero h1 .accent { color: var(--yellow); }
.hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: #f3f3f3;
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero .hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #e8e8e8;
  font-size: 14px;
  margin-top: 14px;
}
.hero .hero-meta b { color: var(--yellow); margin-right: 6px; }

/* ---------- Buttons ---------- */
.btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--yellow);
}

/* ---------- Sections ---------- */
section.block {
  padding: 90px 0;
}
section.block.alt { background: var(--cream); }

.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 6px;
  font-size: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 auto 16px;
  max-width: 720px;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 60px; height: 4px;
  background: var(--yellow);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-title p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split .img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.split .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms ease;
}
.split .img-wrap:hover img { transform: scale(1.04); }
.split .img-wrap::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px;
  width: 60px; height: 60px;
  border-top: 5px solid var(--yellow);
  border-left: 5px solid var(--yellow);
  z-index: 2;
}
.split .img-wrap::after {
  content: "";
  position: absolute;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  border-bottom: 5px solid var(--red);
  border-right: 5px solid var(--red);
  z-index: 2;
}
.split h2 { font-size: clamp(26px, 3.2vw, 38px); }
.split .lead-note {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-row .stat b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: var(--red);
  line-height: 1;
}
.stat-row .stat span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Menu cards ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.dish:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.dish .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 900;
}
.dish h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.dish .en {
  color: var(--red);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 12px;
  display: block;
}
.dish p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.dish.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.dish.featured h3 { color: var(--white); }
.dish.featured p { color: #d9d9d9; }
.dish.featured .en { color: var(--yellow); }
.dish.featured .icon { background: var(--red); color: var(--white); }
.dish.featured .tag {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--t), border-color var(--t);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.feature .f-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff6f7;
  color: var(--red);
  display: grid; place-items: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.feature h4 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Hours table ---------- */
.hours-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.hours-card .hours-head {
  padding: 32px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}
.hours-card .hours-head h3 {
  color: var(--yellow);
  margin: 0 0 6px;
}
.hours-card .hours-head p { margin: 0; color: #d0d0d0; font-size: 14px; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px dashed var(--border);
  font-size: 16px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child {
  font-weight: 600;
  color: var(--black);
}
.hours-list li span:last-child {
  color: var(--red);
  font-weight: 600;
  letter-spacing: .5px;
}
.hours-list li.today {
  background: #fffbe6;
  border-left: 4px solid var(--yellow);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 22px; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .c-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--yellow);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 18px;
}
.contact-list .c-body small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-list .c-body b {
  color: var(--black);
  font-size: 16px;
}
.contact-list .c-body a { color: var(--black); }
.contact-list .c-body a:hover { color: var(--red); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  border: 4px solid var(--white);
  outline: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--red);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
  content: "";
  position: absolute;
  background: var(--yellow);
  opacity: .15;
  border-radius: 50%;
}
.cta-strip::before { width: 260px; height: 260px; top: -120px; left: -60px; }
.cta-strip::after { width: 200px; height: 200px; bottom: -100px; right: -40px; }
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
  position: relative;
}
.cta-strip p {
  margin: 0 auto 24px;
  max-width: 560px;
  color: #ffe8ec;
  position: relative;
}
.cta-strip .btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.cta-strip .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

/* ---------- Page header (sub-pages) ---------- */
.page-head {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/hero-river.jpg);
  background-size: cover;
  background-position: center;
  opacity: .22;
  filter: grayscale(.2);
}
.page-head .container { position: relative; }
.page-head h1 {
  color: var(--white);
  font-size: clamp(30px, 4.5vw, 50px);
  margin-bottom: 10px;
}
.page-head h1 .accent { color: var(--yellow); }
.page-head .crumbs {
  color: #cfcfcf;
  font-size: 14px;
  margin-top: 12px;
}
.page-head .crumbs a { color: var(--yellow); }
.page-head .crumbs span { margin: 0 8px; opacity: .6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #c9c9c9;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--yellow);
}
.site-footer p, .site-footer li { color: #a9a9a9; font-size: 14px; line-height: 1.8; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #a9a9a9; }
.site-footer a:hover { color: var(--yellow); }
.site-footer .brand-f { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.site-footer .brand-f .mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.site-footer .brand-f .mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.site-footer .brand-f b { color: var(--white); font-family: "Playfair Display", serif; font-size: 17px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #cfcfcf;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--t), color var(--t), transform var(--t);
}
.socials a:hover { background: var(--red); color: var(--yellow); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
}
.footer-bottom .yellow { color: var(--yellow); }

/* ---------- Menu page ---------- */
.menu-jump {
  background: var(--black);
  padding: 14px 0;
  position: sticky;
  top: 83px;
  z-index: 40;
  border-bottom: 2px solid var(--yellow);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-jump .container {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.menu-jump a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #d9d9d9;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.menu-jump a:hover {
  background: var(--red);
  color: var(--yellow);
}

.menu-category {
  padding: 60px 0 40px;
  border-bottom: 1px dashed var(--border);
}
.menu-category.alt { background: var(--cream); }
.menu-category .cat-head {
  text-align: center;
  margin-bottom: 36px;
}
.menu-category .cat-head .cat-kicker {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.menu-category h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 8px;
}
.menu-category h2 span {
  display: block;
  color: var(--red);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  margin-top: 4px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-list.single { grid-template-columns: 1fr; max-width: 760px; }

.m-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dotted #dcdcdc;
}
.m-item .m-name {
  flex: 1;
  min-width: 0;
}
.m-item .m-name b {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.m-item .m-name span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
  font-style: italic;
}
.m-item .m-price {
  flex-shrink: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  padding-top: 2px;
}
.m-item.featured {
  background: linear-gradient(90deg, #fff6f7 0%, transparent 100%);
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
  margin-left: -14px;
}

/* Recommended grid with photos */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.rec-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rec-card .rec-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}
.rec-card .rec-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.rec-card:hover .rec-img img { transform: scale(1.06); }
.rec-card .rec-body { padding: 18px 20px; }
.rec-card .rec-num {
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--yellow);
  text-align: center;
  line-height: 28px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.rec-card h3 {
  font-size: 17px;
  margin: 0 0 4px;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
}
.rec-card .rec-en {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}
.rec-card .rec-price {
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
  font-family: "Playfair Display", serif;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-columns .col h3 {
  color: var(--red);
  font-size: 22px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-columns .col h3 small {
  color: var(--muted);
  font-size: 13px;
  font-family: "Prompt", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-note {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  box-shadow: var(--shadow);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section.block { padding: 60px 0; }
  .menu-list { grid-template-columns: 1fr; gap: 0 0; max-width: 700px; }
  .menu-columns { grid-template-columns: 1fr; gap: 40px; }
  .recommend-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .recommend-grid { grid-template-columns: 1fr; }
  .menu-jump { top: auto; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--red); padding: 12px; border-bottom: 3px solid var(--yellow); gap: 4px; }
  .nav.open a { width: 100%; }
  .nav-toggle { display: block; }
  .menu-grid, .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-header .container { flex-wrap: wrap; position: relative; }
  .topstrip .container { justify-content: center; text-align: center; }
  .hero { min-height: 60vh; }
  .hours-list li { padding: 14px 20px; font-size: 15px; }
  .stat-row { gap: 20px; }
}
