@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #141414;
  --bg-nav: rgba(10, 10, 10, 0.95);
  --fire-yellow: #FFD700;
  --fire-orange: #FF6B00;
  --fire-red: #CC0000;
  --fire-deep: #8B0000;
  --text-white: #FFFFFF;
  --text-light: #E0E0E0;
  --text-muted: #777777;
  --gradient-fire: linear-gradient(135deg, #FFD700, #FF6B00, #CC0000);
  --gradient-fire-subtle: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,107,0,0.15), rgba(204,0,0,0.1));
  --shadow-fire: 0 0 20px rgba(255, 107, 0, 0.3);
  --shadow-fire-strong: 0 0 40px rgba(255, 107, 0, 0.5), 0 0 80px rgba(204, 0, 0, 0.2);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 100%;
  --gutter: clamp(24px, 5vw, 80px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { touch-action: manipulation; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--text-white);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }

.fire-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 100px 0; }
.section--no-top { padding-top: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.36s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 107, 0, 0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--gutter);
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-logo:hover img { filter: brightness(1.1); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  touch-action: manipulation;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 1001;
  touch-action: manipulation;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(204, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 80%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

/* Ember particles */
.embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.embers span {
  position: absolute;
  bottom: -10px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--fire-orange);
  box-shadow: 0 0 calc(var(--size) * 2) var(--fire-orange), 0 0 calc(var(--size) * 4) var(--fire-red);
  opacity: 0;
  animation: emberFloat var(--dur) var(--delay) ease-out infinite;
}
@keyframes emberFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0.3); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 40px 24px;
}

.hero-logo {
  width: 240px;
  height: 240px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.3), 0 0 80px rgba(204, 0, 0, 0.15);
  animation: logoGlow 4s ease-in-out infinite alternate;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 { margin-bottom: 16px; }

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--border-radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  min-height: 48px;
}

.btn-fire {
  background: var(--gradient-fire);
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.35);
}
.btn-fire::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-fire:hover {
  box-shadow: 0 8px 36px rgba(255, 107, 0, 0.5);
  transform: translateY(-3px);
}
.btn-fire:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 107, 0, 0.4);
}
.btn-outline:hover {
  border-color: var(--fire-orange);
  background: rgba(255, 107, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  min-height: 44px;
}

/* ===== SECTION TITLES & DIVIDERS ===== */
.section-title {
  text-align: center;
  margin-bottom: 20px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.fire-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
  margin: 0 auto 48px;
  border-radius: 2px;
  position: relative;
}
.fire-divider::after {
  content: '';
  position: absolute;
  inset: -4px -8px;
  background: var(--gradient-fire);
  border-radius: 4px;
  filter: blur(8px);
  opacity: 0.4;
}

/* ===== FEATURED CARDS ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(255,107,0,0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-fire);
}
.card:hover::before { opacity: 1; }

.card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-image img { transform: scale(1.08); }

.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.feature-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.feature-item:hover { background: rgba(255, 107, 0, 0.03); }

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-fire-subtle);
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.3);
}
.feature-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* ===== DELIVERY / ORDER SECTION ===== */
.delivery-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.delivery-badge {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  cursor: pointer;
  touch-action: manipulation;
  min-height: 48px;
}
.delivery-badge .badge-icon { font-size: 1.4rem; }
.delivery-badge:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-fire);
  color: var(--text-white);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 150px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(204, 0, 0, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
}
.page-header > * { position: relative; z-index: 1; }
.page-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient-fire);
  margin: 24px auto 0;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ===== MENU PAGE ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(255,107,0,0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-fire);
}
.menu-card:hover::before { opacity: 1; }

.menu-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-image img { transform: scale(1.06); }

.menu-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 16px;
}
.menu-card-body h3 { font-size: 1.3rem; }

.price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.menu-card-body .description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Ingredient tags */
.ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.ingredients span {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Combo banner */
.combo-banner {
  background: var(--bg-card);
  border: 2px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.combo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
}
.combo-banner > * { position: relative; }
.combo-banner h3 { font-size: 1.6rem; margin-bottom: 10px; }
.combo-banner p { color: var(--text-muted); font-size: 1.1rem; }
.combo-banner .combo-price {
  color: var(--text-white);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 24px;
}
.about-highlight {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  margin: 32px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
}
.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,107,0,0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.info-card:hover::before { opacity: 1; }

.info-card .icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.info-card h3 { font-size: 0.95rem; color: var(--fire-orange); margin-bottom: 10px; letter-spacing: 0.1em; }
.info-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.5; }
.info-card a { color: var(--fire-orange); }
.info-card a:hover { color: var(--fire-yellow); }

/* Map container */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.15);
}
.map-container iframe {
  display: block;
  filter: grayscale(0.7) brightness(0.65) contrast(1.1);
  transition: filter 0.4s ease;
}
.map-container:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 28px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img { height: 44px; border-radius: 6px; }

.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.12em; color: var(--fire-orange); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--text-white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-social a:hover { color: var(--fire-orange); }

/* ===== FLOATING CTA (MOBILE) ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-cta.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.floating-cta .btn {
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.5);
  padding: 14px 28px;
  font-size: 0.9rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  color: var(--fire-orange);
  font-size: 1.2rem;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}
@keyframes logoGlow {
  0% { box-shadow: 0 0 30px rgba(255, 107, 0, 0.25), 0 0 60px rgba(204, 0, 0, 0.1); }
  100% { box-shadow: 0 0 50px rgba(255, 107, 0, 0.45), 0 0 100px rgba(204, 0, 0, 0.2); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.8s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.3s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.5s; opacity: 0; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.1rem; padding: 8px 0; }

  .hero-logo { width: 170px; height: 170px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }

  .section { padding: 70px 0; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-grid, .menu-grid { grid-template-columns: 1fr; }
  .card-image { height: 240px; }
  .menu-card-image { height: 260px; }
  .combo-banner { padding: 28px 20px; }
  .combo-banner h3 { font-size: 1.3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .back-to-top { display: none; }

  .map-container iframe { height: 280px; }
}

@media (min-width: 769px) {
  .floating-cta { display: none; }
}

/* ===== RESPONSIVE — SMALL PHONE ===== */
@media (max-width: 480px) {
  .nav-inner { height: 60px; }
  .nav-logo img { height: 38px; }
  .nav-links { top: 60px; }
  .page-header { padding: 120px 0 50px; }
  h1 { font-size: 2.2rem; }
  .section { padding: 56px 0; }
  .hero { padding-top: 60px; }
  .hero-logo { width: 140px; height: 140px; }
  .hero-content { padding: 30px 16px; }
  .delivery-badge { padding: 14px 20px; font-size: 0.9rem; width: 100%; justify-content: center; }
  .cta-banner { padding: 56px 0; }
  .map-container iframe { height: 240px; }
}

/* ===== SHIP 2026-04-24 — TODAY plan additions ===== */

/* A4: Open Now nav badge */
.nav-status {
  font-size: 0.85rem;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  color: #f5f5f5;
  white-space: nowrap;
}
.nav-status .dot { font-size: 0.7rem; margin-right: 4px; }

/* A5: Reassurance block above /order.html iframe */
.order-reassure {
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 20px 24px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  color: #f5f5f5;
}
.order-reassure > div { display: flex; align-items: center; }
.order-reassure span.icn {
  margin-right: 8px;
  font-size: 1.1rem;
}
.order-reassure a {
  color: #FF6B00;
  font-weight: 600;
  text-decoration: none;
}

/* B3: order.html iframe fallback */
.order-fallback {
  max-width: 900px;
  margin: 24px auto 64px;
  padding: 16px;
  text-align: center;
  color: #a3a3a3;
  font-size: 0.9rem;
}
.order-fallback a {
  color: #FF6B00;
  font-weight: 600;
  text-decoration: none;
}

/* A3: hide bottom desktop pill (mobile only) */
@media (min-width: 769px) {
  #sw-order-bottom { display: none !important; }
}

/* B2: hide broken footer social until Tony provides URLs */
.footer-social { display: none; }
