/* =========================================================
   Best City Food — City Taco & City Kitchen
   Shared stylesheet
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:root {
  --ink: #1b1d24;
  --muted: #5d6170;
  --bg: #f7f4ee;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(20, 20, 40, .06), 0 8px 24px rgba(20, 20, 40, .08);

  --taco-sky: #0d3f8f;
  --taco-sky-2: #2a78d6;
  --taco-red: #e0161c;
  --taco-green: #2b8a2f;
  --taco-sand: #f0c78c;

  --kit-navy: #1c2546;
  --kit-red: #cf1f2a;
  --kit-yellow: #f3b519;
}

.skip {
  position: absolute; left: -999px; top: 8px;
  background: #000; color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 99;
}
.skip:focus { left: 8px; }

.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }

/* =========================================================
   HOME
   ========================================================= */
.home {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #111421;
  color: #fff;
}
.home-intro {
  text-align: center;
  padding: 36px 16px 28px;
  background:
    radial-gradient(1200px 300px at 50% -80px, rgba(255,255,255,.08), transparent 70%),
    #111421;
}
.home-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: .06em; text-transform: uppercase;
  font-size: 14px; color: #f3b519;
  margin-bottom: 10px;
}
.home-brand .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.home-intro h1 {
  margin: 0 auto 10px;
  max-width: 900px;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.home-intro h1 .accent-g { color: #4cc451; }
.home-intro h1 .accent-r { color: #ff4a4f; }
.home-intro p {
  margin: 0 auto;
  max-width: 720px;
  color: #c9ccd8;
  font-size: clamp(15px, 1.8vw, 17px);
}

.split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 48px 24px 56px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.panel::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s ease;
  z-index: -1;
}
.panel-logo {
  width: min(360px, 72%);
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.panel-kind {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  text-align: center;
}
.panel-kind small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  font-size: 15px;
  margin-top: 8px;
  opacity: .85;
}
.panel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.panel-cta svg { width: 18px; height: 18px; transition: transform .25s ease; }
.panel:hover .panel-logo,
.panel:focus-visible .panel-logo { transform: translateY(-6px) scale(1.03); }
.panel:hover .panel-cta svg,
.panel:focus-visible .panel-cta svg { transform: translateX(4px); }
.panel:focus-visible { outline: 4px solid #fff; outline-offset: -8px; }

.panel-food {
  position: absolute;
  width: clamp(120px, 13vw, 190px);
  z-index: -1;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.35));
  pointer-events: none;
}

/* City Taco panel */
.panel--taco {
  background:
    radial-gradient(circle at 80% 15%, rgba(120,190,255,.45), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(43,138,47,.35), transparent 45%),
    linear-gradient(160deg, #072a6b 0%, #0d4fb3 50%, #2a8ae8 100%);
}
.panel--taco .panel-cta { background: var(--taco-red); color: #fff; box-shadow: 0 8px 20px rgba(224,22,28,.4); }
.panel--taco .f1 { left: 2%; bottom: 18px; transform: rotate(-8deg); }
.panel--taco .f2 { right: 2%; bottom: 22px; transform: rotate(7deg); }

/* City Kitchen panel */
.panel--kitchen {
  background:
    radial-gradient(circle at 20% 15%, rgba(243,181,25,.18), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(207,31,42,.28), transparent 45%),
    var(--kit-navy);
}
.panel--kitchen .panel-cta { background: var(--kit-yellow); color: var(--kit-navy); box-shadow: 0 8px 20px rgba(243,181,25,.35); }
.panel--kitchen .skyline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  z-index: -1; opacity: .16;
}
.badge-new {
  position: absolute; top: 18px; right: 18px;
  background: var(--kit-red); color: #fff;
  font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
}

.home-foot {
  text-align: center;
  padding: 22px 16px 26px;
  font-size: 14px;
  color: #aeb2c2;
  background: #0b0d16;
}
.home-foot a { color: #fff; text-decoration: none; font-weight: 600; }
.home-foot a:hover { text-decoration: underline; }
.home-foot .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; }
.home-foot .copy { margin-top: 10px; font-size: 12px; opacity: .7; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .panel { min-height: 420px; padding: 40px 16px 48px; }
  .panel-food { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   MENU PAGES (shared)
   ========================================================= */
.topbar {
  background: #111421;
  color: #fff;
  font-size: 14px;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 44px;
}
.topbar a { text-decoration: none; opacity: .9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar .back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar .back svg { width: 16px; height: 16px; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 40px 0 34px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 36px;
  align-items: center;
}
.hero-logo {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,.3);
}
.hero h1 {
  margin: 0 0 6px;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(40px, 6vw, 68px);
  text-transform: uppercase;
}
.hero .sub { margin: 0 0 18px; font-size: 17px; opacity: .92; max-width: 560px; }
.info {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0; padding: 0; list-style: none;
}
.info a, .info span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  transition: background .2s ease;
}
.info a:hover { background: rgba(255,255,255,.26); }
.info a.primary { border-color: transparent; }
.info svg { width: 18px; height: 18px; flex: none; }
.note {
  margin-top: 14px;
  font-size: 13px;
  opacity: .85;
}

/* category nav */
.catnav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.catnav ul {
  display: flex; gap: 8px;
  list-style: none; margin: 0; padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.catnav ul::-webkit-scrollbar { display: none; }
.catnav a {
  display: block; white-space: nowrap;
  padding: 8px 16px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  color: var(--ink);
  background: #eeece6;
  transition: background .2s ease, color .2s ease;
}
.catnav a:hover { background: #e2dfd6; }
.catnav a.active { color: #fff; background: var(--accent); }

/* sections */
main.menu { padding: 10px 0 60px; }
.section { padding-top: 34px; scroll-margin-top: 70px; }
.section-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 18px; }
.section-title {
  margin: 0;
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.section-desc { margin: 0; color: var(--muted); font-size: 15px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.item-photo {
  aspect-ratio: 4 / 3;
  background: var(--photo-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.item-photo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .4s ease; }
.item-photo.soon { background: #f1f1f1; }
.item-photo.soon img { object-fit: cover; padding: 0; }
.item:hover .item-photo:not(.soon) img { transform: scale(1.04); }
.item-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.item-name { margin: 0; font-size: 19px; line-height: 1.2; }
.item-alt { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; }
.item-desc { margin: 0; color: var(--muted); font-size: 15px; }
.item-price { margin-top: auto; padding-top: 6px; font-weight: 800; font-size: 18px; color: var(--accent); }
.item-price:empty { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; padding: 0; list-style: none; }
.chips li {
  font-size: 13px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  background: var(--chip-bg); color: var(--chip-ink);
}
.tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
  background: var(--accent); color: #fff;
}

.extras {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.extra-box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}
.extra-box h3 { margin: 0 0 10px; font-size: 17px; }
.extra-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.extra-box li { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; border-bottom: 1px dashed #e3e0d8; padding-bottom: 8px; }
.extra-box li:last-child { border-bottom: 0; padding-bottom: 0; }
.extra-box li b { color: var(--accent); }

/* sister + footer */
.sister {
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease;
}
.sister:hover { transform: translateY(-3px); }
.sister img { background: #fff; border-radius: 14px; padding: 10px; }
.sister h2 { margin: 0 0 4px; font-size: 22px; }
.sister p { margin: 0; opacity: .88; }
.sister .go { font-weight: 800; white-space: nowrap; padding: 12px 20px; border-radius: 999px; }

.site-foot {
  background: #111421; color: #b8bccb;
  padding: 30px 0 90px;
  font-size: 14px;
}
.site-foot .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.site-foot a { color: #fff; text-decoration: none; font-weight: 600; }
.site-foot a:hover { text-decoration: underline; }

.callbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30;
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  padding: 15px; border-radius: 999px;
  font-weight: 800; font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.callbar svg { width: 20px; height: 20px; }

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .hero-logo { max-width: 320px; }
  .sister { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .sister img { max-width: 220px; }
  .callbar { display: flex; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .info a, .info span { font-size: 14px; padding: 9px 14px; }
}

/* =========================================================
   CITY TACO theme
   ========================================================= */
.theme-taco {
  --accent: var(--taco-red);
  --bg: #f2f5fa;
  --photo-bg: radial-gradient(circle at 50% 55%, #ffffff 0%, #e6eef9 70%, #d6e3f5 100%);
  --chip-bg: #fde8e8;
  --chip-ink: #a50f14;
}
.theme-taco h1, .theme-taco .section-title, .theme-taco .item-name, .theme-taco .sister h2 {
  font-family: "Anton", Impact, sans-serif; font-weight: 400; letter-spacing: .02em;
}
.theme-taco .item-name { font-size: 22px; text-transform: uppercase; }
.theme-taco .hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(120,190,255,.45), transparent 45%),
    radial-gradient(circle at 10% 95%, rgba(43,138,47,.3), transparent 45%),
    linear-gradient(160deg, #072a6b 0%, #0d4fb3 55%, #2a8ae8 100%);
  padding-bottom: 40px;
}
.theme-taco .info a.primary { background: var(--taco-red); }
.theme-taco .section-title {
  font-size: clamp(26px, 3.6vw, 36px);
  color: #fff;
  background: var(--taco-red);
  padding: 8px 22px 6px;
  border-radius: 6px 22px 6px 22px;
  transform: skew(-4deg);
  box-shadow: 0 6px 14px rgba(224,22,28,.25);
}
.theme-taco .sister { background: linear-gradient(120deg, var(--kit-navy), #2c3a6e); }
.theme-taco .sister .go { background: var(--kit-yellow); color: var(--kit-navy); }
.theme-taco .callbar { background: var(--taco-red); color: #fff; }

/* =========================================================
   CITY KITCHEN theme
   ========================================================= */
.theme-kitchen {
  --accent: var(--kit-red);
  --bg: #f5f3ee;
  --photo-bg: #f1f1f1;
  --chip-bg: #fdf1d0;
  --chip-ink: #7a5500;
}
.theme-kitchen h1, .theme-kitchen .section-title, .theme-kitchen .item-name, .theme-kitchen .sister h2 {
  font-family: "Fredoka", "Inter", sans-serif; font-weight: 700;
}
.theme-kitchen h1 { text-transform: none; }
.theme-kitchen .hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(243,181,25,.22), transparent 38%),
    radial-gradient(circle at 95% 100%, rgba(207,31,42,.4), transparent 45%),
    var(--kit-navy);
}
.theme-kitchen .info a.primary { background: var(--kit-yellow); color: var(--kit-navy); }
.theme-kitchen .section-title {
  font-size: clamp(26px, 3.4vw, 34px);
  color: var(--kit-navy);
  text-transform: none;
  padding-left: 16px;
  border-left: 7px solid var(--kit-red);
}
.theme-kitchen .item { border-top: 5px solid var(--kit-navy); }
.theme-kitchen .sister { background: linear-gradient(160deg, #072a6b 0%, #0d4fb3 55%, #2a8ae8 100%); }
.theme-kitchen .sister .go { background: var(--taco-red); color: #fff; }
.theme-kitchen .callbar { background: var(--kit-yellow); color: var(--kit-navy); }
.theme-kitchen .catnav a.active { color: #fff; background: var(--kit-navy); }

/* wide card (items with many options) */
@media (min-width: 640px) {
  .item.wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1.25fr; }
  .item.wide .item-photo { aspect-ratio: auto; min-height: 100%; }
}
.extra-box .chips { margin-top: 0; }
.extra-box ul.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.extra-box ul.chips li { display: inline-block; border-bottom: 0; padding: 6px 12px; }

/* language toggle */
.lang {
  position: absolute; top: 14px; right: 16px; z-index: 40;
  display: inline-flex; padding: 3px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
}
.lang button {
  font: 700 13px/1 "Inter", sans-serif; letter-spacing: .04em;
  color: #fff; background: transparent; border: 0; cursor: pointer;
  padding: 8px 12px; border-radius: 999px;
}
.lang button[aria-pressed="true"] { background: #f3b519; color: #111421; }
.lang button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.home { position: relative; }

/* home footer */
.home-foot { padding: 34px 16px 28px; }
.home-foot .foot-addr {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; color: #fff;
}
.home-foot .foot-phones {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px;
  margin-top: 14px;
}
.home-foot .foot-phones a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(18px, 2vw, 22px); font-weight: 800; color: #fff;
}
.home-foot .foot-phones a span { font-weight: 500; color: #aeb2c2; }
.home-foot svg { width: 22px; height: 22px; flex: none; color: #f3b519; }
.home-foot .copy { margin-top: 20px; }
.home-foot .credit { margin-top: 8px; font-size: 13px; color: #8a8fa3; }
.home-foot .credit a { font-size: 13px; color: #f3b519; }
@media (max-width: 760px) {
  .home-intro { padding-top: 64px; }
  .home-foot .foot-phones { flex-direction: column; align-items: center; }
}

/* WhatsApp */
.info a.wa-pill { background: #25d366; border-color: transparent; color: #fff; }
.info a.wa-pill:hover { background: #1ebe5a; }
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 35;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; }
.wa-tip {
  position: absolute; right: 70px; white-space: nowrap;
  background: #fff; color: #111; font-weight: 700; font-size: 14px;
  padding: 8px 12px; border-radius: 10px; box-shadow: var(--shadow);
  opacity: 0; transform: translateX(6px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wa-float:hover .wa-tip { opacity: 1; transform: none; }
@media (max-width: 820px) {
  .wa-float { bottom: 84px; right: 16px; width: 56px; height: 56px; }
  .wa-tip { display: none; }
}
.home-foot .foot-biz { display: inline-flex; align-items: center; gap: 12px; }
.home-foot .wa-mini {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366;
}
.home-foot .wa-mini svg { width: 22px; height: 22px; color: #fff; }
.home-foot .wa-mini:hover { background: #1ebe5a; }
