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

:root {
  --fire: #C8210A;
  --gold: #F5C200;
  --cream: #FFF8ED;
  --dark: #1A0800;
  --brown: #3D1A00;
  --yellow: #F5C200;
  --red: #C8210A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── MAP HERO ── */
.map-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 0;
}
#map {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
/* darken the map tiles slightly for mood */
.leaflet-tile { filter: saturate(0.85) brightness(0.95); }

.map-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5.5rem 2.5rem 1rem;
  pointer-events: none;
}
.map-title-block { pointer-events: none; }
.map-logo-img {
  height: clamp(80px, 15vw, 160px);
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  border-radius: 8px;
}

.map-truck-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
  letter-spacing: 0.03em;
}
.map-truck-name span { color: var(--gold); font-style: italic; }
.map-tagline {
  font-family: 'Permanent Marker', cursive;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-top: 0.4rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Open / Closed sign */
.status-sign {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.sign-board {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.6rem;
  border: 4px solid;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 0 20px rgba(255,255,255,0.05);
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.sign-board.open {
  background: #1a3d1a;
  color: #5dff5d;
  border-color: #5dff5d;
  text-shadow: 0 0 18px #5dff5d, 0 0 40px rgba(93,255,93,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 30px rgba(93,255,93,0.25), inset 0 0 20px rgba(93,255,93,0.08);
}
.sign-board.closed {
  background: #3d1a1a;
  color: #ff5d5d;
  border-color: #ff5d5d;
  text-shadow: 0 0 18px #ff5d5d, 0 0 40px rgba(255,93,93,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 30px rgba(255,93,93,0.25), inset 0 0 20px rgba(255,93,93,0.08);
}
/* Hanging cord */
.sign-cord {
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.4);
  margin-bottom: -2px;
}
.sign-hook {
  width: 18px;
  height: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  border-bottom: none;
  border-radius: 9px 9px 0 0;
}
.sign-hours {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  background: rgba(0,0,0,0.55);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* Scroll cue at bottom */
.map-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}
.map-scroll-cue svg { opacity: 0.8; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%   { transform: translateX(-50%) translateY(6px); }
}

/* Custom taco truck marker */
.truck-marker {
  background: var(--fire);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.truck-marker-inner {
  transform: rotate(45deg);
  font-size: 1.1rem;
  line-height: 1;
}

/* ── EVENTS CAROUSEL (floating overlay at bottom of map) ── */
.events-section {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1.25rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(10,4,0,0.97) 0%, rgba(10,4,0,0.85) 70%, transparent 100%);
}
.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.events-header-left {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.events-header-left .section-label {
  color: var(--gold);
  margin: 0;
  font-size: 0.85rem;
}
.events-header-left .section-title {
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
}
.carousel-nav {
  display: flex; gap: 0.5rem;
}
.carousel-btn {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,184,0,0.45);
  background: rgba(0,0,0,0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1rem;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.carousel-btn:disabled { opacity: 0.25; cursor: default; }

.carousel-track-wrap {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card {
  flex: 0 0 260px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,184,0,0.18);
  border-top: 2px solid var(--fire);
  padding: 0.85rem 1rem;
  position: relative;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.event-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.event-card-inner {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--fire);
  color: #fff;
  padding: 0.2rem 0.5rem 0.25rem;
  min-width: 40px;
  flex-shrink: 0;
}
.event-date-badge .month {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.event-date-badge .day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}
.event-card-body { min-width: 0; }
.event-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-card-time {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.event-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: rgba(255,248,237,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Loading / empty states */
.events-loading, .events-empty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,248,237,0.5);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,184,0,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.carousel-dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.dot-indicator {
  width: 5px; height: 5px;
  background: rgba(255,184,0,0.25);
  border-radius: 50%;
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
}
.dot-indicator.active {
  background: var(--gold);
  width: 16px;
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 3rem;
  background: var(--dark);
  border-bottom: 3px solid var(--fire);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span { color: var(--fire); }
nav > ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
nav ul a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--gold); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--gold);
}
.dropdown-caret {
  font-size: 0.8em;
}
.dropdown-menu {
  list-style: none;
  display: block;
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 250px;
  padding: 0.5rem 0;
  background: rgba(26, 8, 0, 0.98);
  border: 1px solid rgba(245, 194, 0, 0.25);
  border-top: 3px solid var(--fire);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(245, 194, 0, 0.12);
  color: var(--gold);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-order-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire), #e02e10);
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(200,33,10,0.28);
  line-height: 1;
}
.nav-order-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200,33,10,0.34);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,59,31,0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* Diagonal stripe texture */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: repeating-linear-gradient(
-45deg, transparent, transparent 20px,
rgba(255,184,0,0.04) 20px, rgba(255,184,0,0.04) 40px
  );
  pointer-events: none;
}

.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Permanent Marker', cursive;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: 0.02em;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .fire-word { color: var(--fire); display: block; }
.hero-title .gold-word { color: var(--gold); display: block; }
.hero-sub {
  margin-top: 1.5rem;
  color: rgba(255,248,237,0.65);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-cta {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #e02e10; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* Hero illustration */
.hero-art {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  animation: fadeIn 1s 0.4s ease both;
}
.taco-graphic {
  font-size: 14rem;
  line-height: 1;
  filter: drop-shadow(0 0 60px rgba(255,59,31,0.5));
  animation: float 4s ease-in-out infinite;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--fire);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 18s linear infinite;
}
.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  padding: 0 2rem;
}
.marquee-inner span.dot { color: var(--gold); }

/* ── SECTION SHARED ── */
section { padding: 6rem 4rem; }
.section-label {
  font-family: 'Permanent Marker', cursive;
  color: var(--fire);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

/* ── ABOUT ── */
.about {
  background: var(--brown);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .section-title { color: var(--cream); }
.about-body {
  margin-top: 1.5rem;
  color: rgba(255,248,237,0.75);
  line-height: 1.8;
  font-size: 1.05rem;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-box {
  border: 1px solid rgba(255,184,0,0.3);
  padding: 1.25rem;
  position: relative;
}
.stat-box::before {
  content: '';
  position: absolute; top: -3px; left: -3px;
  width: 12px; height: 12px;
  background: var(--gold);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,248,237,0.6); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }

.about-image {
  background: var(--dark);
  border: 3px solid rgba(255,184,0,0.2);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  position: relative;
}
.about-image::after {
  content: 'EST. 2011';
  position: absolute; bottom: 1rem; right: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  border: 1px solid var(--gold);
  padding: 0.2rem 0.5rem;
}

/* ── MENU ── */
.menu { background: var(--cream); }
.menu-header { text-align: center; margin-bottom: 3.5rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-card {
  background: #fff;
  border-bottom: 4px solid var(--fire);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(255,59,31,0.15); }
.menu-card.featured { background: var(--dark); color: var(--cream); border-bottom-color: var(--gold); }
.menu-card-badge {
  position: absolute; top: -10px; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}
.menu-emoji { font-size: 2.8rem; margin-bottom: 0.75rem; display: block; }
.menu-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.menu-card.featured .menu-name { color: var(--gold); }
.menu-desc { font-size: 0.9rem; color: #666; line-height: 1.5; }
.menu-card.featured .menu-desc { color: rgba(255,248,237,0.65); }
.menu-price {
  margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--fire);
}
.menu-card.featured .menu-price { color: var(--gold); }

/* ── LOCATION ── */
.location {
  background: var(--dark);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location .section-title { color: var(--cream); }
.schedule {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,248,237,0.1);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }
.schedule-time { color: var(--gold); font-size: 0.9rem; }
.schedule-closed { color: rgba(255,248,237,0.35); font-size: 0.9rem; }

.location-map {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,248,237,0.1);
  padding: 2rem;
  margin-top: 3rem;
}
.location-map p { color: rgba(255,248,237,0.6); font-size: 0.95rem; margin-top: 0.5rem; }
.map-placeholder {
  margin-top: 1rem;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,184,0,0.3);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,248,237,0.3);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
}

.social-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,184,0,0.4);
  color: var(--gold);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--dark); }

/* ── ORDER CTA ── */
.order-cta {
  background: var(--fire);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.order-cta::before {
  content: '🌮';
  position: absolute; font-size: 20rem; opacity: 0.06;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.order-cta .section-label { color: rgba(255,255,255,0.8); }
.order-cta .section-title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 0.5rem 0 1.5rem;
}
.order-cta .btn-primary {
  background: var(--dark);
  font-size: 1.1rem;
  padding: 1rem 3rem;
}
.order-cta .btn-primary:hover { background: var(--brown); }

/* ── FOOTER ── */
footer {
  background: #0D0500;
  color: rgba(255,248,237,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}
footer span { color: var(--gold); }

/* ── SEO CONTENT ── */
.seo-content {
  background: #fff;
  color: var(--dark);
  max-width: 1100px;
  margin: 0 auto;
}
.seo-content-inner {
  max-width: 960px;
  margin: 0 auto;
}
.seo-content h2,
.seo-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}
.seo-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  color: var(--dark);
}
.seo-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 2rem 0 0.8rem;
  color: var(--fire);
}
.seo-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4b4038;
  margin-bottom: 1rem;
}
.seo-content strong {
  color: var(--dark);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%   { transform: translateY(-20px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav > ul { display: none; }
  .dropdown-menu {
    min-width: 220px;
    left: auto;
    right: 0;
  }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; text-align: center; }
  .hero-sub { margin: 1rem auto 0; }
  .hero-cta { justify-content: center; }
  .hero-art { display: none; }
  .about { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; padding: 0; }
  section { padding: 4rem 1.5rem; }
  .location { grid-template-columns: 1fr; }
  .seo-content { padding: 4rem 1.5rem; }
}