/* ============================================================
   Chuy's Food Truck — styles.css
   High-end, minimalist, bold street-food energy.
   No frameworks. No external dependencies.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --red: #be0510;
  --red-dark: #8c0009;
  --orange: #df4d12;
  --orange-light: #f26a2e;
  --black: #000000;
  --ink: #14100f;
  --white: #ffffff;
  --cream: #fbf7f2;
  --sand: #f4ece3;
  --muted: #6b625c;
  --line: rgba(0, 0, 0, 0.08);

  --grad-warm: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  --grad-warm-soft: linear-gradient(135deg, #d11220 0%, #f26a2e 100%);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.20);

  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --header-h: 80px;
  --maxw: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans: "Helvetica Neue", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section { padding-block: clamp(64px, 9vw, 120px); }

.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad-warm);
}
.section--ink .eyebrow { color: var(--orange-light); }

h1, h2, h3 {
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.h-display {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
}
.section--ink .lead { color: rgba(255, 255, 255, 0.78); }

.text-grad {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--grad-warm);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(190, 5, 16, 0.32);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(190, 5, 16, 0.42);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(0, 0, 0, 0.16);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  border-bottom-color: var(--line);
}

.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand img { height: 46px; width: auto; }
.brand__name { font-size: 1.15rem; line-height: 1; }
.brand__name span { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; color: var(--orange); text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--red); }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.header__phone svg { width: 17px; height: 17px; color: var(--red); }
.header__phone:hover { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  position: relative;
  background: var(--ink);
}
.hamburger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger span:nth-child(1) { transform: translate(-50%, -8px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 6px); }
.hamburger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--white);
  z-index: 999;
  padding: 24px clamp(20px, 5vw, 48px) 32px;
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  transition: transform 0.45s var(--ease);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a.m-link {
  display: block;
  padding: 14px 6px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .m-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.mobile-menu .btn { width: 100%; }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  color: var(--white);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.30) 40%, rgba(20,16,15,0.88) 100%),
    linear-gradient(100deg, rgba(190,5,16,0.55) 0%, rgba(190,5,16,0.0) 55%);
}

.hero__inner { padding-block: clamp(48px, 8vw, 90px); }
.hero__content { max-width: 760px; }
.hero .eyebrow { color: #ffd9b0; }
.hero .eyebrow::before { background: var(--white); }
.hero h1 { margin: 18px 0 10px; text-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.hero__sub {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero__sub em { font-style: normal; color: #ffcf9e; }
.hero__copy {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.86);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  font-weight: 700;
}
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #9aa0a6;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
}
.status-dot.is-open {
  background: #2ecc71;
  animation: pulse 2s infinite;
}
.status-dot.is-closed { background: #e74c3c; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-hint .mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  position: relative;
}
.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__body p + p { margin-top: 18px; }
.about__body { margin-top: 22px; }
.about__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.stat {
  flex: 1 1 130px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat__num { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.03em; }
.stat__num .text-grad { display: inline; }
.stat__label { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 2px; }

.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: -22px;
  bottom: 28px;
  background: var(--grad-warm);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-weight: 900;
  line-height: 1.1;
  max-width: 200px;
}
.about__badge small { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; margin-bottom: 4px; }
.about__badge strong { font-size: 1.35rem; }

/* ============================================================
   FEATURED MENU
   ============================================================ */
.menu__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.menu__head .lead { margin-top: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.chip:hover { transform: translateY(-3px); background: var(--grad-warm); color: var(--white); border-color: transparent; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.m-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.m-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s var(--ease);
}
.m-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.82) 100%);
}
.m-card:hover img { transform: scale(1.07); }
.m-card__body { padding: 26px; width: 100%; }
.m-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--grad-warm);
  margin-bottom: 12px;
}
.m-card__title { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }
.m-card__desc { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-top: 6px; }

/* feature layout spans */
.m-card.span-7 { grid-column: span 7; }
.m-card.span-5 { grid-column: span 5; }
.m-card.span-4 { grid-column: span 4; }
.m-card.span-6 { grid-column: span 6; }
.m-card.tall { min-height: 420px; }

/* small categories row */
.cat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.cat {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat .cat__ico { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.cat span.cat__name { font-size: 0.98rem; }

.menu__foot { margin-top: 44px; text-align: center; }
.menu__foot .lead { margin: 0 auto 22px; }

/* ============================================================
   HOURS / LOCATION CTA
   ============================================================ */
.hours-loc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.panel h3 { font-size: 1.5rem; margin-bottom: 6px; }
.panel .panel__sub { color: var(--muted); margin-bottom: 22px; }

.hours-list { display: flex; flex-direction: column; gap: 2px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.is-today {
  background: linear-gradient(90deg, rgba(223,77,18,0.10), rgba(190,5,16,0.04));
  border-radius: 12px;
  padding-inline: 14px;
  border-bottom-color: transparent;
}
.hours-row .day { display: inline-flex; align-items: center; gap: 10px; }
.today-pill {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad-warm);
  color: #fff;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.hours-row .time { color: var(--ink); }
.hours-row .time.closed { color: var(--red); }

.open-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px dashed var(--line);
}
.open-banner.open { background: rgba(46,204,113,0.10); color: #1c7a44; border-color: rgba(46,204,113,0.4); }
.open-banner.closed { background: rgba(231,76,60,0.08); color: #b03228; border-color: rgba(231,76,60,0.35); }

.loc-panel { display: flex; flex-direction: column; }
.loc-panel .addr {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
}
.loc-panel .addr span { display: block; }
.loc-map {
  margin-top: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 16 / 10;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }
.loc-panel .panel__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ============================================================
   ORDER CTA (big)
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-warm);
  color: var(--white);
  text-align: center;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 420px; height: 420px; top: -160px; right: -120px; }
.cta-band::after { width: 320px; height: 320px; bottom: -150px; left: -90px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -0.03em; }
.cta-band p { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,0.9); margin: 14px auto 30px; max-width: 48ch; }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(60px, 9vw, 110px));
  padding-bottom: clamp(56px, 8vw, 100px);
  color: var(--white);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,15,0.55), rgba(20,16,15,0.85)),
    linear-gradient(110deg, rgba(190,5,16,0.45), rgba(0,0,0,0) 60%);
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; letter-spacing: -0.035em; margin: 16px 0 14px; }
.page-hero p { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,0.85); max-width: 56ch; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.info-cards { display: grid; gap: 18px; }
.info-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card__ico {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-warm);
  color: var(--white);
}
.info-card__ico svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-weight: 600; }
.info-card a:hover { color: var(--red); }
.info-card .big { font-size: 1.25rem; font-weight: 800; color: var(--ink); }

.contact-copy {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.contact-copy h3 { font-size: 1.6rem; margin-bottom: 14px; }
.contact-copy p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.contact-copy .stack { display: flex; flex-direction: column; gap: 12px; }
.contact-copy .btn { width: 100%; }

.map-full {
  margin-top: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 21 / 8;
}
.map-full iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Hero reviews avatars widget */
.hero-reviews {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  max-width: 100%;
}
.hero-reviews emr-avatars { display: block; }

/* ============================================================
   ORDERING PLATFORM PAGES (DoorDash, Uber Eats, Grubhub, EatFuti)
   ============================================================ */
.support-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.support-head .eyebrow { justify-content: center; }
.support-head .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--grad-warm); }
.support-head .section-title { margin: 12px 0 14px; }
.support-head .lead { margin-inline: auto; }

/* Big commission stat */
.stat-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  text-align: center;
  background: var(--grad-warm);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}
.stat-callout .big-num { font-size: clamp(2.8rem, 7vw, 4.2rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.stat-callout .stat-text { font-size: 1.05rem; font-weight: 700; max-width: 42ch; text-align: left; }

/* Comparison cards */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.compare__card {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
}
.compare__card--good { background: var(--ink); color: #fff; border-color: transparent; position: relative; box-shadow: var(--shadow-md); }
.best-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm); color: #fff;
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
}
.compare__tag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.compare__card--good .compare__tag { color: var(--orange-light); }
.compare__card h3 { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em; margin: 6px 0 4px; }
.compare__price { font-size: 0.95rem; color: var(--muted); margin-bottom: 18px; }
.compare__card--good .compare__price { color: rgba(255,255,255,0.7); }
.compare__list { display: flex; flex-direction: column; gap: 13px; }
.compare__list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; font-size: 0.95rem; }
.compare__card--good .compare__list li { color: rgba(255,255,255,0.9); }
.compare__list .ic { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.compare__list .ic--x { color: #e74c3c; }
.compare__list .ic--ok { color: #2ecc71; }
.compare__card .btn { width: 100%; margin-top: 22px; }

/* Other-apps cross links */
.other-apps { margin-top: clamp(40px, 6vw, 64px); text-align: center; }
.other-apps h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 16px; }
.app-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.app-link {
  padding: 11px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--white);
  font-weight: 800; font-size: 0.92rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.app-link:hover { transform: translateY(-3px); background: var(--grad-warm); color: #fff; border-color: transparent; }

@media (max-width: 680px) {
  .compare { grid-template-columns: 1fr; }
  .compare__card--good { order: -1; }
}

/* Footer ways-to-order line */
.f-ways { font-size: 0.9rem; margin: 14px 0 18px; line-height: 1.7; }
.f-ways a { color: rgba(255,255,255,0.78); font-weight: 700; }
.f-ways a:hover { color: var(--orange-light); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-note { text-align: center; max-width: 660px; margin: 0 auto; }
.menu-note .badge-fresh {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--grad-warm); color: #fff; font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}

.menu-cat-section { margin-top: clamp(44px, 6vw, 72px); }
.menu-cat-section:first-of-type { margin-top: clamp(40px, 5vw, 56px); }
.menu-section-head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.menu-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 900;
  letter-spacing: -0.02em; white-space: nowrap;
}
.menu-section-head::after { content: ""; flex: 1; height: 2px; background: var(--line); }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.menu-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-warm);
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.menu-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.menu-card__head h3 { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em; }
.price-badge { font-size: 1.2rem; font-weight: 900; color: var(--red); white-space: nowrap; }
.menu-card__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

.choices { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 18px; }
.choices__label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.choices span.choice {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill);
  background: var(--sand); color: var(--ink);
}

/* Wide card with an internal item grid (burgers, sides, drinks) */
.menu-card--wide { grid-column: 1 / -1; }
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 22px 36px;
  margin-top: 6px;
}
.item__row { display: flex; align-items: baseline; gap: 10px; }
.item__name { font-weight: 800; font-size: 1.06rem; letter-spacing: -0.01em; }
.item__dots { flex: 1; border-bottom: 2px dotted rgba(0, 0, 0, 0.18); transform: translateY(-4px); }
.item__price { font-weight: 900; color: var(--red); white-space: nowrap; }
.item__desc { color: var(--muted); font-size: 0.9rem; line-height: 1.5; margin-top: 4px; }

@media (max-width: 600px) {
  .menu-section-head h2 { font-size: 1.45rem; }
}

/* ============================================================
   NAV DROPDOWN (Delivery Areas)
   ============================================================ */
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__link--toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav__link--toggle .caret { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.nav__item:hover .caret,
.nav__item:focus-within .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 50;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  padding: 9px 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.dropdown a:hover,
.dropdown a[aria-current="page"] { background: var(--cream); color: var(--red); }
.dropdown .dropdown__all { margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line); font-weight: 800; color: var(--red); }

/* Mobile menu collapsible areas */
.mobile-menu details { border-bottom: 1px solid var(--line); }
.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary .caret { width: 16px; height: 16px; color: var(--red); transition: transform 0.3s var(--ease); }
.mobile-menu details[open] summary .caret { transform: rotate(180deg); }
.mobile-menu .submenu { padding: 2px 6px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; }
.mobile-menu .submenu a { padding: 9px 10px; font-size: 0.98rem; font-weight: 600; border-radius: 8px; }
.mobile-menu .submenu a:hover { background: var(--cream); color: var(--red); }

/* ============================================================
   DELIVERY AREA PAGES
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.area-main p { color: var(--muted); font-size: 1.05rem; }
.area-main p + p { margin-top: 16px; }
.area-main p strong { color: var(--ink); }

.area-card {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-md);
}
.area-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.area-card__radius { color: var(--muted); margin-bottom: 22px; }
.area-facts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.area-facts li { font-weight: 600; display: flex; gap: 10px; align-items: flex-start; }
.area-facts li span.ico { flex: none; }
.area-card .btn { width: 100%; }
.area-card .btn + .btn { margin-top: 10px; }

/* Hub page */
.areas-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.areas-intro .eyebrow { justify-content: center; }
.areas-intro .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--grad-warm); }
.areas-intro .section-title { margin: 12px 0 14px; }
.areas-intro .lead { margin-inline: auto; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 18px;
}
.area-tile {
  display: block;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.area-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.area-tile .tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.area-tile h3 { font-size: 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0 6px; }
.area-tile h3 .arrow { color: var(--red); transition: transform 0.3s var(--ease); }
.area-tile:hover h3 .arrow { transform: translateX(5px); }
.area-tile p { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 880px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-card { position: static; }
}

/* ============================================================
   REVIEWS (homepage social proof)
   ============================================================ */
.reviews__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.reviews__head .eyebrow { justify-content: center; }
.reviews__head .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad-warm);
}
.reviews__head .section-title { margin: 12px 0 14px; }
.reviews__head .lead { margin-inline: auto; }

.reviews__widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow-md);
  min-height: 200px;
}
.reviews__widget emr-simple-carousel {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
}
.reviews__cta { text-align: center; margin-top: 30px; }

/* ============================================================
   FEEDBACK / REVIEW PAGE
   ============================================================ */
.review-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.review-intro { text-align: center; margin-bottom: 40px; }
.review-intro .eyebrow { justify-content: center; }
.review-intro .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad-warm);
}
.review-intro .lead { margin-inline: auto; }

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  min-height: 220px;
}
/* Give the embedded review form room to breathe and inherit the site type */
.review-card emr-collect-review-form {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(52px, 7vw, 80px) 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
}
.footer__brand .brand { color: var(--white); }
.footer__brand .brand img { height: 52px; }
.footer__brand p { margin-top: 18px; max-width: 34ch; font-size: 0.95rem; }
.footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 800;
}
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a, .footer ul li { font-size: 0.95rem; transition: color 0.25s var(--ease); }
.footer ul a:hover { color: var(--orange-light); }
.footer .f-hours span { display: block; }
.footer .f-hours strong { color: var(--white); font-weight: 700; }

.footer__order { margin-bottom: 22px; }
.footer__order .btn { width: 100%; }

.socials { display: flex; gap: 12px; }
.social {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.social svg { width: 20px; height: 20px; }
.social:hover { transform: translateY(-4px); background: var(--grad-warm); border-color: transparent; }

.footer__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer__bottom a:hover { color: var(--orange-light); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .nav, .header__phone { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__media img { aspect-ratio: 16 / 11; }
  .hours-loc__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* menu grid collapses to simpler spans */
  .menu-grid { grid-template-columns: repeat(6, 1fr); }
  .m-card.span-7, .m-card.span-5, .m-card.span-6, .m-card.span-4 { grid-column: span 6; }
  .m-card.tall { min-height: 320px; }
}

@media (max-width: 560px) {
  :root { --header-h: 72px; }
  .brand__name span { display: none; }
  .hero__actions .btn, .cta-band .hero__actions .btn { flex: 1 1 auto; }
  .about__badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .map-full { aspect-ratio: 4 / 4; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}
