/* ============================================================
   King's Chinese Carryout — Main Stylesheet
   Version: 1.0.0
   ============================================================ */

/* ─── CSS Variables ─── */
:root {
  --red:      #C8102E;
  --red-d:    #9B0B22;
  --red-l:    #E8253F;
  --gold:     #D4A843;
  --gold-l:   #F0C860;
  --ink:      #1A0A00;
  --ink-s:    #3D1F0A;
  --cream:    #FDF6EC;
  --cream-d:  #F5E8D0;
  --white:    #FFFFFF;
  --gray:     #6B5B4E;
  --gray-l:   #EDE4D8;
  --sh-sm:    0 2px 8px rgba(26,10,0,.10);
  --sh-md:    0 6px 24px rgba(26,10,0,.14);
  --sh-lg:    0 16px 48px rgba(26,10,0,.18);
  --rad:      12px;
  --tr:       .28s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color var(--tr); }

/* ─── Accessibility ─── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--red); color: #fff;
  padding: 8px 16px; z-index: 9999;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Utility ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.lbl {
  font-weight: 600; font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px;
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 900; color: var(--ink);
  line-height: 1.12; margin-bottom: 16px;
}
.sub { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.7; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .92rem; text-decoration: none;
  cursor: pointer; border: none;
  transition: all var(--tr); white-space: nowrap;
}
.btn-red  { background: var(--red); color: #fff; }
.btn-red:hover  { background: var(--red-l); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-out  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-out:hover  { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 5000; background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 14px 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  flex-wrap: wrap; font-size: .83rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transition: transform .3s ease;
}
.cookie-banner.gone { transform: translateY(110%); }
.cookie-banner a { color: var(--gold-l); text-decoration: underline; }
.cookie-btn {
  background: var(--red); color: #fff;
  border: none; border-radius: 6px;
  padding: 7px 16px; font-weight: 600;
  cursor: pointer; font-size: .83rem;
  white-space: nowrap; transition: background var(--tr);
  font-family: 'DM Sans', sans-serif;
}
.cookie-btn:hover { background: var(--red-l); }

/* ─── Top Bar ─── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-size: .82rem; padding: 8px 0; text-align: center;
}
.topbar a { color: var(--gold); text-decoration: none; }
.topbar a:hover { color: var(--gold-l); }
.topbar-inner {
  display: flex; justify-content: center;
  align-items: center; gap: 24px; flex-wrap: wrap;
}

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,246,236,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-d);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center;
  gap: 10px; text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px; background: var(--red);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.1rem;
  color: var(--ink); line-height: 1.1;
}
.logo-sub {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); display: block;
}
.nav-links {
  display: flex; align-items: center;
  gap: 4px; list-style: none;
}
.nav-links a {
  padding: 8px 14px; font-weight: 500; font-size: .88rem;
  color: var(--ink-s); text-decoration: none;
  border-radius: 6px; transition: all var(--tr);
}
.nav-links a:hover { background: var(--cream-d); color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--red-l) !important; }
.ham {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.ham span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  margin: 5px 0; transition: all var(--tr);
}
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--cream); padding: 80px 32px 40px;
  flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .3s ease;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
  font-size: 1.3rem; font-weight: 700; color: var(--ink);
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--gray-l);
  display: block; font-family: 'Playfair Display', serif;
}
.mob-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--ink);
}

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.hero-bg-svg,
.hero > img:first-child {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(26,10,0,.88) 0%, rgba(26,10,0,.65) 55%, rgba(26,10,0,.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 24px 80px;
  max-width: 1160px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,.2);
  border: 1px solid rgba(212,168,67,.4);
  border-radius: 50px; padding: 6px 16px;
  font-size: .78rem; font-weight: 600;
  color: var(--gold-l); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,8vw,6rem);
  font-weight: 900; color: #fff;
  line-height: 1.0; margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-h1 em { font-style: italic; color: var(--gold-l); }
.hero-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.2rem,3vw,2rem);
  color: rgba(255,255,255,.35);
  letter-spacing: .3em; margin-bottom: 24px; display: block;
}
.hero-desc {
  font-size: clamp(.95rem,2vw,1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 520px; line-height: 1.7; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.15);
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold-l); display: block; line-height: 1;
}
.stat-l { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .05em; }

/* Hero animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.hero-badge  { animation: fadeUp .6s ease both .1s; }
.hero-h1     { animation: fadeUp .6s ease both .2s; }
.hero-cn     { animation: fadeUp .6s ease both .3s; }
.hero-desc   { animation: fadeUp .6s ease both .4s; }
.hero-btns   { animation: fadeUp .6s ease both .5s; }
.hero-stats  { animation: fadeUp .6s ease both .6s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-bowl { animation: float 4s ease-in-out infinite; }
@keyframes steam {
  0%   { opacity:0; transform:translateY(0) scaleX(1); }
  50%  { opacity:.7; }
  100% { opacity:0; transform:translateY(-30px) scaleX(1.5); }
}
.st1 { animation: steam 2s ease-in-out infinite 0s; }
.st2 { animation: steam 2s ease-in-out infinite .6s; }
.st3 { animation: steam 2s ease-in-out infinite 1.2s; }

/* ─── Features Strip ─── */
.fstrip { background: var(--red); }
.fgrid  { display: grid; grid-template-columns: repeat(4,1fr); }
.fitem  {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px; color: #fff;
  border-right: 1px solid rgba(255,255,255,.2);
}
.fitem:last-child { border-right: none; }
.ficon  { font-size: 1.5rem; flex-shrink: 0; }
.fmain  { font-weight: 600; font-size: .92rem; }
.fsub   { font-size: .76rem; opacity: .75; }

/* ─── About ─── */
.about { padding: 96px 0; background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-badge {
  position: absolute; top: 28px; left: -24px;
  background: var(--red); color: #fff;
  border-radius: 12px; padding: 16px 20px;
  box-shadow: var(--sh-md); text-align: center; z-index: 2;
}
.about-badge-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; display: block; line-height: 1;
}
.about-badge-t { font-size: .68rem; opacity: .85; text-transform: uppercase; letter-spacing: .1em; }
.about-list { margin-top: 24px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--ink-s); }
.ado { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }

/* ─── Featured ─── */
.featured { padding: 80px 0; background: var(--ink-s, #3D1F0A); }
.feat-hdr { text-align: center; margin-bottom: 48px; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  position: relative; border-radius: 18px;
  overflow: hidden; height: 340px; cursor: pointer;
}
.feat-card svg { width: 100%; height: 100%; transition: transform .5s ease; }
.feat-card:hover svg { transform: scale(1.04); }
.feat-ovl {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,.92) 0%, rgba(26,10,0,.2) 60%, transparent 100%);
}
.feat-cnt { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.feat-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 50px; margin-bottom: 8px;
}
.feat-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.feat-price { color: var(--gold-l); font-weight: 600; }

/* ─── Order Section ─── */
.order-sec { padding: 80px 0; background: var(--ink); position: relative; overflow: hidden; }
.order-sec::before {
  content: '王'; position: absolute; right: -40px; top: -60px;
  font-family: 'Noto Serif SC', serif; font-size: 22rem;
  color: rgba(255,255,255,.03); line-height: 1; pointer-events: none;
}
.order-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.order-t { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.order-s { color: rgba(255,255,255,.6); font-size: .96rem; max-width: 400px; }
.order-cards { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; flex: 1; }
.ocard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 24px 28px;
  text-align: center; text-decoration: none;
  color: #fff; transition: all var(--tr); min-width: 150px;
}
.ocard:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.ocard-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.ocard-name { font-weight: 700; font-size: .96rem; display: block; margin-bottom: 4px; }
.ocard-sub  { font-size: .73rem; opacity: .6; }
.ophone { margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ophone a { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold-l); text-decoration: none; }
.ophone a:hover { color: #fff; }
.ophone-lbl { color: rgba(255,255,255,.5); font-size: .85rem; }

/* ─── Hours ─── */
.hours { padding: 80px 0; background: var(--cream-d); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.htable { width: 100%; border-collapse: collapse; }
.htable tr { border-bottom: 1px solid rgba(26,10,0,.08); }
.htable tr:last-child { border-bottom: none; }
.htable td { padding: 14px 4px; font-size: .93rem; }
.htable td:first-child { font-weight: 600; color: var(--ink); }
.htable td:last-child { text-align: right; color: var(--gray); }
.hclosed { color: var(--red) !important; font-weight: 600 !important; }
.htoday { background: rgba(200,16,46,.06); border-radius: 8px; }
.htoday td:first-child { color: var(--red); }
.loc-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: var(--sh-md); }
.loc-map { width: 100%; height: 220px; background: var(--gray-l); border-radius: 12px; margin-bottom: 24px; overflow: hidden; }
.loc-map iframe { width: 100%; height: 100%; border: none; }
.loc-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.loc-row:last-child { margin-bottom: 0; }
.loc-ico { width: 36px; height: 36px; background: var(--cream-d); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.loc-txt { font-size: .9rem; color: var(--ink-s); }
.loc-txt strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.loc-txt a { color: var(--red); text-decoration: none; font-weight: 600; }
.loc-txt a:hover { color: var(--red-d); }

/* ─── Menu Section ─── */
.menu-sec { padding: 96px 0; background: var(--cream); }
.menu-hdr { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.tab {
  padding: 9px 18px; border-radius: 50px;
  font-size: .83rem; font-weight: 600; cursor: pointer;
  border: 2px solid var(--gray-l); background: #fff;
  color: var(--gray); transition: all var(--tr);
  font-family: 'DM Sans', sans-serif;
}
.tab:hover { border-color: var(--red); color: var(--red); }
.tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.mcat { display: none; }
.mcat.active { display: block; }
.mgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 22px; }
.mcard {
  background: #fff; border-radius: var(--rad);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: all var(--tr); border: 1px solid var(--gray-l);
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.food-img { width: 100%; height: 190px; display: block; overflow: hidden; }
.mcard-body { padding: 18px; }
.mcard-name { font-weight: 700; font-size: .98rem; color: var(--ink); margin-bottom: 5px; line-height: 1.3; }
.mcard-desc { font-size: .83rem; color: var(--gray); line-height: 1.5; margin-bottom: 12px; min-height: 36px; }
.mcard-foot { display: flex; align-items: center; justify-content: space-between; }
.mcard-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: var(--red); }
.badge { font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em; }
.b-hot  { background: #FEE2E2; color: #DC2626; }
.b-pop  { background: #FEF3C7; color: #D97706; }
.b-chef { background: #EDE9FE; color: #7C3AED; }
.b-veg  { background: #D1FAE5; color: #059669; }

/* ─── AdSense Widget Zone ─── */
.kcc-ad-widget {
  margin: 48px 0;
  text-align: center;
  min-height: 90px;
  /* No visible placeholder — empty until ads are activated */
}
.kcc-ad-widget ins.adsbygoogle {
  display: block;
  margin: 0 auto;
}

/* ─── Reviews ─── */
.reviews { padding: 80px 0; background: var(--cream-d); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rcard { background: #fff; border-radius: var(--rad); padding: 26px; box-shadow: var(--sh-sm); transition: all var(--tr); }
.rcard:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.rstars { color: var(--gold); font-size: .96rem; margin-bottom: 12px; letter-spacing: 2px; }
.rtext { font-size: .92rem; color: var(--ink-s); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.rtext::before { content: '"'; font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -.4em; margin-right: 4px; font-family: 'Playfair Display', serif; }
.rauthor { display: flex; align-items: center; gap: 12px; }
.ravatar { width: 38px; height: 38px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .86rem; flex-shrink: 0; }
.rname { font-weight: 700; font-size: .88rem; color: var(--ink); }
.rdate { font-size: .76rem; color: var(--gray); }

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0; background: var(--red);
  text-align: center; position: relative; overflow: hidden;
}
.cta-t { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; }
.cta-s { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: 32px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── Footer ─── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.fbname { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.fbdesc { font-size: .86rem; line-height: 1.7; margin-bottom: 18px; }
.fsocials { display: flex; gap: 10px; }
.fsoc { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; text-decoration: none; transition: all var(--tr); }
.fsoc:hover { border-color: var(--gold); background: rgba(212,168,67,.15); }
.fct { font-weight: 700; font-size: .82rem; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: .86rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--tr); }
.flinks a:hover { color: var(--gold-l); }
.fhours { display: flex; flex-direction: column; gap: 8px; }
.fhr { display: flex; justify-content: space-between; font-size: .83rem; }
.fhr span:first-child { color: rgba(255,255,255,.5); }
.fhr span:last-child { color: #fff; font-weight: 500; }
.fbot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; }
.fbot-links { display: flex; gap: 18px; }
.fbot-links a { color: rgba(255,255,255,.38); text-decoration: none; transition: color var(--tr); }
.fbot-links a:hover { color: var(--gold-l); }

/* ─── Back to Top ─── */
.bktop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--red);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.1rem;
  box-shadow: var(--sh-md); transition: all var(--tr);
  opacity: 0; pointer-events: none; z-index: 999;
}
.bktop.vis { opacity: 1; pointer-events: all; }
.bktop:hover { background: var(--red-l); transform: translateY(-3px); }

/* ─── Policy pages (Privacy, Terms, etc.) ─── */
.policy-page { max-width: 800px; margin: 60px auto; padding: 0 24px 80px; }
.policy-page h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.policy-page h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.policy-page p, .policy-page li { font-size: .96rem; color: var(--ink-s); line-height: 1.75; margin-bottom: 12px; }
.policy-page ul, .policy-page ol { padding-left: 24px; margin-bottom: 16px; }
.policy-page a { color: var(--red); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-links + .nav-cta { display: none; }
  .ham { display: block; }
  .mob-nav { display: flex; }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .order-inner { flex-direction: column; }
  .order-cards { justify-content: flex-start; }
  .feat-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .fbot { flex-direction: column; align-items: flex-start; }
  .mgrid { grid-template-columns: 1fr 1fr; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .about-badge { left: 0; }
}
@media (max-width: 480px) {
  .fgrid { grid-template-columns: 1fr; }
  .mgrid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-h1 { font-size: 2.6rem; }
}

/* ─── Print Styles (for menu printing) ─── */
@media print {
  .navbar, .topbar, .fstrip, .featured, .reviews, .cta-banner,
  .order-sec, .bktop, .cookie-banner, .mob-nav, .hero-btns,
  .site-footer, .tabs { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero { min-height: auto; padding: 20px 0; }
  .hero-overlay { display: none; }
  .hero-content { padding: 20px; }
  .menu-sec { padding: 20px 0; }
  .mcat { display: block !important; }
  .mgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mcard { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  .food-img { height: 120px; }
}
