:root {
  --color-yellow: #f5c400;
  --color-yellow-deep: #e0b000;
  --color-primary: #f5c400;
  --color-secondary: #111111;
  --color-accent: #f5c400;
  --color-dark: #050505;
  --color-dark-2: #111111;
  --color-light: #fff8e6;
  --color-cream: #f5c400;
  --color-muted: #a3a3a3;
  --color-text: #f7f7f7;
  --color-text-dim: #c8c8c8;
  --color-on-yellow: #050505;
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-script: "Yellowtail", "Segoe Script", cursive;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --color-name: #fff4c4;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Mobile header size */
@media (max-width: 759px) {
  :root {
    --header-h: 60px;
  }
  .site-header {
    height: 60px;
  }
}
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-dark);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button,
.btn {
  font-family: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header - fixed at top */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 196, 0, 0.18);
}

.site-header.is-compact {
  height: 64px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-yellow);
  flex-shrink: 0;
}

.site-header.is-compact .brand-mark {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff8dc;
  text-shadow:
    0 0 6px #fff8dc,
    0 0 15px var(--color-yellow),
    0 0 30px var(--color-yellow),
    0 0 50px var(--color-yellow);
  animation: brandGlow 2s ease-in-out infinite alternate;
}

@keyframes brandGlow {
  0% {
    text-shadow:
      0 0 4px #fff8dc,
      0 0 10px var(--color-yellow),
      0 0 20px var(--color-yellow),
      0 0 35px rgba(245, 196, 0, 0.6);
    transform: scale(1);
  }
  100% {
    text-shadow:
      0 0 8px #fff8dc,
      0 0 20px var(--color-yellow),
      0 0 45px var(--color-yellow),
      0 0 80px rgba(245, 196, 0, 1);
    transform: scale(1.04);
  }
}

.brand-name--hero {
  display: block;
  font-size: clamp(3.2rem, 12vw, 6.8rem);
  margin-top: 0.1em;
}

.nav-desktop {
  display: none;
  gap: 1.15rem;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.nav-desktop a[aria-current="page"],
.nav-desktop a:hover { color: var(--color-light); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-light);
  display: grid;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-on-yellow);
  box-shadow: 0 10px 28px rgba(245, 196, 0, 0.28);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--color-light);
  border: 1px solid rgba(245, 196, 0, 0.35);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.97);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.nav-overlay nav {
  display: grid;
  gap: 0.8rem;
  text-align: center;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.4rem);
  letter-spacing: 0.08em;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
}

/* Hero */
/* Hero - add top padding for fixed header */
.hero {
  min-height: 92vh;
  padding-top: var(--header-h);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

/* Main content offset for fixed header */
main {
  padding-top: 0;
}
main:not(:has(.hero)) {
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 1.1s var(--ease) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 14, 12, 0.15) 0%, rgba(18, 14, 12, 0.88) 78%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 196, 0, 0.22), transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
}

.kicker {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1, h2, .display {
  font-family: var(--font-display);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
}

h1 { font-size: clamp(3.4rem, 12vw, 7.5rem); }

.hero-copy p {
  max-width: 34rem;
  color: var(--color-text-dim);
  font-size: 1.05rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
}

.chip {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.75rem;
  color: var(--color-cream);
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.08);
  background: #000;
  color: var(--color-yellow);
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1.15rem;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

:root {
  --header-h: 64px;
  /* etc */
}

#signature {
  padding-top: 60px;
  padding-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#signature .kicker {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.2em;
}

#signature h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

#signature h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

#signature .sig-grid h3 {
  color: var(--color-primary);
}

#signature .feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#signature .feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245, 196, 0, 0.18);
}

#signature .feature img {
  transition: transform 0.4s ease;
}

#signature .feature:hover img {
  transform: scale(1.05);
}

#signature .sig-grid {
  margin-top: 1rem;
}

.sig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.sig-grid .feature {
  margin: 0;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  text-align: center;
}

.sig-grid .feature img {
  width: 180px;
  aspect-ratio: 1;
  height: 180px;
  object-fit: cover;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sig-grid h3,
.sig-grid .feature h3 {
  font-size: 0.85rem !important;
  margin: 0 0 0.05rem !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  padding: 0 !important;
}

.sig-grid .lede,
.sig-grid .feature .lede {
  font-size: 0.72rem !important;
  margin: 0 !important;
  line-height: 1.1 !important;
  padding: 0 !important;
}

@media (max-width: 639px) {
  .sig-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
  }
  .sig-grid .feature {
    display: grid !important;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.8rem;
    row-gap: 0.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.7rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .sig-grid .feature img {
    width: 72px !important;
    height: 72px !important;
    grid-row: 1 / 3;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .sig-grid .feature > h3 {
    grid-column: 2;
    grid-row: 1;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
  }
  .sig-grid .feature > p {
    grid-column: 2;
    grid-row: 2;
    color: var(--color-text-dim);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.2;
  }
}

@media (min-width: 640px) {
  .sig-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
  }
}

.section-head { margin-bottom: 1.8rem; }

h2 { font-size: clamp(2.2rem, 6vw, 4rem); }

.lede {
  color: var(--color-text-dim);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Category cards - PC: grid layout */
.cat-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72%;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.6rem;
}

.cat-row::-webkit-scrollbar {
  display: none;
}

@media (min-width: 760px) {
  .cat-row .cat-card[aria-hidden="true"] {
    display: none;
  }
}

/* Hide duplicate cards on mobile */
@media (max-width: 759px) {
  .cat-row .cat-card[aria-hidden="true"] {
    display: none;
  }
  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .header-inner {
    width: 100%;
    padding: 0 1rem;
    gap: 0.5rem;
  }
  /* Hide Order now on mobile to prevent overflow */
  .header-actions .btn {
    display: none !important;
  }
  .header-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  body, html {
    overflow-x: hidden;
  }
  /* Find us buttons - one line on mobile */
  #find-us .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.3rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    justify-content: flex-start;
  }
  #find-us .hero-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 0.4rem 0.3rem;
    font-size: 0.6rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
}

/* Auto-scroll animation only on mobile */
@media (max-width: 759px) {
  #mood {
    overflow: visible;
    padding: 2rem 0;
  }
  .cat-row {
    display: grid !important;
    grid-auto-flow: unset !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
    width: 100%;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .cat-row::-webkit-scrollbar {
    display: none !important;
  }
  .cat-card {
    min-height: unset !important;
    height: auto !important;
    min-width: unset !important;
    flex: unset !important;
    overflow: visible !important;
  }
}

.cat-card {
  scroll-snap-align: start;
  min-height: 160px;
  min-width: 160px;
  flex: 0 0 auto;
  white-space: nowrap;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(245, 196, 0, 0.28), rgba(5, 5, 5, 0.15)),
    var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s var(--ease);
}

.section-head h2 {
  position: relative;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin-top: 0.75rem;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.section-head.is-in h2::after,
#mood.is-in .section-head h2::after,
#combos-home.is-in .section-head h2::after,
#find-us.is-in .section-head h2::after {
  transform: scaleX(1);
}

.cat-card {
  position: relative;
  overflow: hidden;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(245, 196, 0, 0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}

.cat-card:hover::after,
#mood.is-in .cat-card::after {
  animation: cardShine 1.1s var(--ease) forwards;
}

#mood.is-in .cat-card:nth-child(1)::after { animation-delay: 0.05s; }
#mood.is-in .cat-card:nth-child(2)::after { animation-delay: 0.12s; }
#mood.is-in .cat-card:nth-child(3)::after { animation-delay: 0.19s; }
#mood.is-in .cat-card:nth-child(4)::after { animation-delay: 0.26s; }
#mood.is-in .cat-card:nth-child(5)::after { animation-delay: 0.33s; }
#mood.is-in .cat-card:nth-child(6)::after { animation-delay: 0.4s; }
#mood.is-in .cat-card:nth-child(7)::after { animation-delay: 0.47s; }
#mood.is-in .cat-card:nth-child(8)::after { animation-delay: 0.54s; }

.cat-card .cat-icon {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.6rem;
  transition: transform 0.3s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.cat-card:hover .cat-icon {
  transform: scale(1.15) rotate(-6deg);
}

.cat-card > span:not(.cat-icon) {
  display: inline-block;
  transition: transform 0.25s var(--ease), color 0.25s;
}

.cat-card:hover > span:not(.cat-icon) {
  transform: translateX(6px);
  color: var(--color-yellow);
}

#find-us h2 {
  text-shadow: 0 0 0 transparent;
}

#find-us.is-in h2 {
  animation: placeGlow 1.4s var(--ease) forwards;
}

/* Find us - left align on desktop, center on mobile */
@media (min-width: 760px) {
  #find-us .section-head {
    text-align: left;
    margin-bottom: 0;
  }
  #find-us .lede {
    margin-left: 0;
    margin-right: 0;
  }
  #find-us .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.3rem;
    margin-top: 1rem;
    justify-content: flex-start;
  }
  #find-us .hero-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 0.4rem 0.3rem;
    font-size: 0.6rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  .find-us-map-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0.8rem auto 0;
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
    font-weight: 700;
    min-height: 32px !important;
    height: auto !important;
    width: auto !important;
    line-height: 1.2 !important;
    border-radius: 999px;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    background: transparent !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .find-us-map-btn:hover {
    background: var(--color-primary) !important;
    color: #050505 !important;
    transform: translateY(-1px);
  }

  /* Two column layout */
  .find-us-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
  .find-us-info {
    flex: 1;
  }
  .find-us-map {
    flex: 1;
    min-width: 300px;
  }
}

/* Mobile: stacked with margin */
@media (max-width: 759px) {
  #find-us {
    padding-bottom: 3rem;
    overflow: visible;
  }
  .find-us-content {
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  .find-us-info {
    width: 100%;
    position: relative;
    z-index: 2;
    background: var(--color-dark);
    padding-bottom: 1rem;
  }
  .find-us-map {
    width: 100%;
    position: relative;
    z-index: 1;
    display: block;
  }
  .find-us-map iframe {
    height: 200px;
  }
}

.find-us-map iframe {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

@keyframes cardShine {
  to { transform: translateX(120%); }
}

@keyframes placeGlow {
  0% { text-shadow: 0 0 0 transparent; letter-spacing: 0.02em; }
  60% { text-shadow: 0 0 28px rgba(245, 196, 0, 0.45); }
  100% { text-shadow: 0 0 16px rgba(245, 196, 0, 0.22); letter-spacing: 0.04em; }
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0;
}

/* Food cards */
#combos-home {
  padding: 60px 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#combos-home .section-head {
  text-align: center;
  margin-bottom: 2rem;
}

#combos-home .section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.05em;
}

#combos-home .lede {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#combos-home .grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding-bottom: 1.5rem;
}

#combos-home .food-card {
  height: 100%;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

#combos-home .food-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

#combos-home .food-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.3rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

#combos-home .food-card .tags,
#combos-home .food-card .card-row,
#combos-home .food-card .price-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 0.5rem;
}

#combos-home .food-card .card-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

#combos-home .food-card .btn {
  min-height: 32px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 759px) {
  #combos-home .grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    animation: none;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

/* Food card - PC: compact grid / Mobile: auto-carousel */
.food-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-dark-2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 0.6rem 0.4rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.food-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.15);
  border-color: rgba(245, 196, 0, 0.3);
  background: rgba(245, 196, 0, 0.04);
}

.food-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.18), rgba(5, 5, 5, 0.5));
  border-radius: 50%;
  border: 1px solid rgba(245, 196, 0, 0.12);
  margin-bottom: 0.4rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.food-card:hover .food-card__icon {
  transform: scale(1.15) rotate(-6deg);
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.3), rgba(5, 5, 5, 0.2));
}

.food-card .body {
  width: 100%;
  padding: 0;
}

.food-card h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.1;
  transition: color 0.2s ease;
}

.food-card:hover h3 {
  color: var(--color-primary);
}

.food-card .tags,
.food-card .lede,
.food-card .card-row,
.food-card .price-hint {
  display: none;
}

.food-card .btn {
  min-height: 26px;
  padding: 0.25rem 0.5rem;
  font-size: 0.6rem;
}

/* PC grid - many cards per row */
@media (min-width: 760px) {
  .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.5rem;
  }
}

/* Mobile carousel with auto-scroll */
@media (prefers-reduced-motion: no-preference) {
  @keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

@media (max-width: 759px) {
  .grid-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.7rem;
    padding: 0.5rem 1rem 1rem;
    margin: 0 -1rem;
    /* Auto-scroll animation */
    animation: autoScroll 30s linear infinite;
  }
  .grid-cards:hover,
  .grid-cards:active {
    animation-play-state: paused;
  }
  .grid-cards::-webkit-scrollbar { display: none; }

  .food-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
    padding: 0.7rem 0.5rem;
  }
  .food-card__icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  .food-card h3 {
    font-size: 0.78rem;
  }
}

/* (image styles removed - using icons) */

@keyframes cardEnter {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.stagger-in {
  opacity: 0;
  animation: cardEnter 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.food-card .body { padding: 1rem 1.05rem 1.15rem; }

.food-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.25rem;
  letter-spacing: 0.04em;
}

.tags { color: var(--color-muted); font-size: 0.82rem; }

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  gap: 0.5rem;
}

.price-hint { font-size: 0.75rem; color: var(--color-muted); }

/* Signature editorial */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  margin: 3rem 0 0;
}

.feature img {
  width: clamp(160px, 28vw, 220px);
  height: auto;
  max-width: 42vw;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.feature .words {
  margin: 0;
}

@media (min-width: 760px) {
  .feature {
    flex-direction: row;
    gap: 2.5rem;
    text-align: left;
  }
  .feature .words {
    text-align: left;
  }
}

.words {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 0.9;
}

.words span { display: block; }

.center { text-align: center; }

.word-smoky {
  color: #d97706;
  text-shadow: 0 0 28px rgba(217, 119, 6, 0.35), 0 0 55px rgba(217, 119, 6, 0.15);
}

.word-spicy {
  color: #ef4444;
  text-shadow: 0 0 28px rgba(239, 68, 68, 0.4), 0 0 55px rgba(239, 68, 68, 0.2);
}

.word-cheesy {
  color: var(--color-primary);
  text-shadow: 0 0 28px rgba(245, 196, 0, 0.4), 0 0 55px rgba(245, 196, 0, 0.2);
}

.brand-moment {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  text-align: center;
}

.brand-moment .bg-type {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 12vw, 7rem);
  color: rgba(255,255,255,0.05);
  line-height: 0.85;
  pointer-events: none;
}

.bg-more {
  color: #4ade80;
  text-shadow: 0 0 40px rgba(74, 222, 128, 0.35), 0 0 80px rgba(74, 222, 128, 0.15);
}

.bg-food {
  color: #fb923c;
  text-shadow: 0 0 40px rgba(251, 146, 60, 0.4), 0 0 80px rgba(251, 146, 60, 0.2);
}

.bg-flavour {
  color: #f87171;
  text-shadow: 0 0 40px rgba(248, 113, 113, 0.4), 0 0 80px rgba(248, 113, 113, 0.2);
}

.bg-brand {
  color: var(--color-yellow);
  text-shadow: 0 0 40px rgba(245, 196, 0, 0.45), 0 0 80px rgba(245, 196, 0, 0.25);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 196, 0, 0.4) transparent;
  padding-bottom: 0.8rem;
}
.tab { scroll-snap-align: start; }

/* Mobile: hide scrollbar completely */
@media (hover: none) and (pointer: coarse) {
  .tabs {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
}

/* Desktop: show thin scrollbar */
@media (hover: hover) and (pointer: fine) {
  .tabs::-webkit-scrollbar {
    height: 4px;
  }
  .tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  .tabs::-webkit-scrollbar-thumb {
    background: rgba(245, 196, 0, 0.4);
    border-radius: 4px;
  }
  .tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 196, 0, 0.7);
  }
}

.tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--color-text-dim);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  min-height: 42px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tab.is-active {
  background: var(--color-yellow);
  color: var(--color-on-yellow);
  border-color: var(--color-yellow);
}

/* Modal */
.modal-root[hidden] { display: none; }

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-root .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.modal {
  position: relative;
  width: min(100%, 420px);
  background: #111;
  border-color: rgba(245, 196, 0, 0.22);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transform: scale(0.96) translateY(12px);
  animation: modalIn 0.28s var(--ease) forwards;
}

.modal h2 {
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
}

.order-choice {
  width: 100%;
  margin-top: 0.7rem;
  justify-content: space-between;
}

.modal-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Mobile footer - side by side */
@media (max-width: 639px) {
  .site-footer {
    padding: 1.5rem 0 1rem;
  }
  .footer-lean {
    text-align: center;
  }
  .footer-lean small {
    font-size: 0.8rem;
  }
  .footer-nav-group,
  .footer-contact {
    display: none;
  }
}

/* Desktop footer - centered & lean */
.footer-lean {
  text-align: center;
  padding: 1rem 0;
}

.footer-brand .lede {
  margin: 0.75rem 0 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.footer-brand .btn {
  width: 100%;
}

.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: normal;
}

.footer-nav-group nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-group nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-nav-group nav a:hover {
  color: var(--color-primary);
}

.footer-contact p:first-of-type {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-address {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0.5rem 0;
}

.footer-contact small {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-bottom small {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.social-links svg {
  flex-shrink: 0;
}

.sticky-order {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,0.9);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox img { max-height: 88vh; max-width: 100%; }

/* Contact */
.info-card {
  background: var(--color-dark-2);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.story p { color: var(--color-text-dim); font-size: 1.05rem; max-width: 40rem; }

.empty {
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: var(--color-muted);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes modalIn {
  to { transform: scale(1) translateY(0); }
}

@media (min-width: 760px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .cat-row {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
  }
  .grid-cards { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.6rem; }
  .feature { grid-template-columns: 240px 1fr; }
  .feature img { width: 240px; height: 240px; max-width: none; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { align-items: center; }
}

@media (min-width: 760px) {
  .cat-row .cat-card[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-media img { transform: none; }
  .brand-name {
    text-shadow: 0 0 8px var(--color-yellow);
  }
}
