/* ============================================
   RUTA 66 - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:wght@300;400;700;900&family=Special+Elite&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red:      #C41E3A;
  --amber:    #F4A300;
  --brown:    #2C1810;
  --green:    #228B22;
  --gold:     #FFD700;
  --cream:    #FDF6E3;
  --dark:     #1a0e08;
  --light-brown: #8B6355;
  --shadow:   rgba(0,0,0,0.35);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Lato', sans-serif;
  --font-vintage: 'Special Elite', cursive;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scroll Progress Bar ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--amber) var(--pct, 0%), #1a0e08 var(--pct, 0%));
  z-index: 9999;
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(244,163,0,0.15);
  border: 1px solid rgba(244,163,0,0.4);
  color: var(--amber);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 100;
  transition: all 0.3s;
  display: none;
}
.back-to-top.visible { display: flex; align-items: center; justify-content: center; }
.back-to-top:hover { background: var(--amber); color: var(--dark); transform: translateY(-3px); }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(28, 14, 8, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

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

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--amber);
  text-shadow: 0 0 10px rgba(244,163,0,0.5);
  line-height: 1;
}

.nav-logo .logo-sub {
  font-family: var(--font-vintage);
  font-size: 0.65rem;
  color: var(--cream);
  opacity: 0.8;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

.nav-logo .logo-shield {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red) 0%, #8B0000 100%);
  border: 2px solid var(--amber);
  border-radius: 6px 6px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  box-shadow: 0 0 12px rgba(196,30,58,0.5);
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.3rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px;
  border: 1px solid rgba(244,163,0,0.4);
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: #a01530 !important;
  box-shadow: 0 0 15px rgba(196,30,58,0.6) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(28,14,8,0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 999;
  border-bottom: 1px solid rgba(244,163,0,0.2);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--amber); }

/* ---- Hero Banner ---- */
#hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  user-select: none;
}

/* Progress bar */
.banner-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 20;
}
.banner-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--gold));
  box-shadow: 0 0 8px rgba(244,163,0,0.8);
}

/* Slide counter */
.banner-counter {
  position: absolute;
  top: 90px; right: 28px;
  font-family: var(--font-vintage);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(253,246,227,0.5);
  z-index: 15;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.85s ease;
  z-index: 1;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* Directional entrance */
.banner-slide.enter-right  { animation: slideFromRight 0.85s ease forwards; }
.banner-slide.enter-left   { animation: slideFromLeft  0.85s ease forwards; }
.banner-slide.exit-left    { animation: exitToLeft     0.85s ease forwards; }
.banner-slide.exit-right   { animation: exitToRight    0.85s ease forwards; }

/* ── Banner content reveal animation ── */
.banner-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
  width: 100%;
}

.banner-content .banner-eyebrow,
.banner-content .banner-title,
.banner-content .banner-subtitle,
.banner-content .banner-badges,
.banner-content .banner-buttons {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.banner-content.content-visible .banner-eyebrow  { opacity: 1; transform: none; transition-delay: 0.05s; }
.banner-content.content-visible .banner-title    { opacity: 1; transform: none; transition-delay: 0.15s; }
.banner-content.content-visible .banner-subtitle { opacity: 1; transform: none; transition-delay: 0.28s; }
.banner-content.content-visible .banner-badges   { opacity: 1; transform: none; transition-delay: 0.38s; }
.banner-content.content-visible .banner-buttons  { opacity: 1; transform: none; transition-delay: 0.48s; }

/* ── Floating decorative elements ── */
.slide-deco {
  position: absolute;
  font-size: clamp(2rem, 4vw, 4rem);
  opacity: 0.1;
  pointer-events: none;
  animation: floatBeer 6s ease-in-out infinite;
}
.slide-deco--tl { top: 10%; left: 3%;  animation-duration: 5s; }
.slide-deco--bl { bottom: 18%; left: 5%; animation-duration: 7s; animation-direction: reverse; }
.slide-deco--tr { top: 20%; right: 5%; animation-duration: 6s; animation-delay: 1s; }
.slide-deco--br { bottom: 20%; right: 5%; animation-duration: 8s; animation-delay: 0.5s; }

/* ── Flag strip (slide 1) ── */
.flag-strip {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  font-size: 1.8rem;
  z-index: 6;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  animation: fadeIn 1s ease 0.8s both;
}

/* ── Banner badges ── */
.banner-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.banner-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(253,246,227,0.85);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

/* ── Home background image deco (slide 1) ── */
.home-bg-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.home-bg-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}

/* ── Score bug (slide 2) ── */
.score-bug {
  position: absolute;
  top: 90px; left: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  backdrop-filter: blur(8px);
  z-index: 15;
  animation: fadeIn 0.6s ease 0.5s both;
}
.score-live {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff4444;
  text-transform: uppercase;
  animation: blink 1.2s ease-in-out infinite;
}
.score-teams {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  color: white;
}
.score-teams strong { color: var(--amber); }

/* ── Pitch lines (slide 2) ── */
.pitch-circle {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.pitch-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; width: 1px;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ── Promo tag (slide 3) ── */
.promo-tag {
  position: absolute;
  top: 90px; right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--red), #8B0000);
  border: 2px solid var(--amber);
  border-radius: 50%;
  width: clamp(80px, 10vw, 110px);
  height: clamp(80px, 10vw, 110px);
  justify-content: center;
  box-shadow: 0 0 30px rgba(196,30,58,0.5), 0 0 0 4px rgba(244,163,0,0.2);
  z-index: 15;
  animation: heartbeat 2s ease-in-out infinite;
}
.promo-tag-text {
  font-family: var(--font-vintage);
  font-size: clamp(0.5rem, 1.2vw, 0.65rem);
  letter-spacing: 2px;
  color: rgba(253,246,227,0.8);
  text-transform: uppercase;
}
.promo-tag-price {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.promo-tag-sub {
  font-size: clamp(0.4rem, 1vw, 0.55rem);
  color: rgba(253,246,227,0.7);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ── Gold text (slide 3 title) ── */
.gold-text {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,215,0,0.6), 3px 3px 0 #6B4C00;
}

/* ── Dot labels ── */
.dot-label {
  display: none;
}

/* Slide 1 - Vintage */
.slide-vintage {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(244,163,0,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(44,24,16,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #1a0802 0%, #3d1a0a 30%, #5c2a10 50%, #2C1810 100%);
}

/* Decorative Road stripes */
.slide-vintage::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 60px,
      rgba(244,163,0,0.15) 60px, rgba(244,163,0,0.15) 120px
    ),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.slide-vintage::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,165,0,0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(196,30,58,0.1) 0%, transparent 25%);
  pointer-events: none;
}

/* Slide 2 - Football */
.slide-football {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(0,100,0,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0,100,0,0.3) 0%, transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a1628 30%, #0d2040 60%, #050505 100%);
}

.slide-football::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent 0px, transparent 40px,
      rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
    ),
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 40px,
      rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
    );
}

/* Slide 3 - Beer */
.slide-beer {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(244,163,0,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 50%, rgba(255,180,0,0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 50%, rgba(196,30,58,0.2) 0%, transparent 40%),
    linear-gradient(160deg, #1a0e00 0%, #3d2200 40%, #2a1500 70%, #0d0800 100%);
}

.slide-beer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(244,163,0,0.06), transparent);
}

/* Banner Content – styles moved above */

.banner-eyebrow {
  font-family: var(--font-vintage);
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--amber);
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.8rem;
  display: block;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 4px;
  color: var(--cream);
  text-shadow: 3px 3px 0 var(--brown), 6px 6px 20px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}

.banner-title .highlight {
  color: var(--amber);
  text-shadow: 0 0 30px rgba(244,163,0,0.7), 3px 3px 0 #8B4500, 6px 6px 20px rgba(0,0,0,0.8);
}

.banner-title .neon-text,
.banner-title .fire-text {
  color: #FF6A00;
  text-shadow:
    2px 2px 0 #7a2e00,
    4px 4px 0 rgba(0,0,0,0.45),
    0 0 50px rgba(255,100,0,0.28),
    0 0 100px rgba(255,60,0,0.12);
  animation: none;
}

.banner-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(253,246,227,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), #8B0000);
  color: white;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(196,30,58,0.4);
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196,30,58,0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--amber);
  padding: 0.83rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--amber);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--amber);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244,163,0,0.4);
}

/* Route 66 Sign */
.route-sign {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 15vw, 180px);
  aspect-ratio: 1;
  z-index: 4;
}

.route-sign-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px #1a1a1a, 0 0 0 12px white, 0 0 30px rgba(0,0,0,0.8);
  animation: signSwing 6s ease-in-out infinite;
}

.route-sign-inner .rs-historic {
  font-family: var(--font-vintage);
  font-size: clamp(0.5rem, 1.5vw, 0.8rem);
  color: white;
  letter-spacing: 3px;
}

.route-sign-inner .rs-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: white;
  line-height: 0.9;
}

.route-sign-inner .rs-us {
  font-family: var(--font-vintage);
  font-size: clamp(0.5rem, 1.5vw, 0.85rem);
  color: white;
  letter-spacing: 3px;
}

/* Football slide extras */
.stadium-lights {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  pointer-events: none;
  overflow: hidden;
}

.light-beam {
  position: absolute;
  top: -20px;
  width: 3px;
  height: 70vh;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  transform-origin: top center;
  animation: lightSweep 3s ease-in-out infinite;
}
.light-beam:nth-child(1) { left: 15%; transform: rotate(15deg); animation-delay: 0s; }
.light-beam:nth-child(2) { left: 30%; transform: rotate(8deg); animation-delay: 0.3s; }
.light-beam:nth-child(3) { right: 15%; transform: rotate(-15deg); animation-delay: 0.6s; }
.light-beam:nth-child(4) { right: 30%; transform: rotate(-8deg); animation-delay: 0.9s; }

.crowd-dots {
  position: absolute;
  bottom: 10%;
  left: 0; right: 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  opacity: 0.4;
}

.crowd-dot {
  width: 4px;
  height: 12px;
  background: var(--amber);
  border-radius: 50% 50% 0 0;
  animation: crowdWave 1.5s ease-in-out infinite;
}

/* Beer foam */
.beer-mug-deco {
  position: absolute;
  right: 8%;
  bottom: 15%;
  font-size: clamp(4rem, 10vw, 9rem);
  opacity: 0.15;
  filter: sepia(1) saturate(3);
  animation: floatBeer 4s ease-in-out infinite;
  pointer-events: none;
  line-height: 1;
}

.foam-bubbles {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(244,163,0,0.3));
  animation: bubbleRise linear infinite;
}

/* Banner Navigation */
.banner-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}

.banner-dot {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: rgba(253,246,227,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  padding: 0;
}
.banner-dot:hover { background: rgba(244,163,0,0.5); }
.banner-dot.active {
  width: 56px;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(244,163,0,0.7);
}
/* Hidden label for accessibility, shown on hover via title attr */
.dot-label { display: none; }

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(28,14,8,0.45);
  border: 1px solid rgba(244,163,0,0.35);
  color: var(--amber);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  font-size: 2rem;
  line-height: 1;
}
.banner-arrow:hover {
  background: rgba(244,163,0,0.25);
  border-color: var(--amber);
  box-shadow: 0 0 20px rgba(244,163,0,0.35), inset 0 0 15px rgba(244,163,0,0.1);
  transform: translateY(-50%) scale(1.08);
}
.banner-arrow.left  { left: 22px; }
.banner-arrow.right { right: 22px; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  opacity: 0.6;
}
.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-family: var(--font-body);
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--amber);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--amber);
  border-radius: 3px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

/* ---- Section Styles ---- */
section { position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-eyebrow {
  font-family: var(--font-vintage);
  font-size: 0.88rem;
  letter-spacing: 5px;
  color: var(--amber);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 1.1rem;
  border: 1px solid rgba(244,163,0,0.28);
  border-radius: 30px;
  background: rgba(244,163,0,0.05);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.section-title .accent { color: var(--amber); }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}
.section-divider::after {
  background: linear-gradient(90deg, var(--amber), transparent);
}
.divider-icon {
  color: var(--red);
  font-size: 1.2rem;
}

/* ---- Parallax Why Section ---- */
#why-us {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0d0600 0%, #1a0e08 50%, #0d0600 100%);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(196,30,58,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(244,163,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 40px,
      rgba(244,163,0,0.02) 40px,
      rgba(244,163,0,0.02) 41px
    );
  transform: translateY(0);
  will-change: transform;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: linear-gradient(145deg, rgba(44,24,16,0.85), rgba(20,10,5,0.95));
  border: 1px solid rgba(244,163,0,0.15);
  border-radius: 12px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,163,0,0.07), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover::before { transform: scaleX(1); }
.why-card:hover::after  { opacity: 1; }
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,163,0,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(244,163,0,0.1);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(244,163,0,0.4));
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-5deg); }

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 0.7rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(253,246,227,0.75);
  line-height: 1.6;
}

/* ---- Menu Preview ---- */
#menu-preview {
  padding: 6rem 2rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#menu-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(196,30,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(244,163,0,0.06) 0%, transparent 50%);
}

#menu-preview .section-title { color: var(--brown); }
#menu-preview .section-eyebrow { color: var(--red); }

.menu-categories {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-tab {
  background: none;
  border: 2px solid rgba(44,24,16,0.25);
  color: var(--brown);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.menu-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  animation: fadeInUp 0.4s ease;
}
.menu-grid.active { display: grid; }

.menu-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,24,16,0.1);
  transition: var(--transition);
  border: 1px solid rgba(44,24,16,0.08);
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44,24,16,0.2);
}

.menu-item-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.menu-item-body {
  padding: 1.2rem 1.5rem;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--light-brown);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: 1px;
}

.menu-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

/* ---- Gallery Slider ---- */
#gallery {
  padding: 6rem 2rem;
  background: var(--dark);
  overflow: hidden;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide-item {
  min-width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.slide-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.6s ease;
}

.slide-item:hover .slide-photo { transform: scale(1.05); }

.slide-caption {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  width: 100%;
}

.slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 0.3rem;
}
.slide-caption p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  background: rgba(244,163,0,0.15);
  border: 2px solid rgba(244,163,0,0.4);
  color: var(--amber);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--amber);
  color: var(--dark);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(244,163,0,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(244,163,0,0.5);
}
.slider-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}

.thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.thumb {
  width: 70px; height: 52px;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.thumb.active { border-color: var(--amber); }
.thumb:hover { border-color: rgba(244,163,0,0.6); transform: translateY(-2px); }

/* ---- Contact Section ---- */
#contact {
  padding: 6rem 2rem;
  background: linear-gradient(160deg, #0d0600 0%, #1a0e08 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,163,0,0.06), transparent 60%);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  background: rgba(44,24,16,0.4);
  border: 1px solid rgba(244,163,0,0.15);
  border-radius: 6px;
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(244,163,0,0.4);
  background: rgba(44,24,16,0.6);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(196,30,58,0.2);
  border: 1px solid rgba(196,30,58,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 0.3rem;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: rgba(253,246,227,0.8);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--amber); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid rgba(244,163,0,0.3);
  background: rgba(44,24,16,0.5);
  color: var(--cream);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; }
.social-btn.facebook:hover  { background: #1877F2; border-color: #1877F2; }
.social-btn.whatsapp:hover  { background: #25D366; border-color: #25D366; }

.map-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a2030, #0d1520);
  border: 1px solid rgba(244,163,0,0.2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1.5rem;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

/* Contact Form */
.contact-form {
  background: rgba(44,24,16,0.4);
  border: 1px solid rgba(244,163,0,0.15);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253,246,227,0.7);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(28,14,8,0.6);
  border: 1px solid rgba(244,163,0,0.2);
  border-radius: 4px;
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(244,163,0,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--brown);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--red), #8B0000);
  color: white;
  padding: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,30,58,0.5);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ---- Footer ---- */
footer {
  background: #0a0500;
  border-top: 1px solid rgba(244,163,0,0.15);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(253,246,227,0.6);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-flags {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  letter-spacing: 4px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(244,163,0,0.2);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(253,246,227,0.6);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(244,163,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253,246,227,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(253,246,227,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--amber); }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Legal Pages ---- */
.legal-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 6rem;
  background: var(--dark);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244,163,0,0.2);
}

.legal-container h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 3px;
  color: var(--amber);
}

.legal-container .last-updated {
  font-size: 0.85rem;
  color: rgba(253,246,227,0.5);
  margin-top: 0.5rem;
  display: block;
}

.legal-container h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--cream);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

.legal-container h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amber);
  margin: 1.5rem 0 0.5rem;
}

.legal-container p {
  color: rgba(253,246,227,0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-container ul, .legal-container ol {
  margin: 0.8rem 0 1rem 1.5rem;
  color: rgba(253,246,227,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-container ul { list-style: disc; }
.legal-container ol { list-style: decimal; }

.legal-container a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: rgba(244,163,0,0.4);
}
.legal-container a:hover { color: var(--gold); }

.legal-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}
.legal-container th {
  background: rgba(196,30,58,0.2);
  color: var(--amber);
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(244,163,0,0.15);
}
.legal-container td {
  padding: 0.7rem 1rem;
  color: rgba(253,246,227,0.7);
  border: 1px solid rgba(244,163,0,0.1);
  vertical-align: top;
}
.legal-container tr:nth-child(even) td {
  background: rgba(44,24,16,0.3);
}

.info-box {
  background: rgba(34,139,34,0.1);
  border: 1px solid rgba(34,139,34,0.4);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { color: rgba(253,246,227,0.85); margin: 0; }

.warning-box {
  background: rgba(196,30,58,0.1);
  border: 1px solid rgba(196,30,58,0.4);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

/* ---- Section dividers ---- */
.section-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ---- Menu section subtle improvement ---- */
#menu-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
}

/* ---- Gallery section header accent ---- */
#gallery .section-title .accent {
  position: relative;
}
#gallery .section-title .accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
}

/* ---- Contact section subtle pattern ---- */
#contact::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(196,30,58,0.06), transparent 70%);
  pointer-events: none;
}

/* ---- Footer brand logo glow ---- */
.footer-brand .logo-text {
  text-shadow: 0 0 20px rgba(244,163,0,0.3);
  transition: text-shadow var(--transition);
}
.footer-brand:hover .logo-text {
  text-shadow: 0 0 35px rgba(244,163,0,0.6);
}

/* ---- Nav active link ---- */
.nav-links a.active { color: var(--amber); }
.nav-links a.active::after { width: 100%; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .route-sign { display: none; }
  .banner-arrow { display: none; }
  .score-bug, .promo-tag, .banner-counter { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .slide-item { height: 340px; }
  .banner-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .flag-strip { bottom: 80px; font-size: 1.4rem; }
  .banner-badges { display: none; }
}

@media (max-width: 480px) {
  .why-cards  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .banner-buttons { flex-direction: column; align-items: center; }
  .slide-item { height: 280px; }
  .menu-grid  { grid-template-columns: 1fr; }
  .flag-strip { display: none; }
  .scroll-hint { display: none; }
}
