/* ======================================================
   Professor Za's — Pizza & Ink
   Dark tattoo-parlor aesthetic with green, red, yellow accents
   ====================================================== */

/* ---------- Custom Fonts ---------- */
@font-face {
  font-family: 'Saint Carell';
  src: url('./saint-carell-clean-personal/SaintCarellCleanPersonalRegular-Yz1no.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS Variables ---------- */
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --white: #f0ece4;
  --white-dim: #b5b0a6;
  --red: #e63946;
  --red-glow: #ff2d2d;
  --green: #00ff41;
  --green-dim: #00cc33;
  --yellow: #ffd700;
  --yellow-dim: #ccac00;
  --font-display: 'Saint Carell', serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--black);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}

/* ---------- Accent helpers ---------- */
.accent-red { color: var(--red); }
.accent-green { color: var(--green); }
.accent-yellow { color: var(--yellow); }

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FLOATING CARDS — parallax image layer
   ============================================================ */
.floating-cards {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-card {
  position: absolute;
  width: clamp(60px, 10vw, 130px);
  opacity: 0;
  transition: opacity 0.8s ease;
  filter: brightness(0.55) saturate(0.7);
  border-radius: 8px;
  will-change: transform;
}

.float-card.visible {
  opacity: 0.25;
}

.float-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s, backdrop-filter 0.2s, border-color 0.2s;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  filter: invert(1);
  transition: filter 0.3s;
}

.nav-neon {
  font-family: 'Lobster', cursive;
  font-size: 1.4rem;
  white-space: nowrap;
  user-select: none;
}

.nav-neon .neon-letter {
  display: inline-block;
  color: #00ff41;
  text-shadow:
    0 0 4px rgba(0, 255, 65, 0.9),
    0 0 12px rgba(0, 255, 65, 0.6),
    0 0 28px rgba(0, 255, 65, 0.3);
}

.nav-neon .neon-letter.flickering {
  animation: nav-letter-flicker 0.55s ease-out forwards;
}

.nav-neon .neon-letter.space {
  display: inline;
}

@keyframes nav-letter-flicker {
  0%   { opacity: 1; text-shadow: 0 0 4px rgba(0,255,65,0.9), 0 0 12px rgba(0,255,65,0.6), 0 0 28px rgba(0,255,65,0.3); }
  12%  { opacity: 0.08; text-shadow: none; }
  24%  { opacity: 1; text-shadow: 0 0 4px rgba(0,255,65,0.9), 0 0 12px rgba(0,255,65,0.6), 0 0 28px rgba(0,255,65,0.3); }
  42%  { opacity: 0.08; text-shadow: none; }
  58%  { opacity: 0.7; text-shadow: 0 0 4px rgba(0,255,65,0.5); }
  100% { opacity: 1; text-shadow: 0 0 4px rgba(0,255,65,0.9), 0 0 12px rgba(0,255,65,0.6), 0 0 28px rgba(0,255,65,0.3); }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  color: var(--white) !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  background: var(--red-glow) !important;
  transform: translateY(-2px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  /* Keep the toggle above the slide-in panel so it can always be tapped to close */
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Morph the hamburger into an X while the menu is open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: transparent;
}

.hero-video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 255, 65, 0.08) 0%, transparent 50%),
    rgba(10, 10, 10, 0.90);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 860px;
}

.hero-logo {
  width: clamp(70px, 10vw, 120px);
  margin: 0 auto 1.5rem;
  filter: invert(1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-title-wrap {
  position: relative;
  width: clamp(260px, 50vw, 620px);
  margin: 0 auto 0.5rem;
}

.hero-title-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 2px 24px rgba(255, 215, 0, 0.18));
}

.hero-title-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1) drop-shadow(0 2px 24px rgba(255, 215, 0, 0.18));
  clip-path: inset(0 0 38% 0);
}

.hero-tagline {
  font-family: 'Lobster', cursive;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-divider .line {
  width: 60px;
  height: 1px;
  background: var(--red);
}

.hero-divider .diamond {
  color: var(--red);
  font-size: 0.8rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--white-dim);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 0.2rem;
  margin-top: 0;
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.hero-badge-dot {
  color: var(--red);
  font-size: 0.5rem;
}

.hero-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-social a {
  color: var(--white-dim);
  transition: color 0.25s, transform 0.25s;
}

.hero-social a:hover {
  color: var(--red);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45), 0 0 0 1px rgba(230,57,70,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-dim);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 65, 0.25), 0 0 0 1px rgba(0,255,65,0.15);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  pointer-events: none;
  animation: pulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(6px); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--white-dim);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--black);
  border-top: none;
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text .lead {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--white-dim);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-images {
  position: relative;
  height: 400px;
}

.about-img {
  position: absolute;
  border-radius: 8px;
  transition: transform 0.4s;
}

.about-img:not(.pizza-flip):hover {
  transform: scale(1.05) rotate(-1deg);
}

/* ---- Pizza flip card ---- */
.pizza-flip {
  cursor: pointer;
  perspective: 500px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
}

.pizza-flip:not(.flipped):hover {
  transform: scale(1.07) rotate(1.5deg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 18px rgba(0, 255, 65, 0.25);
}

.pizza-flip:not(.flipped):hover .pizza-flip-front img {
  filter: brightness(1.1) saturate(1.2);
}

.pizza-flip.flipped {
  transform: scale(2.2) translateZ(80px) !important;
  z-index: 50 !important;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s !important;
}

.pizza-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pizza-flip.flipped .pizza-flip-inner {
  transform: rotateY(180deg);
}

.pizza-flip-front,
.pizza-flip-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: 100%;
}

.pizza-flip-front img,
.pizza-flip-back img,
.pizza-flip-back video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.pizza-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  background: var(--green);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pizza-flip-back video {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 6px;
}

.about-img-1 {
  width: 55%;
  top: 0;
  left: 0;
  filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.2));
}

.about-img-2 {
  width: 28%;
  bottom: 0;
  left: -8%;
  right: auto;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.15));
}

.about-img-lisa {
  width: 65%;
  top: 0;
  left: 7%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.25));
}

.about-img-lisa-2 {
  width: 30%;
  bottom: -120px;
  left: 55%;
  right: auto;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
}

.about-text .lead--red {
  color: var(--yellow);
}

.legend-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 5rem 0;
}

.legend-divider .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.legend-divider .diamond {
  color: var(--red);
  font-size: 1rem;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--black);
  border-top: none;
}

.menu-title-wrap {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

@keyframes neon-vegan-flicker {
  0%   { opacity: 0; text-shadow: none; }
  8%   { opacity: 1; text-shadow: 0 0 8px #00ff41, 0 0 20px #00ff41; }
  16%  { opacity: 0; text-shadow: none; }
  26%  { opacity: 1; text-shadow: 0 0 8px #00ff41, 0 0 20px #00ff41; }
  34%  { opacity: 0; text-shadow: none; }
  50%  { opacity: 1; text-shadow: 0 0 10px #00ff41, 0 0 30px #00ff41; }
  62%  { opacity: 0.6; text-shadow: 0 0 5px #00ff41; }
  78%  { opacity: 1; text-shadow: 0 0 10px #00ff41, 0 0 30px #00ff41, 0 0 60px rgba(0,255,65,0.4); }
  100% { opacity: 1; text-shadow: 0 0 10px #00ff41, 0 0 30px #00ff41, 0 0 80px rgba(0,255,65,0.5), 0 0 120px rgba(0,255,65,0.2); }
}

@keyframes neon-vegan-buzz {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px #00ff41, 0 0 30px #00ff41, 0 0 80px rgba(0,255,65,0.5), 0 0 120px rgba(0,255,65,0.2); }
  50%       { opacity: 0.88; text-shadow: 0 0 7px #00ff41, 0 0 20px #00ff41, 0 0 50px rgba(0,255,65,0.35); }
}

.menu-vegan-overlay {
  position: absolute;
  top: 18%;
  left: 54%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: 'Lobster', cursive;
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  color: #00ff41;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  z-index: 5;
}

.menu-vegan-overlay .neon-letter {
  display: inline-block;
  opacity: 0;
}

.menu-vegan-overlay.visible {
  transform: translate(-50%, -50%) rotate(-8deg);
}

.menu-vegan-overlay.visible .neon-letter {
  animation: neon-vegan-flicker 1s ease-out forwards, neon-vegan-buzz 3.5s ease-in-out infinite;
}

.menu-vegan-overlay.visible .neon-letter:nth-child(1) { animation-delay: 0s,    1s; }
.menu-vegan-overlay.visible .neon-letter:nth-child(2) { animation-delay: 0.3s,  1.3s; }
.menu-vegan-overlay.visible .neon-letter:nth-child(3) { animation-delay: 0.55s, 1.55s; }
.menu-vegan-overlay.visible .neon-letter:nth-child(4) { animation-delay: 0.82s, 1.82s; }
.menu-vegan-overlay.visible .neon-letter:nth-child(5) { animation-delay: 1.1s,  2.1s; }

@keyframes neon-vegan-powerdown {
  0%   { opacity: 1; text-shadow: 0 0 10px #00ff41, 0 0 30px #00ff41, 0 0 80px rgba(0,255,65,0.5); }
  20%  { opacity: 0.15; text-shadow: none; }
  38%  { opacity: 0.8; text-shadow: 0 0 6px #00ff41, 0 0 14px #00ff41; }
  55%  { opacity: 0.05; text-shadow: none; }
  70%  { opacity: 0.4; text-shadow: 0 0 4px #00ff41; }
  100% { opacity: 0; text-shadow: none; }
}

.menu-vegan-overlay.powering-down .neon-letter {
  animation: neon-vegan-powerdown 0.7s ease-in forwards !important;
}

.menu-vegan-overlay.powering-down .neon-letter:nth-child(5) { animation-delay: 0s !important; }
.menu-vegan-overlay.powering-down .neon-letter:nth-child(4) { animation-delay: 0.1s !important; }
.menu-vegan-overlay.powering-down .neon-letter:nth-child(3) { animation-delay: 0.2s !important; }
.menu-vegan-overlay.powering-down .neon-letter:nth-child(2) { animation-delay: 0.3s !important; }
.menu-vegan-overlay.powering-down .neon-letter:nth-child(1) { animation-delay: 0.42s !important; }

.menu-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.menu-toggle-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 2rem;
  background: transparent;
  color: var(--white-dim);
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.menu-toggle-btn.active {
  background: var(--red);
  color: var(--white);
}

.menu-toggle-btn:not(.active):hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Higher specificity + declared after .menu-grid so it reliably overrides display:grid */
.menu-grid.menu-grid--hidden {
  display: none;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  background: var(--black-card);
  display: block;
}

.menu-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.75) saturate(0.8);
}

.menu-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(1);
}

.menu-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 2;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* Menu cards as links */
a.menu-card {
  color: var(--white);
  text-decoration: none;
}

/* Back link on sub-pages */
.back-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  transition: color 0.25s;
}

.back-link:hover {
  color: var(--red);
}

.menu-page {
  min-height: 70vh;
}

.menu-desc {
  color: var(--white-dim);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

/* ============================================================
   SPECIALTY ZAAAS (Pizza menu page)
   ============================================================ */
.za-intro {
  margin: -1rem 0 3rem;
}

.style-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 1.4rem;
}

.style-legend-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
}

.style-legend-item b {
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--white);
}

.style-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  flex-shrink: 0;
}
.style-icon.round { border-radius: 50%; }
.style-icon.detroit { border-radius: 3px; border-color: var(--red); }

.za-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.za-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.za-card:hover {
  border-color: rgba(230, 57, 70, 0.5);
  transform: translateY(-3px);
}

.za-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

.za-desc {
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  flex-grow: 1;
}

.za-note {
  display: inline-block;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: var(--red);
  margin: -0.5rem 0 1.1rem;
}

.za-prices {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
}

.za-price-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.za-style {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  color: var(--white);
  min-width: 96px;
}

.za-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.za-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--yellow);
}

.za-chip i {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--white-dim);
}

/* ----- Build your own table ----- */
.byo {
  margin-top: 4.5rem;
}

.byo-head {
  margin-bottom: 1.8rem;
}

.byo-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 0 0 0.3rem;
}

.byo-head p {
  color: var(--white-dim);
  font-style: italic;
}

.byo-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.byo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.byo-table th,
.byo-table td {
  padding: 0.85rem 0.9rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.byo-table thead th {
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--white);
  background: var(--black-light);
}

.byo-group {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
}
.byo-group.round { color: var(--green); }
.byo-group.detroit { color: var(--red); }

.byo-group .style-icon { width: 14px; height: 14px; }

.byo-row-label {
  text-align: left;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--white);
  font-size: 1.15rem;
  white-space: nowrap;
}

.byo-row-label small {
  display: block;
  font-family: var(--font-body);
  letter-spacing: 0;
  color: var(--white-dim);
  font-size: 0.78rem;
  font-weight: 400;
  max-width: 340px;
  white-space: normal;
  margin-top: 0.25rem;
}

.byo-table tbody td {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.byo-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.byo-foot {
  color: var(--white-dim);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   SIMPLE ITEM CARDS + NOTES (chicken, etc.)
   ============================================================ */
.menu-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: -1rem 0 2.5rem;
}

.menu-note {
  flex: 1 1 280px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
}

.menu-note h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--green);
  margin: 0 0 0.4rem;
}

.menu-note p {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.menu-note .note-price {
  color: var(--yellow);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.item-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
}

.item-card:hover {
  border-color: rgba(230, 57, 70, 0.5);
  transform: translateY(-3px);
}

.item-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.item-card-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}

.item-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
  white-space: nowrap;
}

.item-desc {
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.item-desc .tagline {
  display: block;
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.3rem;
}

.item-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ----- Dipping sauces ----- */
.sauces {
  margin-top: 4.5rem;
}

.sauces-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 0 0 0.3rem;
}

.sauces-head p {
  color: var(--white-dim);
  font-style: italic;
  margin: 0 0 1.3rem;
}

.sauce-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sauce-size {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--white);
}

.sauce-size b {
  color: var(--yellow);
  font-weight: 400;
}

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
  margin-top: 2rem;
}

.sauce-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.85rem;
}

.sauce-item.full {
  grid-column: 1 / -1;
}

.sauce-item h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sauce-item p {
  color: var(--white-dim);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0;
}

.sauce-spicy {
  font-size: 0.8rem;
  line-height: 1;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--black);
  border-top: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:nth-child(3n+1):hover { box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 2px var(--red); transform: translateY(-4px); }
.review-card:nth-child(3n+2):hover { box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 2px var(--green); transform: translateY(-4px); }
.review-card:nth-child(3n+3):hover { box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 2px var(--yellow); transform: translateY(-4px); }

.review-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-author {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT / ORDER
   ============================================================ */
.contact {
  background: var(--black);
  border-top: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.contact-block p {
  color: var(--white-dim);
  font-size: 1.05rem;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.4rem;
}

.hours-table td {
  color: var(--white-dim);
  font-size: 1rem;
  padding: 0.3rem 0;
}

.hours-table td:first-child {
  padding-right: 1.5rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.hours-closed {
  color: var(--red) !important;
}

.contact-cta h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  min-width: 160px;
}

.cta-card img {
  width: 100px;
  height: auto;
}

.cta-card span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(0, 255, 65, 0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  text-align: center;
  border-top: none;
  background: var(--black);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  width: 60px;
  margin: 0 auto 1rem;
  filter: invert(1);
  opacity: 0.6;
}

.footer p {
  color: var(--white-dim);
  font-size: 0.9rem;
}

.footer-tagline {
  font-family: 'Lobster', cursive;
  font-size: 1.6rem !important;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--black-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-images {
    height: 280px;
  }

  .about-img-lisa {
    height: 100%;
    width: auto;
  }

  .about-img-lisa-2 {
    bottom: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .za-grid,
  .item-grid,
  .sauce-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .float-card {
    width: clamp(40px, 15vw, 80px);
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-wrap {
    width: clamp(180px, 80vw, 380px);
  }

  .cta-cards {
    flex-direction: column;
    align-items: center;
  }
}
