/* ==========================================================================
   Taquería El Pastorcito — Modern Mexican Street Food Design System
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-deep: #0c0a09;
  --bg-surface: #171311;
  --bg-card: rgba(28, 22, 19, 0.78);
  --bg-card-hover: rgba(41, 32, 28, 0.92);
  --bg-glass: rgba(20, 16, 14, 0.75);
  
  --primary: #e63928;
  --primary-glow: rgba(230, 57, 40, 0.4);
  --primary-dark: #b91c1c;
  
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --gold-light: #fbbf24;
  
  --verde: #10b981;
  --verde-glow: rgba(16, 185, 129, 0.3);
  --verde-dark: #047857;
  
  --orange: #f97316;
  --crema: #fdfbf7;
  --text-primary: #fdfbf7;
  --text-secondary: #d6d3d1;
  --text-muted: #a8a29e;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.25);
  --border-primary: rgba(230, 57, 40, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--primary-glow);
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(230, 57, 40, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(245, 158, 11, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #332823;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Papel Picado Decorative Border */
.papel-picado-divider {
  width: 100%;
  height: 16px;
  background-image: repeating-linear-gradient(
    45deg,
    var(--primary) 0,
    var(--primary) 12px,
    var(--gold) 12px,
    var(--gold) 24px,
    var(--verde) 24px,
    var(--verde) 36px,
    var(--bg-deep) 36px,
    var(--bg-deep) 48px
  );
  opacity: 0.85;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.brand-logo:hover .logo-badge {
  transform: rotate(6deg) scale(1.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, var(--crema), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

.brand-logo-img {
  height: 74px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}
.footer-logo-img {
  height: 64px;
}
@media (max-width: 768px) {
  .brand-logo-img { height: 54px; }
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--crema);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Toggle Switch */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  cursor: pointer;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--primary-glow);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--crema);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #d82b1a);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 40, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #1a0f02;
  box-shadow: 0 4px 20px var(--gold-glow);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--crema);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(12, 10, 9, 0.98) 0%, 
    rgba(12, 10, 9, 0.90) 30%, 
    rgba(12, 10, 9, 0.4) 55%, 
    rgba(12, 10, 9, 0) 80%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
  filter: saturate(1.2) contrast(1.05) brightness(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(230, 57, 40, 0.15);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, var(--gold-light), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/* Mexican-flag tricolor word (green · white · red) */
.flag-word {
  background: linear-gradient(
    90deg,
    #006847 0%, #006847 34%,
    #ffffff 34%, #ffffff 66%,
    #ce1126 66%, #ce1126 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Keep the two hero CTAs side-by-side even on small phones */
@media (max-width: 560px) {
  .hero-cta-group {
    flex-wrap: nowrap;
    gap: 0.6rem;
  }
  .hero-cta-group .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.7rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.15;
  }
}

/* Facebook + Instagram buttons: always side-by-side */
.insta-social-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}
.insta-social-btns .btn {
  flex: 1 1 0;
  min-width: 0;
}

/* Live Truck Tracker Hero Banner */
.live-truck-hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.live-truck-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--verde), var(--gold));
}

.live-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--verde);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--verde);
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 18px var(--verde); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.live-badge-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--verde);
  text-transform: uppercase;
}

.live-location-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crema);
}

.live-location-time {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Live Truck Schedule Section (Elevated Tracker & Radar Board)
   ========================================================================== */
.schedule-section {
  background: radial-gradient(circle at 50% 0%, rgba(230, 57, 40, 0.12) 0%, rgba(12, 10, 9, 1) 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.schedule-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.live-dispatcher-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.schedule-week-bar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 2.5rem auto;
  background: rgba(22, 17, 15, 0.85);
  padding: 0.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
}

.day-tab-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.day-tab-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-gold);
}

.day-tab-card.active {
  background: linear-gradient(145deg, rgba(230, 57, 40, 0.25), rgba(245, 158, 11, 0.2));
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.day-tab-code {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--crema);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.day-tab-name {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.day-tab-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.4rem;
  opacity: 0.5;
}

.day-tab-card.active .day-tab-indicator {
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  opacity: 1;
}

.day-tab-card.is-today-pill::after {
  content: 'TODAY';
  position: absolute;
  top: -8px;
  font-size: 0.58rem;
  font-weight: 900;
  background: var(--primary);
  color: #fff;
  padding: 1px 6px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* Featured Stop Spotlight Card */
.featured-stop-showcase {
  background: linear-gradient(135deg, rgba(32, 23, 20, 0.95), rgba(20, 15, 13, 0.95));
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.featured-stop-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--gold), var(--verde));
}

.stop-meta-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stop-tag-chip {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.stop-day-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--crema);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.stop-venue-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.stop-address-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.stop-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--crema);
  margin-bottom: 1.75rem;
}

.stop-action-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stop-visual-panel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.stop-visual-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(1.15) brightness(1.05);
}

.stop-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.95), transparent);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--crema);
  font-weight: 600;
}

/* Full Week Schedule Table View */
.schedule-summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.schedule-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.schedule-mini-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.schedule-mini-card.active-mini {
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.mini-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.mini-day {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--crema);
}

.mini-venue {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.mini-time {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .featured-stop-showcase {
    grid-template-columns: 1fr;
  }
  .schedule-week-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .schedule-week-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Instagram Schedule Sync Widget */
.insta-schedule-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(225, 48, 108, 0.15), rgba(253, 29, 29, 0.15));
  border: 1px solid rgba(225, 48, 108, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insta-text-block {
  max-width: 600px;
}

.insta-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff6b8b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.insta-heading {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   Trompo Spotlight Banner
   ========================================================================== */
.trompo-spotlight {
  background: linear-gradient(135deg, #1c1411 0%, #2e1713 50%, #17110f 100%);
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.trompo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.trompo-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-gold);
}

.trompo-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trompo-image-frame:hover img {
  transform: scale(1.04);
}

.trompo-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trompo-floating-badge .weight {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.trompo-floating-badge .text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.trompo-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trompo-feature-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--crema);
}

.feature-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
  background-color: var(--bg-deep);
}

.menu-categories-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-cat-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-cat-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--crema);
}

.menu-cat-btn.active {
  background: linear-gradient(135deg, var(--primary), #c5291a);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.75rem;
}

.menu-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.menu-card.is-star {
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  background: linear-gradient(145deg, rgba(38, 28, 23, 0.9), rgba(28, 22, 19, 0.8));
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.menu-item-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--crema);
}

.menu-item-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  white-space: nowrap;
}

.menu-item-tagline {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.menu-item-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.menu-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.badge-pill.badge-star {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-pill.badge-diet {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.menu-card-action {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-card-action .detail-link {
  color: var(--gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   Permanent Locations Section
   ========================================================================== */
.locations-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 460px));
  justify-content: center;
  gap: 2rem;
}

.location-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.location-card-header {
  margin-bottom: 1.25rem;
}

.location-type-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(230, 57, 40, 0.15);
  color: var(--primary);
  border: 1px solid var(--border-primary);
  margin-bottom: 0.75rem;
}

.location-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--crema);
  margin-bottom: 0.5rem;
}

.location-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.location-rating-badge {
  background: rgba(245, 158, 11, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.location-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hours-table {
  width: 100%;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.is-today {
  color: var(--gold-light);
  font-weight: 700;
}

.location-contact-info {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Our Story & Heritage Section
   ========================================================================== */
.story-section {
  background-color: var(--bg-deep);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.story-quote-box {
  background: linear-gradient(135deg, rgba(230, 57, 40, 0.12), rgba(245, 158, 11, 0.08));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--crema);
  line-height: 1.6;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-gold);
}

.story-timeline-item {
  position: relative;
}

.story-timeline-item::before {
  content: '';
  position: absolute;
  left: -1.95rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crema);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.story-visual-stack {
  position: relative;
}

.story-main-img {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.story-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  backdrop-filter: blur(12px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* ==========================================================================
   Catering & Calculator Section
   ========================================================================== */
.catering-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.catering-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.catering-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catering-feature-row:last-child {
  margin-bottom: 0;
}

.catering-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Calculator Box */
.calc-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.calc-form-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--crema);
  margin-bottom: 0.6rem;
}

.calc-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px var(--gold-glow);
}

.guest-count-display {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  min-width: 50px;
  text-align: right;
}

.calc-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--crema);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.calc-result-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.calc-estimate-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin: 0.35rem 0;
}

.calc-per-person {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Reviews & Testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--crema);
}

.author-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--crema);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Modal Components
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--crema);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--crema);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slide-toast 0.35s ease forwards;
}

@keyframes slide-toast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Mobile Bottom Bar
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 14, 13, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  z-index: 999;
}

.mobile-bottom-buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.3rem 0.5rem;
}

.mobile-bottom-btn .icon {
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.mobile-bottom-btn.active {
  color: var(--gold-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #080605;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem 0;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--crema);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-list a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--crema);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-bg-image {
    width: 100%;
    opacity: 0.35;
  }
  .trompo-grid,
  .story-grid,
  .catering-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-visual-stack {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  /* Header CTA duplicates the hero + mobile bottom bar on small screens
     and overflows the row — hide it here. */
  .header-actions .btn-gold {
    display: none;
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 4.5rem;
  }
  /* Mobile hero: show the owner-cutting-meat photo as a real banner
     instead of a faint full-bleed background that hides the subject. */
  .hero-section {
    display: block;
    padding-top: 5rem;
    min-height: auto;
  }
  .hero-bg-overlay {
    display: none;
  }
  .hero-bg-image {
    position: relative;
    width: calc(100% - 2rem);
    margin: 0 auto;
    height: 44vh;
    max-height: 360px;
    opacity: 1;
    object-position: center center;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  }
  .hero-content {
    max-width: 100%;
    padding-top: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .modal-dialog {
    padding: 1.5rem;
  }
}

/* =========================================================================
   Google Calendar Embed (Food Truck Schedule)
   ========================================================================= */
.calendar-embed-card {
  position: relative;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(0, 0, 0, 0.15), transparent 60%),
    var(--bg-surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  min-height: 620px;
}
.gcal-frame {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}
/* Show the friendly placeholder only until a real calendar URL is wired in. */
.gcal-frame[src=""] {
  display: none;
}
.gcal-frame:not([src=""]) + .calendar-placeholder {
  display: none;
}
.calendar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  min-height: 620px;
  padding: 2rem;
  color: var(--text-secondary);
}
.calendar-placeholder .cal-emoji {
  font-size: 2.75rem;
}
.calendar-placeholder strong {
  font-size: 1.15rem;
  color: var(--crema);
}
.calendar-placeholder .cal-sub {
  max-width: 34ch;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .calendar-embed-card,
  .gcal-frame,
  .calendar-placeholder {
    min-height: 520px;
    height: 520px;
  }
}

/* =========================================================================
   Upcoming Stops / Event Cards (clean, matches location cards)
   ========================================================================= */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  transition: var(--transition);
}
.event-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}
.event-card.is-next {
  border-color: var(--border-gold);
}

.event-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 0.55rem 0.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.22);
}
.edow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.edate {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--crema);
  white-space: nowrap;
}
.is-homebase .edow { color: var(--verde); }

.event-info {
  flex: 1;
  min-width: 0;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.event-next-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: #1a0f02;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.is-homebase .event-tag { color: var(--verde); }
.event-venue {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--crema);
  margin: 0.3rem 0 0.2rem;
  letter-spacing: -0.01em;
}
.event-loc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.event-time {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}
.etime {
  font-weight: 700;
  color: var(--crema);
  font-size: 0.92rem;
  white-space: nowrap;
}
.event-dir {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: var(--transition);
}
.event-dir:hover { color: var(--gold); }

.events-sample-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.2rem;
}
@media (max-width: 600px) {
  .event-card {
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
    padding: 1.2rem 1.15rem;
  }
  .event-date { min-width: 58px; }
  .event-venue { font-size: 1.15rem; }
  .event-time {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.8rem;
  }
}
