/* =========================================================
   GERBMAN & BLUES FLOOD — STYLES
   Juke Joint Modern. Dark wood. Neon glow. Blues fire.
   ========================================================= */

/* Fonts loaded via <link> in HTML for performance. See preconnect + stylesheet links. */

/* --- CSS Variables --- */
:root {
  /* Brand Palette */
  --fiesta-red: #DD1923;
  --fiesta-red-glow: rgba(221, 25, 35, 0.35);
  --denim-navy: #272D67;
  --mustard-brass: #EAB003;
  --mustard-glow: rgba(234, 176, 3, 0.3);
  --saddle-brown: #937B56;
  --teal-glow: #2BB3A3;
  --teal-glow-alpha: rgba(43, 179, 163, 0.2);

  /* Light Theme (optional — activate by swapping vars) */
  --bg-light: #F6F1E7;
  --surface-light: #E9E1D6;
  --text-light: #1A1A1A;

  /* Dark Theme (default) */
  --bg: #121212;
  --bg-surface: #1B1612;
  --bg-card: #1E1914;
  --bg-elevated: #252019;
  --text-primary: #F3EBDD;
  --text-secondary: #B8A99A;
  --text-muted: #7A6E63;
  --border-subtle: rgba(147, 123, 86, 0.15);
  --border-medium: rgba(147, 123, 86, 0.25);

  /* Typography */
  --font-display: 'Alfa Slab One', serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--fiesta-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--mustard-brass); }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--mustard-brass);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fiesta-red);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--fiesta-red);
  color: #fff;
  text-align: center;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}
.announcement-bar a { color: #fff; text-decoration: underline; }
.announcement-bar.hidden { display: none; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.site-logo:hover { color: var(--fiesta-red); }
.site-logo span { color: var(--fiesta-red); }

.main-nav { display: flex; align-items: center; gap: var(--space-lg); }

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--fiesta-red);
  transition: width var(--transition-med);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-book-btn {
  background: var(--fiesta-red);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}
.nav-book-btn:hover {
  background: transparent;
  border-color: var(--fiesta-red);
  color: var(--fiesta-red) !important;
  box-shadow: 0 0 15px var(--fiesta-red-glow);
}
.nav-book-btn::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-xs);
  width: 40px; height: 40px;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  position: absolute;
  left: 9px;
}
.menu-toggle span { top: 50%; transform: translateY(-50%); }
.menu-toggle span::before { content: ''; top: -7px; }
.menu-toggle span::after { content: ''; top: 7px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(14, 14, 14, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-med);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-links { flex-direction: column; gap: var(--space-lg); align-items: flex-start; }
  .nav-links a { font-size: 1.25rem; }
  .nav-book-btn { margin-top: var(--space-lg); padding: 0.75rem 2rem; font-size: 1rem; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.4) 0%,
    rgba(14,14,14,0.55) 50%,
    rgba(14,14,14,0.92) 100%
  );
}

/* Film grain overlay */
.hero-grain {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title .accent { color: var(--fiesta-red); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--fiesta-red);
  color: #fff;
  border-color: var(--fiesta-red);
}
.btn-primary:hover {
  background: transparent;
  color: var(--fiesta-red);
  box-shadow: 0 0 20px var(--fiesta-red-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-secondary);
}
.btn-secondary:hover {
  border-color: var(--mustard-brass);
  color: var(--mustard-brass);
  box-shadow: 0 0 15px var(--mustard-glow);
}

.btn-accent {
  background: var(--mustard-brass);
  color: var(--bg);
  border-color: var(--mustard-brass);
}
.btn-accent:hover {
  background: transparent;
  color: var(--mustard-brass);
  box-shadow: 0 0 20px var(--mustard-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-medium);
}
.btn-ghost:hover {
  border-color: var(--fiesta-red);
  color: var(--fiesta-red);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
}

/* --- Sections --- */
.section {
  padding: var(--space-3xl) 0;
}
.section-dark { background: var(--bg-surface); }

.section-divider {
  width: 60px; height: 2px;
  background: var(--fiesta-red);
  margin: var(--space-xl) auto;
  opacity: 0.6;
}

/* Cable divider motif */
.cable-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
  margin: var(--space-3xl) 0;
}

/* --- Card System --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-elevated);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: var(--space-lg); }
.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: var(--space-md);
  border: 1px dashed var(--border-medium);
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Intro Section --- */
.intro-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Music Strip --- */
.music-strip {
  text-align: center;
}
.video-embed-wrapper {
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.video-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Social Grid --- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-sm);
}
.social-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  position: relative;
  transition: transform var(--transition-fast);
}
.social-grid-item:hover { transform: scale(1.03); }
.social-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.social-grid-item .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.social-grid-item:hover .overlay { opacity: 1; }

.social-follow-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* --- Shows / Events --- */
.show-tabs {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.show-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}
.show-tab.active,
.show-tab:hover {
  color: var(--text-primary);
  border-bottom-color: var(--fiesta-red);
}

.show-list { display: flex; flex-direction: column; gap: var(--space-md); }

.show-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color var(--transition-fast);
}
.show-item:hover { border-color: var(--fiesta-red); }

.show-date {
  text-align: center;
}
.show-date .day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fiesta-red);
  line-height: 1;
}
.show-date .month {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.show-date .year {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.show-date .tba-date {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--mustard-brass);
}

.show-info .show-venue {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}
.show-info .show-city {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.show-info .show-notes {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.show-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-confirmed { background: rgba(43,179,163,0.15); color: var(--teal-glow); }
.status-tba { background: rgba(234,176,3,0.15); color: var(--mustard-brass); }
.status-played { background: rgba(147,123,86,0.1); color: var(--text-muted); }

@media (max-width: 600px) {
  .show-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-sm);
  }
  .show-date { margin-bottom: var(--space-xs); }
  .show-actions { justify-self: center; }
}

/* --- Press Quotes --- */
.quotes-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--fiesta-red);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.quote-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.quote-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .quotes-strip { grid-template-columns: 1fr; }
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.gallery-filter {
  background: none;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.gallery-filter.active,
.gallery-filter:hover {
  border-color: var(--fiesta-red);
  color: var(--fiesta-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  background: var(--bg-elevated);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: var(--space-lg); right: var(--space-lg);
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: var(--space-lg); }
.lightbox-next { right: var(--space-lg); }

/* --- Polaroid Wall --- */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-lg);
}
.polaroid {
  background: #F3EBDD;
  padding: 10px 10px 40px 10px;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transform: rotate(var(--rotate, -1deg));
  transition: transform var(--transition-fast);
}
.polaroid:nth-child(2n) { --rotate: 1.5deg; }
.polaroid:nth-child(3n) { --rotate: -2deg; }
.polaroid:nth-child(4n) { --rotate: 0.5deg; }
.polaroid:hover { transform: rotate(0deg) scale(1.03); }
.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.polaroid-caption {
  font-size: 0.75rem;
  color: #4A3F35;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
}

/* --- Gear --- */
.gear-card { display: flex; flex-direction: column; }
.gear-card .card-img { aspect-ratio: 4/3; }
.gear-details-toggle {
  background: none;
  border: none;
  color: var(--fiesta-red);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: var(--space-xs);
  transition: color var(--transition-fast);
}
.gear-details-toggle:hover { color: var(--mustard-brass); }
.gear-details {
  display: none;
  margin-top: var(--space-xs);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.gear-details.open { display: block; }

/* --- Booking Form --- */
.booking-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--fiesta-red);
  outline: none;
  box-shadow: 0 0 0 3px var(--fiesta-red-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; }

.form-success {
  display: none;
  background: rgba(43,179,163,0.1);
  border: 1px solid var(--teal-glow);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  color: var(--teal-glow);
}
.form-success.show { display: block; }

/* Booking checklist */
.booking-checklist {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.booking-checklist h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--mustard-brass);
}
.booking-checklist ul {
  list-style: none;
  padding: 0;
}
.booking-checklist li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.booking-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fiesta-red);
  font-weight: 700;
}

/* --- EPK --- */
.epk-section {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.epk-section:last-child { border-bottom: none; }

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}
.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color var(--transition-fast);
}
.download-card:hover { border-color: var(--fiesta-red); }
.download-card .icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}
.download-card .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand .site-logo {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--text-primary); }

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-social-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-social-links a:hover { color: var(--fiesta-red); }

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Easter egg neon text */
.neon-whisper {
  color: var(--teal-glow);
  opacity: 0.8;
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.05em;
  transition: opacity var(--transition-fast), text-shadow 0.3s ease;
  text-shadow: 
    0 0 4px rgba(43,179,163,0.4),
    0 0 12px rgba(43,179,163,0.2);
  display: inline-block;
  margin-top: var(--space-xs);
}
.neon-whisper:hover { 
  opacity: 1; 
  text-shadow: 
    0 0 6px rgba(43,179,163,0.6),
    0 0 18px rgba(43,179,163,0.35),
    0 0 35px rgba(43,179,163,0.15);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p { margin: 0 auto; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* --- Band Page --- */
.band-hero {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.member-card { text-align: center; }
.member-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  background: var(--bg-elevated);
  border: 3px solid var(--border-subtle);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}
.member-role {
  font-size: 0.8rem;
  color: var(--fiesta-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0.3rem 0;
}
.member-oneliner {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

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

/* --- Page Header (non-home) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

/* --- Featured Tracks --- */
.track-list { display: flex; flex-direction: column; gap: var(--space-md); }
.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: border-color var(--transition-fast);
}
.track-item:hover { border-color: var(--fiesta-red); }
.track-title { font-weight: 700; color: var(--text-primary); }
.track-vibe { font-size: 0.85rem; color: var(--text-muted); }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item {
  margin-bottom: var(--space-lg);
}
.contact-info-item h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fiesta-red);
  margin-bottom: 0.3rem;
}
.contact-info-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* --- Structured data (hidden) --- */
.structured-data { display: none; }

/* --- Print / EPK --- */
@media print {
  .site-header, .site-footer, .announcement-bar,
  .hero, .menu-toggle, .nav-book-btn { display: none !important; }
  body { background: #fff; color: #1a1a1a; font-size: 11pt; }
  .page-header { padding-top: 1rem; background: transparent; }
  .section { padding: 1rem 0; }
  .card { break-inside: avoid; }
  a { color: #1a1a1a; }
}

/* --- Motifs: Ticket Stub (show items) --- */
.show-item {
  position: relative;
  padding-left: calc(var(--space-lg) + 8px);
  padding-right: calc(var(--space-lg) + 8px);
}
.show-item::before {
  content: '';
  position: absolute;
  left: -1px; top: 50%;
  width: 12px; height: 24px;
  background: var(--bg);
  border-radius: 0 12px 12px 0;
  transform: translateY(-50%);
  border: 1px solid var(--border-subtle);
  border-left: none;
  z-index: 1;
}
.show-item::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  width: 12px; height: 24px;
  background: var(--bg);
  border-radius: 12px 0 0 12px;
  transform: translateY(-50%);
  border: 1px solid var(--border-subtle);
  border-right: none;
  z-index: 1;
}
.section-dark .show-item::before,
.section-dark .show-item::after { background: var(--bg-surface); }

/* Ticket dashed separator */
.show-date { position: relative; }
.show-date::after {
  content: '';
  position: absolute;
  right: calc(var(--space-lg) * -0.5);
  top: 0; bottom: 0; width: 0;
  border-right: 2px dashed var(--border-medium);
}

/* --- Motifs: Stamp Badge (downloads) --- */
.download-card { position: relative; overflow: hidden; }
.download-card::before {
  content: '↓';
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border: 2px solid var(--fiesta-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--fiesta-red);
  opacity: 0.35; transform: rotate(-12deg);
  transition: opacity var(--transition-fast);
}
.download-card:hover::before { opacity: 0.8; }

/* --- Motifs: Neon Underline Accents --- */
.neon-underline {
  position: relative; display: inline;
}
.neon-underline::after {
  content: ''; position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--fiesta-red);
  box-shadow: 0 0 6px var(--fiesta-red-glow), 0 0 14px var(--fiesta-red-glow);
}
.neon-underline-gold::after {
  background: var(--mustard-brass);
  box-shadow: 0 0 6px var(--mustard-glow), 0 0 14px var(--mustard-glow);
}

/* --- Motifs: Pick Shape Outlines (callouts) --- */
.pick-shape {
  display: inline-block;
  width: 20px; height: 24px;
  border: 2px solid var(--fiesta-red);
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  opacity: 0.5;
  flex-shrink: 0;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 10px; height: 12px;
  border: 2px solid var(--fiesta-red);
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  margin-right: 0.4rem;
  vertical-align: middle;
  opacity: 0.6;
}

/* --- EPK Print Button --- */
.print-btn {
  background: var(--bg-card); border: 1px solid var(--border-medium);
  color: var(--text-secondary); padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition-fast);
}
.print-btn:hover { border-color: var(--mustard-brass); color: var(--mustard-brass); }

/* --- Show Filters --- */
.show-filters {
  display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg);
}
.show-filter-btn {
  background: none; border: 1px solid var(--border-medium);
  color: var(--text-muted); padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; cursor: pointer; transition: all var(--transition-fast);
}
.show-filter-btn.active, .show-filter-btn:hover {
  border-color: var(--fiesta-red); color: var(--fiesta-red);
}

/* --- Video Card Grid (homepage juke joint strip) --- */
.video-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg);
}
.video-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  text-decoration: none; display: block;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.video-card-thumb {
  aspect-ratio: 16/9; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem;
  position: relative; overflow: hidden;
}
.video-card-thumb::after {
  content: '▶'; position: absolute;
  width: 44px; height: 44px;
  background: rgba(221,25,35,0.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem; padding-left: 3px;
  transition: transform var(--transition-fast);
}
.video-card:hover .video-card-thumb::after { transform: scale(1.1); }
.video-card-body { padding: var(--space-md); }
.video-card-title { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.video-card-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
@media (max-width: 900px) { .video-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .video-cards { grid-template-columns: 1fr; }
  .show-item::before, .show-item::after { display: none; }
  .show-item { padding-left: var(--space-lg); padding-right: var(--space-lg); }
  .show-date::after { display: none; }
}

/* --- Instagram Widget Slot (Layer 2+3) --- */
.instagram-widget-slot { min-height: 80px; margin-top: var(--space-lg); }
.instagram-widget-slot:empty { display: none; }
.instagram-embed-slot { margin-top: var(--space-lg); }
.instagram-embed-slot:empty { display: none; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   JUKE JOINT ATMOSPHERE — Texturen, Neon, Rook, Hout, Baksteen
   ========================================================= */

/* --- SVG Texture Data URIs --- */
:root {
  --texture-brick: url("data:image/svg+xml,%3Csvg width='120' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='120' height='60' fill='%23151010'/%3E%3Crect x='1' y='1' width='56' height='27' rx='1' fill='%23281e16' stroke='%23100c08' stroke-width='1'/%3E%3Crect x='61' y='1' width='56' height='27' rx='1' fill='%23241a12' stroke='%23100c08' stroke-width='1'/%3E%3Crect x='31' y='31' width='56' height='27' rx='1' fill='%23261c14' stroke='%23100c08' stroke-width='1'/%3E%3Crect x='-29' y='31' width='56' height='27' rx='1' fill='%232a2018' stroke='%23100c08' stroke-width='1'/%3E%3Crect x='91' y='31' width='56' height='27' rx='1' fill='%23251b13' stroke='%23100c08' stroke-width='1'/%3E%3C/svg%3E");
  --texture-wood: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02 0.2' numOctaves='5' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0 0.06 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23w)'/%3E%3C/svg%3E");
  --texture-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Body: subtle wood grain base --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: var(--texture-wood);
  background-size: 200px;
  opacity: 0.12;
  pointer-events: none;
}

/* --- Section Atmosphere Layers --- */

/* Dark sections: brick wall feel */
.section-dark {
  position: relative;
  background:
    linear-gradient(180deg, rgba(27,22,18,0.88) 0%, rgba(27,22,18,0.82) 100%),
    var(--bg-surface);
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-brick);
  background-size: 120px 60px;
  opacity: 0.22;
  pointer-events: none;
}

/* Light sections: warm spotlight from above */
.section:not(.section-dark) {
  position: relative;
}
.section:not(.section-dark):not(.hero)::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 250px;
  background: radial-gradient(ellipse at 50% 0%, rgba(234,176,3,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Smoke / Haze Overlay --- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(200,180,150,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(200,180,150,0.09) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(200,180,150,0.10) 0%, transparent 40%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: smokeFloat 20s ease-in-out infinite alternate;
}
@keyframes smokeFloat {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-8px) scale(1.02); opacity: 0.8; }
  100% { transform: translateY(4px) scale(0.98); opacity: 1; }
}

/* Smoke wisps between sections */
.cable-divider {
  position: relative;
  height: 2px;
}
.cable-divider::before {
  content: '';
  position: absolute;
  top: -30px; left: 10%; right: 10%;
  height: 60px;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,180,150,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Neon Sign Decorative Elements --- */

/* Neon border accent on section titles */
.section-title {
  position: relative;
  display: inline-block;
}

/* Neon red line under section labels */
.section-label {
  position: relative;
  padding-bottom: 8px;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--fiesta-red);
  box-shadow:
    0 0 6px var(--fiesta-red-glow),
    0 0 14px var(--fiesta-red-glow),
    0 0 30px rgba(221,25,35,0.25);
  border-radius: 1px;
}

/* Neon border glow on cards on hover */
.card:hover {
  border-color: rgba(221,25,35,0.4);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(221,25,35,0.12),
    inset 0 0 25px rgba(221,25,35,0.04);
}

/* Neon tube on primary buttons — extra glow layer */
.btn-primary {
  position: relative;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.btn-primary:hover {
  text-shadow: none;
  box-shadow:
    0 0 10px var(--fiesta-red-glow),
    0 0 25px var(--fiesta-red-glow),
    0 0 50px rgba(221,25,35,0.12);
}

/* Neon accent buttons */
.btn-accent:hover {
  box-shadow:
    0 0 10px var(--mustard-glow),
    0 0 25px var(--mustard-glow),
    0 0 50px rgba(234,176,3,0.12);
}

/* Teal neon glow on nav book button */
.nav-book-btn:hover {
  box-shadow:
    0 0 8px var(--fiesta-red-glow),
    0 0 20px var(--fiesta-red-glow),
    0 0 40px rgba(221,25,35,0.1);
}

/* --- Warm Light Gradients on Sections --- */

/* Warm pool of light at top of each section */
.section-dark::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(147,123,86,0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Warm edge vignette on the whole page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* --- Vintage Poster Feel --- */

/* Section border accents — like poster tape strips */
.section + .section-dark,
.section-dark + .section:not(.section-dark) {
  border-top: 1px solid var(--border-subtle);
}

/* Quote cards: vintage poster left-border neon */
.quote-card {
  border-left-color: var(--fiesta-red);
  position: relative;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: -3px; bottom: 0;
  width: 3px;
  background: var(--fiesta-red);
  box-shadow:
    0 0 4px var(--fiesta-red-glow),
    0 0 8px rgba(221,25,35,0.2);
  border-radius: 1px;
}

/* Gear cards: wood grain background hint */
.gear-card {
  position: relative;
}
.gear-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background-image: var(--texture-wood);
  background-size: 200px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.gear-card .card-body { position: relative; z-index: 1; }
.gear-card .card-img { position: relative; z-index: 1; }

/* Show items: ticket stub with subtle neon left edge */
.show-item {
  position: relative;
}
.show-item:hover::before {
  box-shadow: 0 0 6px var(--fiesta-red-glow);
}

/* Footer: dark wood paneling feel */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-wood);
  background-size: 200px;
  opacity: 0.10;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

/* Neon whisper hover: full neon glow */
.neon-whisper:hover {
  text-shadow:
    0 0 4px var(--teal-glow),
    0 0 10px rgba(43,179,163,0.3),
    0 0 20px rgba(43,179,163,0.15);
}

/* --- Header: warm wood bar feel --- */
.site-header {
  position: relative;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-wood);
  background-size: 200px;
  opacity: 0.08;
  pointer-events: none;
}
.header-inner { position: relative; z-index: 1; }

/* --- Booking form: warm glow on focus --- */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow:
    0 0 0 3px var(--fiesta-red-glow),
    0 0 12px rgba(221,25,35,0.08);
}

/* --- Download cards: stamp feel enhanced --- */
.download-card {
  position: relative;
  overflow: hidden;
}
.download-card::after {
  content: '';
  position: absolute;
  top: 5px; right: 5px;
  width: 30px; height: 30px;
  border: 2px solid var(--fiesta-red);
  border-radius: 50%;
  opacity: 0.15;
  transform: rotate(-12deg);
  pointer-events: none;
}

/* --- Polaroid wall: warmer shadows --- */
.polaroid {
  box-shadow:
    0 4px 15px rgba(0,0,0,0.4),
    0 1px 3px rgba(0,0,0,0.2),
    inset 0 0 20px rgba(200,180,150,0.03);
}

/* --- Page header (non-home): brick undertone --- */
.page-header {
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-brick);
  background-size: 120px 60px;
  opacity: 0.18;
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }

/* --- Gallery items: warm highlight on hover --- */
.gallery-item:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(234,176,3,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Hero enhanced: warm stage spots --- */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(221,25,35,0.10) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 50%, rgba(234,176,3,0.08) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 30%, rgba(43,179,163,0.04) 0%, transparent 30%);
  pointer-events: none;
}

/* --- Ensure z-index stacking for textured sections --- */
.section .container { position: relative; z-index: 1; }
.section-dark .container { position: relative; z-index: 1; }
/* ============================================
   RELIC ENAMEL SIGN — Gerbman & Blues Flood
   Vintage tin sign treatment for band logo
   
   HOW TO USE:
   1. Include this CSS file
   2. Use the HTML structure from enamel-sign-markup.html
   3. Replace logo src with your logo path
   4. Choose size class: .enamel-hero, .enamel-section, .enamel-footer, .enamel-header
   ============================================ */

/* --- BASE SIGN CONTAINER --- */
.enamel-sign {
  position: relative;
  display: inline-block;
  width: 100%;
  transform: perspective(700px) rotateX(1deg);
  transition: transform 0.5s ease;
}
.enamel-sign:hover {
  transform: perspective(700px) rotateX(0deg) translateY(-2px);
}

/* Size variants */
.enamel-hero { max-width: 400px; }
.enamel-section { max-width: 250px; }
.enamel-footer { max-width: 160px; }
.enamel-header { max-width: 180px; }

/* --- RUST FRAME (outer corroded metal edge) --- */
.enamel-sign .rust-frame {
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 6% 3%, rgba(120,52,8,1) 0%, rgba(120,52,8,.6) 15%, transparent 30%),
    radial-gradient(ellipse at 94% 5%, rgba(140,65,12,1) 0%, rgba(140,65,12,.5) 18%, transparent 32%),
    radial-gradient(ellipse at 95% 96%, rgba(115,48,6,1) 0%, rgba(115,48,6,.6) 16%, transparent 35%),
    radial-gradient(ellipse at 4% 95%, rgba(135,62,10,.95) 0%, rgba(135,62,10,.5) 14%, transparent 30%),
    radial-gradient(ellipse at 50% 1%, rgba(110,50,10,.7) 0%, transparent 22%),
    radial-gradient(ellipse at 50% 99%, rgba(118,54,10,.75) 0%, transparent 25%),
    radial-gradient(ellipse at 1% 50%, rgba(125,58,12,.6) 0%, transparent 18%),
    radial-gradient(ellipse at 99% 50%, rgba(125,58,12,.6) 0%, transparent 18%),
    radial-gradient(ellipse at 25% 10%, rgba(160,80,20,.3) 0%, transparent 15%),
    radial-gradient(ellipse at 75% 90%, rgba(155,75,18,.3) 0%, transparent 15%),
    linear-gradient(140deg, #6B4020, #5A3318 25%, #7A5030 50%, #684025 75%, #5A3318);
  box-shadow: 0 10px 40px rgba(0,0,0,.6), 0 3px 10px rgba(0,0,0,.35);
}
.enamel-sign .rust-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='7' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23r)'/%3E%3C/svg%3E");
  background-size: 100px;
  opacity: .22;
  mix-blend-mode: multiply;
}

/* --- SIGN SURFACE (the enamel plate) --- */
.enamel-sign .sign-surface {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 6px;
  /* Base color matches logo background exactly: #f6ebd9 */
  background:
    radial-gradient(ellipse at 38% 33%, rgba(255,255,255,.12) 0%, rgba(255,255,255,.02) 35%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(50,35,12,.15) 100%),
    linear-gradient(178deg, #f6ebd9 0%, #eee2c8 50%, #e4d8b8 100%);
  box-shadow:
    inset 0 3px 1px rgba(255,255,255,.28),
    inset 0 -6px 16px rgba(50,35,12,.18),
    inset 5px 0 12px rgba(50,35,12,.08),
    inset -5px 0 12px rgba(50,35,12,.08);
  overflow: hidden;
}
.enamel-section .sign-surface { padding: 14px; border-radius: 5px; }
.enamel-footer .sign-surface { padding: 8px; border-radius: 4px; }

/* --- WEATHERING LAYERS --- */

/* Edge corrosion */
.enamel-sign .edge-corrosion {
  position: absolute; inset: 0; border-radius: inherit;
  z-index: 6; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(100,60,22,.35) 0%, rgba(100,60,22,.12) 6%, transparent 18%),
    linear-gradient(0deg, rgba(88,50,18,.4) 0%, rgba(88,50,18,.15) 7%, transparent 20%),
    linear-gradient(90deg, rgba(95,55,20,.3) 0%, transparent 14%),
    linear-gradient(270deg, rgba(95,55,20,.32) 0%, transparent 14%),
    radial-gradient(circle at 1% 1%, rgba(85,42,8,.65) 0%, transparent 20%),
    radial-gradient(circle at 99% 1%, rgba(95,48,10,.6) 0%, transparent 22%),
    radial-gradient(circle at 99% 99%, rgba(90,45,8,.7) 0%, transparent 24%),
    radial-gradient(circle at 1% 99%, rgba(85,42,8,.6) 0%, transparent 20%),
    radial-gradient(circle at 20% 1%, rgba(100,55,15,.25) 0%, transparent 10%),
    radial-gradient(circle at 80% 99%, rgba(100,55,15,.3) 0%, transparent 12%);
}

/* Rust bleed through */
.enamel-sign .rust-bleed {
  position: absolute; inset: 0; border-radius: inherit;
  z-index: 7; pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 16%, rgba(130,62,14,.18) 0%, transparent 10%),
    radial-gradient(ellipse at 84% 12%, rgba(125,58,12,.15) 0%, transparent 9%),
    radial-gradient(ellipse at 88% 80%, rgba(135,65,16,.2) 0%, transparent 12%),
    radial-gradient(ellipse at 16% 85%, rgba(120,55,12,.16) 0%, transparent 9%),
    radial-gradient(ellipse at 55% 8%, rgba(128,60,14,.12) 0%, transparent 6%),
    radial-gradient(ellipse at 42% 92%, rgba(128,60,14,.14) 0%, transparent 7%),
    radial-gradient(ellipse at 70% 45%, rgba(118,54,12,.08) 0%, transparent 5%),
    radial-gradient(ellipse at 30% 55%, rgba(118,54,12,.06) 0%, transparent 4%),
    radial-gradient(ellipse at 92% 50%, rgba(130,62,14,.1) 0%, transparent 6%),
    radial-gradient(ellipse at 8% 50%, rgba(125,58,12,.1) 0%, transparent 5%);
}

/* Scratches */
.enamel-sign .scratches {
  position: absolute; inset: 0; border-radius: inherit;
  z-index: 8; pointer-events: none;
  background:
    linear-gradient(148deg, transparent 18%, rgba(60,38,12,.07) 18.12%, transparent 18.25%),
    linear-gradient(148deg, transparent 35%, rgba(60,38,12,.06) 35.1%, transparent 35.22%),
    linear-gradient(148deg, transparent 52%, rgba(60,38,12,.08) 52.08%, transparent 52.18%),
    linear-gradient(148deg, transparent 68%, rgba(60,38,12,.05) 68.1%, transparent 68.2%),
    linear-gradient(148deg, transparent 82%, rgba(60,38,12,.07) 82.08%, transparent 82.18%),
    linear-gradient(32deg, transparent 25%, rgba(60,38,12,.06) 25.1%, transparent 25.2%),
    linear-gradient(32deg, transparent 45%, rgba(60,38,12,.05) 45.08%, transparent 45.18%),
    linear-gradient(32deg, transparent 65%, rgba(60,38,12,.07) 65.08%, transparent 65.18%),
    linear-gradient(32deg, transparent 80%, rgba(60,38,12,.04) 80.1%, transparent 80.2%),
    linear-gradient(95deg, transparent 40%, rgba(60,38,12,.04) 40.06%, transparent 40.14%),
    linear-gradient(170deg, transparent 55%, rgba(60,38,12,.05) 55.06%, transparent 55.14%);
}

/* Water stain rings */
.enamel-sign .water-stains {
  position: absolute; inset: 0; border-radius: inherit;
  z-index: 7; pointer-events: none;
  background:
    radial-gradient(circle at 35% 30%, transparent 8%, rgba(100,65,25,.06) 8.5%, rgba(100,65,25,.03) 9.5%, transparent 10%),
    radial-gradient(circle at 65% 70%, transparent 6%, rgba(100,65,25,.05) 6.5%, rgba(100,65,25,.02) 7.5%, transparent 8%),
    radial-gradient(circle at 75% 25%, transparent 5%, rgba(100,65,25,.04) 5.4%, transparent 6.5%);
}

/* Heavy grain texture */
.enamel-sign .grain {
  position: absolute; inset: 0; border-radius: inherit;
  z-index: 9; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
  background-size: 130px;
  opacity: .13;
  mix-blend-mode: multiply;
}

/* Oil sheen gloss streak */
.enamel-sign .gloss {
  position: absolute; inset: 2px; border-radius: 5px;
  z-index: 14; pointer-events: none;
  background: linear-gradient(128deg, transparent 0%, rgba(255,255,255,.05) 14%, rgba(255,255,255,.12) 19%, rgba(255,255,255,.02) 28%, transparent 42%);
}

/* --- SCREWS --- */
.enamel-screw {
  position: absolute; z-index: 12;
  width: 15px; height: 15px;
}
.enamel-screw::before {
  content: '';
  position: absolute; top: -7px; left: -7px;
  width: 29px; height: 29px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,48,6,.35) 15%, rgba(110,48,6,.15) 40%, transparent 70%);
}
.enamel-screw::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 15px; height: 15px; border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.18) 0%, transparent 35%),
    radial-gradient(circle, #5A4A38, #3E3025 60%, #2A2018);
  box-shadow: 0 1px 4px rgba(0,0,0,.65), inset 0 1px 1px rgba(255,255,255,.1);
  border: 1px solid rgba(0,0,0,.35);
}
.screw-slot {
  position: absolute; top: 50%; left: 10%; width: 80%; height: 2px;
  background: rgba(0,0,0,.5); border-radius: 1px;
  transform: translateY(-50%);
  z-index: 13;
}
.screw-tl { top: 11px; left: 11px; }
.screw-tr { top: 11px; right: 11px; }
.screw-bl { bottom: 11px; left: 11px; }
.screw-br { bottom: 11px; right: 11px; }
.screw-tl .screw-slot { transform: translateY(-50%) rotate(-28deg); }
.screw-tr .screw-slot { transform: translateY(-50%) rotate(42deg); }
.screw-bl .screw-slot { transform: translateY(-50%) rotate(14deg); }
.screw-br .screw-slot { transform: translateY(-50%) rotate(-58deg); }

/* Rust drips from screws */
.screw-drip {
  position: absolute; z-index: 1; filter: blur(0.6px);
  border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, rgba(110,48,6,.4) 0%, rgba(130,62,14,.28) 15%, rgba(120,55,10,.18) 35%, rgba(110,48,6,.04) 80%, transparent 100%);
}
.screw-drip-fork {
  position: absolute; z-index: 1; filter: blur(0.4px);
  border-radius: 0 0 2px 2px;
  background: linear-gradient(180deg, rgba(110,48,6,.2) 0%, rgba(110,48,6,.08) 40%, transparent 100%);
  transform: rotate(3deg);
}

/* --- PAINT CHIPS (exposed metal) --- */
.paint-chip {
  position: absolute; z-index: 11; pointer-events: none;
  background: linear-gradient(140deg, #8B6B40 10%, #7A5A35 40%, #6B4A2A 70%, #5A3A20);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.22);
}

/* --- BB GUN IMPACTS --- */
.impact {
  position: absolute; z-index: 13; pointer-events: none;
}
.impact-crater {
  border-radius: 38% 62% 48% 52% / 58% 38% 62% 42%;
  background: radial-gradient(ellipse at 52% 55%, rgba(60,40,15,.06) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.06) 78%, transparent 100%);
  box-shadow: inset 1px 1px 2px rgba(0,0,0,.22), inset -0.5px -0.5px 1px rgba(255,255,255,.12);
}
.impact-hole {
  border-radius: 32% 58% 42% 48% / 48% 38% 52% 42%;
  background: radial-gradient(ellipse at 45% 45%, #080604 0%, #12100D 55%, #1B1612 100%);
  box-shadow: inset 0 0.5px 2px rgba(0,0,0,0.9), 0 0.5px 0 rgba(160,120,60,0.1);
}
.impact-rust-halo {
  border-radius: 38% 62% 48% 52% / 58% 38% 62% 42%;
  background: radial-gradient(ellipse, rgba(115,52,8,.1) 25%, rgba(115,52,8,.04) 55%, transparent 75%);
}
.impact-chip {
  background: linear-gradient(140deg, #8B6B40 10%, #6B4A2A 60%, #5A3A20);
  box-shadow: inset 0 0.5px 1px rgba(0,0,0,.2);
}
.impact-drip {
  border-radius: 0 0 3px 3px; filter: blur(0.5px);
  background: linear-gradient(180deg, rgba(110,48,6,.35) 0%, rgba(130,62,14,.22) 18%, rgba(115,52,8,.12) 40%, rgba(110,48,6,.05) 70%, transparent 100%);
}

/* Small ding (surface dent only) */
.ding {
  position: absolute; z-index: 13; pointer-events: none;
  border-radius: 42% 58% 45% 55% / 52% 48% 52% 48%;
  background: radial-gradient(ellipse at 54% 56%, rgba(0,0,0,.03) 0%, rgba(0,0,0,.12) 50%, rgba(0,0,0,.04) 82%, transparent 100%);
  box-shadow: inset 0.5px 0.5px 1.5px rgba(0,0,0,.16), inset -0.3px -0.3px 0.8px rgba(255,255,255,.1);
}

/* --- LOGO IMAGE --- */
.enamel-sign .sign-logo {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  mix-blend-mode: multiply;
  filter: saturate(0.98) contrast(1.08) brightness(0.93);
  border-radius: 3px;
}

/* --- HEADER VARIANT --- */
.enamel-header-wrap {
  position: relative;
  display: inline-block;
}
.enamel-header-frame {
  position: absolute; inset: -2px; border-radius: 5px;
  background: linear-gradient(135deg, #6B4020, #5A3318, #7A5030);
  box-shadow: 0 2px 6px rgba(0,0,0,.45);
}
.enamel-header-frame::after {
  content: '';
  position: absolute; inset: 0; border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23r)'/%3E%3C/svg%3E");
  background-size: 80px; opacity: .15; mix-blend-mode: multiply;
}
.enamel-header-surface {
  position: relative;
  height: 38px; padding: 3px 6px;
  border-radius: 4px;
  border: 1.5px solid rgba(80,55,30,.4);
  background:
    radial-gradient(ellipse at 40% 35%, rgba(255,255,255,.1) 0%, transparent 50%),
    linear-gradient(175deg, #f6ebd9, #e4d8b8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -2px 4px rgba(50,35,12,.1);
  display: inline-flex; align-items: center;
  overflow: hidden;
}
.enamel-header-surface::before {
  content: '';
  position: absolute; inset: 0; border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(95,60,22,.12) 0%, transparent 15%),
    linear-gradient(0deg, rgba(95,60,22,.1) 0%, transparent 10%),
    linear-gradient(90deg, rgba(95,60,22,.08) 0%, transparent 8%),
    linear-gradient(270deg, rgba(95,60,22,.08) 0%, transparent 8%);
  pointer-events: none; z-index: 3;
}
.enamel-header-surface img {
  height: 30px; width: auto;
  mix-blend-mode: multiply;
  filter: brightness(0.94) contrast(1.06);
  position: relative; z-index: 2;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .enamel-hero { max-width: 300px; }
  .enamel-hero .sign-surface { padding: 16px; }
}

/* =========================================================
   WORDPRESS SPECIFIC OVERRIDES
   ========================================================= */

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(-50vw + 50%); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--space-xs); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-md); }
.gallery-item { margin: 0; }
.gallery-item img { border-radius: var(--radius-sm); }

.elementor-page .site-header { z-index: 1000; }

#sb_instagram .sbi_photo_wrap { border-radius: var(--radius-sm) !important; }
#sb_instagram .sbi_follow_btn a,
.ctf-follow-btn a {
  background: var(--fiesta-red) !important;
  border-radius: var(--radius-sm) !important;
}

.post-edit-link {
  display: inline-block; font-size: 0.75rem; color: var(--text-muted);
  padding: 0.2rem 0.5rem; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); margin-top: var(--space-sm);
}
.post-edit-link:hover { border-color: var(--fiesta-red); color: var(--fiesta-red); }
