/* =============================================================================
   KARI GREENWAY — SITE CSS
   Dark navy and silver — whimsical, intimate, Savannah acoustic musician
   ============================================================================= */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Cinzel:wght@400;600;700;900&family=Oswald:wght@300;400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  /* Brand colors — navy/silver palette for Kari Greenway */
  --hof-charcoal:   #071321;  /* darkest navy — page background */
  --hof-charcoal-2: #0c2038;  /* primary navy — raised sections */
  --hof-charcoal-3: #132d4b;  /* soft navy — alternating sections */
  --hof-fire-red:   #1b4167;  /* deep navy — used in gradient backgrounds */
  --hof-fire-red-2: #79add3;  /* blue accent — eyebrows, labels, accents */
  --hof-burnt-red:  #071321;  /* darkest navy — gradient anchors */
  --hof-cream:      #f0f3f6;  /* bright silver — primary text */
  --hof-cream-2:    #c4ccd5;  /* main silver — secondary text/links */
  --hof-gold:       #79add3;  /* blue accent — replaces gold accents */
  --hof-gold-2:     #a4d2ee;  /* blue highlight */
  --hof-smoke:      #586574;  /* dark silver — muted elements */
  --hof-smoke-2:    #8e9aa8;  /* muted silver — secondary text */
  --hof-black:      #040d18;  /* near-black navy */
  --hof-white:      #eef2f6;  /* lightest text */

  /* Typography */
  /* --font-display: whimsical/dreamy — use for site name, hero title, page headings */
  --font-display: 'Cormorant Garamond', 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --font-heading: 'Cinzel', 'Libre Baskerville', 'Georgia', serif;
  --font-label:   'Oswald', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', 'Source Sans 3', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 70px;
  --radius:     4px;
  --radius-lg:  8px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.45);
  --shadow-md:   0 4px 18px rgba(0,0,0,0.6);
  --shadow-lg:   0 8px 36px rgba(0,0,0,0.75);
  --shadow-text: 2px 2px 10px rgba(0,0,0,0.85);
  --shadow-glow: 0 0 24px rgba(143,47,36,0.4);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--hof-charcoal);
  color: var(--hof-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hof-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--hof-cream); }

ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hof-cream);
  text-shadow: var(--shadow-text);
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem,   6vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--hof-white); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--hof-cream); }
em { font-style: italic; }
small { font-size: 0.85rem; color: var(--hof-smoke-2); }
address { font-style: normal; }

/* ── Layout Containers ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

.section {
  padding: var(--space-xl) 0;
}
.section--tight  { padding: var(--space-lg) 0; }
.section--wide   { padding: var(--space-2xl) 0; }

/* ── Section Headers (gritty divider style) ───────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}
.section-header__label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
  margin-bottom: var(--space-xs);
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--hof-cream);
  text-shadow: var(--shadow-text);
  position: relative;
  display: inline-block;
}
.section-header__title::before,
.section-header__title::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hof-gold), transparent);
  margin: var(--space-xs) 0;
}
.section-header__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--hof-smoke-2);
  max-width: 560px;
  margin: var(--space-sm) auto 0;
}

/* ── Announcement Bar ─────────────────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--hof-burnt-red), var(--hof-fire-red), var(--hof-burnt-red));
  padding: 0.5rem var(--space-md);
  min-height: 34px;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 200;
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  min-height: 18px;
}
.announcement-bar__text {
  color: var(--hof-cream);
}
.announcement-bar__link {
  color: var(--hof-cream-2);
  font-weight: 700;
  border-bottom: 1px solid var(--hof-cream-2);
  padding-bottom: 1px;
}
.announcement-bar__link:hover {
  color: #fff;
  border-color: #fff;
}
.announcement-bar--empty .announcement-bar__inner {
  gap: 0;
}
.announcement-bar__placeholder {
  display: inline-block;
  width: 1px;
  height: 1px;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-nav {
  background: rgba(7, 19, 33, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(121, 173, 211, 0.2);
  position: sticky;
  top: 0;
  z-index: 201;
  height: var(--nav-height);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  overflow: visible;
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  overflow: visible;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}
.site-nav.scrolled .nav-logo__icon {
  width: 62px;
  height: 62px;
}
.nav-logo__icon {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  position: relative;
  z-index: 201;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
  transition: width 0.3s ease, height 0.3s ease;
}
.nav-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hof-cream);
  letter-spacing: 0.04em;
}
.nav-logo__sub {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hof-gold);
}
.nav-logo:hover .nav-logo__name { color: var(--hof-gold); }

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-xs);
  align-items: center;
}
.nav-links a,
.nav-dropdown__trigger {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hof-smoke-2);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active {
  color: var(--hof-cream);
  background: rgba(121, 173, 211, 0.15);
}
.nav-links a.active,
.nav-dropdown__trigger.active {
  color: var(--hof-gold);
  border-bottom: 2px solid var(--hof-fire-red);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hof-cream);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav expanded */
.nav-links--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--hof-charcoal);
  border-top: 1px solid rgba(199, 154, 75, 0.2);
  padding: var(--space-md);
  gap: var(--space-xs);
  box-shadow: var(--shadow-md);
}
.nav-links--open a {
  padding: 0.65rem var(--space-md);
  font-size: 1rem;
  border-radius: var(--radius);
}

/* More dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown__arrow { font-size: 0.6rem; }
.nav-dropdown__menu {
  display: none;
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--hof-charcoal);
  border: 1px solid rgba(199,154,75,0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.35rem 0;
  z-index: 200;
}
.nav-dropdown__menu--open { display: block; }
.nav-dropdown__link {
  display: block;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hof-smoke-2);
  padding: 0.55rem 1rem;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown__link:hover,
.nav-dropdown__link.active {
  color: var(--hof-cream);
  background: rgba(121,173,211,0.15);
}
.nav-dropdown__link.active { color: var(--hof-gold); }

/* Mobile: flatten dropdown into the open menu */
.nav-links--open .nav-dropdown__menu {
  display: block;
  position: static;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.nav-links--open .nav-dropdown__trigger { display: none; }
.nav-links--open .nav-dropdown__link {
  padding: 0.65rem var(--space-md);
  font-size: 1rem;
  padding-left: calc(var(--space-md) + 1rem);
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: clamp(340px, 60vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

/* Red/charcoal diagonal split background */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      var(--hof-burnt-red) 0%,
      var(--hof-fire-red) 30%,
      var(--hof-charcoal-3) 55%,
      var(--hof-charcoal) 100%);
  z-index: 0;
}
/* Noise grain overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}
/* Badge watermark */
.hero__watermark {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52%, 500px);
  pointer-events: none;
  z-index: 1;
}
.hero__watermark__glow {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 0 40px rgba(180,55,20,1)) drop-shadow(0 0 80px rgba(180,55,20,0.7));
  opacity: 0.06;
}
.hero__watermark__img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  opacity: 0.02;
  user-select: none;
}
/* Vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(8,9,10,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--hof-fire-red-2);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--hof-cream);
  text-shadow: 3px 3px 16px rgba(0,0,0,0.9);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.hero__sub {
  font-family: var(--font-label);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--hof-gold);
  margin-bottom: var(--space-lg);
  text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ── Status Badges ────────────────────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: 2px;
  border: 1px solid currentColor;
}
.status-badge::before {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: currentColor;
}
.status-badge--open {
  color: #5cb85c;
  border-color: #5cb85c;
  background: rgba(92, 184, 92, 0.1);
}
.status-badge--closed {
  color: var(--hof-smoke-2);
  border-color: var(--hof-smoke);
  background: rgba(127, 133, 134, 0.1);
}
.status-badge--private {
  color: #d9534f;
  border-color: #d9534f;
  background: rgba(217, 83, 79, 0.1);
}

/* ── Policy Badges ────────────────────────────────────────────────────────── */
.policy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 154, 75, 0.3);
  border-radius: 3px;
  padding: 0.35em 0.8em;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hof-smoke-2);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.policy-badge:hover {
  border-color: var(--hof-gold);
  color: var(--hof-cream);
}
.policy-badge__icon { font-size: 1em; }

/* ── Tonight Board ────────────────────────────────────────────────────────── */
.tonight-board {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(199, 154, 75, 0.25);
  border-top: 3px solid var(--hof-fire-red);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.tonight-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maltese-cross) right -40px top 50%/220px no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.tonight-board__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(199, 154, 75, 0.15);
}
.tonight-board__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
}
.tonight-board__date {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--hof-smoke-2);
  letter-spacing: 0.1em;
}
.tonight-board__hours {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hof-gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.tonight-board__event-cat {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
  margin-bottom: var(--space-xs);
}
.tonight-board__event-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--hof-cream);
  text-shadow: var(--shadow-text);
  margin-bottom: var(--space-xs);
}
.tonight-board__event-time {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  color: var(--hof-gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.tonight-board__event-summary {
  color: var(--hof-smoke-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tonight-board__extras {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tonight-board__extra-item {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--hof-smoke);
  letter-spacing: 0.05em;
}

.tonight-board__closed-note {
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: var(--hof-smoke);
  font-style: italic;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65em 1.5em;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

/* Primary — fire red */
.btn--primary {
  background: linear-gradient(135deg, var(--hof-fire-red), var(--hof-burnt-red));
  color: var(--hof-cream);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(143,47,36,0.5);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--hof-fire-red-2), var(--hof-fire-red));
  color: var(--hof-cream);
  box-shadow: var(--shadow-glow);
}

/* Secondary — outlined gold */
.btn--secondary {
  background: transparent;
  color: var(--hof-gold);
  border-color: var(--hof-gold);
}
.btn--secondary:hover {
  background: var(--hof-gold);
  color: var(--hof-black);
}

/* Ghost — outlined cream */
.btn--ghost {
  background: transparent;
  color: var(--hof-cream);
  border-color: rgba(255, 232, 176, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 232, 176, 0.1);
  border-color: var(--hof-cream);
  color: var(--hof-cream);
}

/* Size variants */
.btn--sm { font-size: 0.75rem; padding: 0.45em 1em; }
.btn--lg { font-size: 0.95rem; padding: 0.85em 2em; }
.btn--block { width: 100%; }

/* ── Category Badges ──────────────────────────────────────────────────────── */
.category-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: 2px;
}

/* ── Event Poster Cards ───────────────────────────────────────────────────── */
.event-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .event-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .event-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.event-card {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.event-card--private {
  opacity: 0.7;
  border-color: rgba(127,133,134,0.3);
}

/* Card image area / placeholder */
.event-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.event-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(30,40,50,0.9) 0%, var(--hof-charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.event-card__img-placeholder-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--hof-smoke);
  letter-spacing: 0.1em;
}

.event-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.event-card__date {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hof-smoke-2);
}
.event-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hof-cream);
  line-height: 1.2;
  text-shadow: var(--shadow-text);
}
.event-card__time {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--hof-gold);
  letter-spacing: 0.06em;
}
.event-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--hof-smoke-2);
  line-height: 1.3;
}
.event-card__summary {
  font-size: 0.88rem;
  color: var(--hof-smoke-2);
  line-height: 1.45;
  flex: 1;
  margin-top: var(--space-xs);
}
.event-card__footer {
  padding: 0 var(--space-md) var(--space-md);
}

/* Poster-style card variant (featured/large) */
.event-poster-card {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-top: 3px solid var(--hof-fire-red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.event-poster-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .event-poster-card { grid-template-columns: 280px 1fr; }
}

.event-poster-card__img-col {
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, var(--hof-burnt-red) 0%, var(--hof-charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.event-poster-card__img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maltese-cross) center/65% no-repeat;
  opacity: 0.1;
}
.event-poster-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.event-poster-card__img-date {
  position: relative;
  z-index: 1;
  text-align: center;
}
.event-poster-card__img-day {
  font-family: var(--font-label);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--hof-cream);
  line-height: 1;
  text-shadow: var(--shadow-text);
}
.event-poster-card__img-month {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hof-gold);
}

.event-poster-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.event-poster-card__cat {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
}
.event-poster-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--hof-cream);
  line-height: 1.15;
  text-shadow: var(--shadow-text);
}
.event-poster-card__time {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  color: var(--hof-gold);
  letter-spacing: 0.07em;
}
.event-poster-card__desc {
  font-size: 0.95rem;
  color: var(--hof-smoke-2);
  line-height: 1.5;
  margin-top: var(--space-xs);
}
.event-poster-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* ── Tap Wall Frame ───────────────────────────────────────────────────────── */
.tapwall-section {
  background: var(--hof-charcoal);
  padding: var(--space-xl) 0;
}
.tapwall-frame {
  border: 1px solid rgba(199, 154, 75, 0.25);
  border-top: 3px solid var(--hof-fire-red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--hof-charcoal-2);
}
.tapwall-frame::before {
  content: 'LIVE TAP LIST';
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--hof-gold);
  text-align: center;
  padding: 0.6rem;
  background: linear-gradient(to right, var(--hof-charcoal-2), rgba(143,47,36,0.15), var(--hof-charcoal-2));
  border-bottom: 1px solid rgba(199, 154, 75, 0.2);
}
.tapwall-frame iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
  background: #161b1e;
}

/* ── Mug Club ─────────────────────────────────────────────────────────────── */
.mugclub-section {
  background: var(--hof-charcoal-3);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.mugclub-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maltese-cross) center/50vw no-repeat;
  opacity: 0.025;
  pointer-events: none;
}

.mugclub-motm {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(199, 154, 75, 0.25);
  border-left: 4px solid var(--hof-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .mugclub-motm { grid-template-columns: 180px 1fr; }
}

.mugclub-motm__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.mugclub-motm__photo-frame {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--hof-gold);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.mugclub-motm__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mugclub-motm__photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hof-charcoal), var(--hof-burnt-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid var(--hof-gold);
}
.mugclub-motm__badge {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hof-black);
  background: var(--hof-gold);
  padding: 0.25em 0.7em;
  border-radius: 2px;
  text-align: center;
}

.mugclub-motm__info {}
.mugclub-motm__month {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
  margin-bottom: var(--space-xs);
}
.mugclub-motm__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--hof-cream);
  margin-bottom: var(--space-xs);
  text-shadow: var(--shadow-text);
}
.mugclub-motm__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--hof-gold);
  border-left: 2px solid var(--hof-fire-red);
  padding-left: var(--space-md);
  margin: var(--space-sm) 0;
  line-height: 1.5;
}
.mugclub-motm__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.mugclub-motm__meta-item {
  font-size: 0.85rem;
  color: var(--hof-smoke-2);
}
.mugclub-motm__meta-item strong {
  color: var(--hof-cream);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

/* Mug club card (past members grid) */
.mugclub-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}
.mugclub-member-card {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.2s;
}
.mugclub-member-card:hover { border-color: rgba(199,154,75,0.3); }
.mugclub-member-card__photo-frame {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--hof-gold);
  margin: 0 auto var(--space-sm);
  flex-shrink: 0;
}
.mugclub-member-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mugclub-member-card__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hof-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-sm);
  border: 2px solid rgba(199,154,75,0.4);
}
.mugclub-member-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--hof-cream);
}
.mugclub-member-card__period {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hof-gold);
  margin: var(--space-xs) 0;
}
.mugclub-member-card__quote {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--hof-smoke-2);
  line-height: 1.4;
}

/* ── Perks List ───────────────────────────────────────────────────────────── */
.perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.perks-list li {
  padding: 0.6em 0 0.6em 1.8em;
  position: relative;
  font-size: 0.95rem;
  color: var(--hof-white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.perks-list li:last-child { border-bottom: none; }
.perks-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--hof-fire-red-2);
  font-size: 0.6em;
  top: 0.9em;
}

/* ── Gallery Carousel ─────────────────────────────────────────────────────── */
.gallery-carousel {
  position: relative;
}
.gallery-carousel__track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-carousel__track::-webkit-scrollbar { display: none; }
.gallery-carousel__item {
  flex: 0 0 calc((100vw - 5 * 4px) / 6);
  height: calc((100vw - 5 * 4px) / 6);
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  background: var(--hof-charcoal-2);
  display: block;
}
.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-carousel__item:hover img { transform: scale(1.05); }
.gallery-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  border: 3px solid var(--hof-gold);
  color: var(--hof-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.gallery-carousel__arrow svg { width: 28px; height: 28px; }
.gallery-carousel__arrow:hover { background: rgba(0,0,0,0.95); }
.gallery-carousel__arrow:disabled { opacity: 0.2; cursor: default; }
.gallery-carousel__arrow--prev { left: 16px; }
.gallery-carousel__arrow--next { right: 16px; }
.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 0;
}
.gallery-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--hof-gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.gallery-carousel__dot.is-active { background: var(--hof-gold); }
@media (max-width: 640px) {
  .gallery-carousel__item {
    flex: 0 0 calc((100vw - 2 * 4px) / 3);
    height: calc((100vw - 2 * 4px) / 3);
  }
}

/* Full gallery page grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--hof-charcoal-2);
  display: block;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid__item:hover img { transform: scale(1.04); }

/* ── Location Panel ───────────────────────────────────────────────────────── */
.location-panel {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(199, 154, 75, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .location-panel { grid-template-columns: 1fr 1fr; }
}

.location-panel__map {
  min-height: 300px;
  background: var(--hof-charcoal);
  position: relative;
}
.location-panel__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
  filter: grayscale(0.5) contrast(1.1);
}
.location-panel__map-fallback {
  width: 100%;
  height: 300px;
  background: var(--hof-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--hof-smoke-2);
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-panel__info {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.location-panel__address {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--hof-white);
}
.location-panel__address strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--hof-cream);
  margin-bottom: var(--space-xs);
}

/* ── Hours Table ──────────────────────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today { background: rgba(143, 47, 36, 0.12); }
.hours-table td {
  padding: 0.45em 0;
  font-size: 0.9rem;
  color: var(--hof-smoke-2);
}
.hours-table td:first-child {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hof-white);
  width: 120px;
}
.hours-table .closed-row td { color: var(--hof-smoke); font-style: italic; }
.hours-table .today td { color: var(--hof-cream); }

/* ── Info Grid (2-col content blocks) ────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .info-grid         { grid-template-columns: repeat(2, 1fr); }
  .info-grid--3col   { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--hof-fire-red);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.info-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}
.info-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--hof-cream);
  margin-bottom: var(--space-sm);
}
.info-card__body {
  font-size: 0.9rem;
  color: var(--hof-smoke-2);
  line-height: 1.6;
}

/* ── Dividers ─────────────────────────────────────────────────────────────── */
.grit-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--hof-fire-red-2) 20%,
    var(--hof-gold-2) 50%,
    var(--hof-fire-red-2) 80%,
    transparent);
  border: none;
  margin: 0;
  opacity: 0.45;
}

/* ── Gig Detail Page ──────────────────────────────────────────────────────── */
.gig-detail-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hof-gold);
  margin-bottom: 0.25rem;
}
.gig-detail-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hof-cream);
}

/* ── Page Headers (inner pages) ───────────────────────────────────────────── */
.page-header {
  background: linear-gradient(115deg, var(--hof-burnt-red) 0%, var(--hof-charcoal) 60%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--hof-fire-red);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maltese-cross) right 5% center/300px no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.page-header__content { position: relative; z-index: 1; }
.page-header__eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
  margin-bottom: var(--space-sm);
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: var(--hof-cream);
  text-shadow: var(--shadow-text);
  margin-bottom: var(--space-sm);
}
.page-header__sub {
  font-size: 1rem;
  color: var(--hof-smoke-2);
  max-width: 560px;
  line-height: 1.55;
}

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}
.form-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hof-smoke-2);
}
.form-label .required { color: var(--hof-fire-red-2); margin-left: 0.2em; }

.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.65em 0.85em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hof-white);
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--hof-smoke); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--hof-gold);
  background: rgba(255,255,255,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23c79a4b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85em center;
  padding-right: 2.5em;
  cursor: pointer;
}
.form-select option { background: var(--hof-charcoal); color: var(--hof-white); }
.form-hint { font-size: 0.8rem; color: var(--hof-smoke); margin-top: 0.2rem; }
.form-error { font-size: 0.8rem; color: #e06c6c; margin-top: 0.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Alerts / Flash Messages ──────────────────────────────────────────────── */
.alert {
  padding: 0.85em 1.1em;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}
.alert--success { background: rgba(92,184,92,0.1);  border-color: #5cb85c; color: #7ddc7d; }
.alert--error   { background: rgba(217,83,79,0.1);  border-color: #d9534f; color: #e88585; }
.alert--info    { background: rgba(91,192,222,0.1); border-color: #5bc0de; color: #7dcde8; }
.alert--warning { background: rgba(240,173,78,0.1); border-color: #f0ad4e; color: #f5c47a; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--hof-black);
  border-top: 3px solid var(--hof-fire-red);
}
.footer-top {
  padding: var(--space-xl) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; gap: var(--space-lg); }
}

.footer-logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hof-cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.footer-logo-sub {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hof-gold);
  margin-bottom: var(--space-sm);
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--hof-smoke);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.footer-nav-heading {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(143,47,36,0.3);
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.4rem; }
.footer-nav a {
  font-size: 0.88rem;
  color: var(--hof-smoke-2);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--hof-cream); }

.footer-info address {
  font-size: 0.88rem;
  color: var(--hof-smoke-2);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.footer-info p { font-size: 0.88rem; color: var(--hof-smoke-2); margin-bottom: var(--space-sm); }
.footer-info a { color: var(--hof-smoke-2); }
.footer-info a:hover { color: var(--hof-gold); }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-day { color: var(--hof-white); font-weight: 500; }
.footer-hours-time { color: var(--hof-smoke-2); text-align: right; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hof-smoke-2);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35em 0.85em;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--hof-cream); border-color: var(--hof-gold); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--hof-smoke);
  margin: 0;
}
.footer-bottom a { color: var(--hof-smoke); }
.footer-bottom a:hover { color: var(--hof-smoke-2); }

/* ── Tonight Page Specific ────────────────────────────────────────────────── */
.tonight-hero {
  background: linear-gradient(135deg, var(--hof-burnt-red) 0%, var(--hof-charcoal) 70%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.tonight-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maltese-cross) right 5%/40vw no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.tonight-page-status {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.tonight-page-big-time {
  font-family: var(--font-label);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--hof-gold);
  letter-spacing: 0.06em;
}

/* ── Upcoming Events List ─────────────────────────────────────────────────── */
.upcoming-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.upcoming-list__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  align-items: start;
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.upcoming-list__item:hover {
  border-color: rgba(199,154,75,0.3);
  transform: translateX(3px);
  color: inherit;
}
.upcoming-list__date-block {
  text-align: center;
  background: var(--hof-charcoal);
  border-radius: var(--radius);
  padding: 0.4em;
  border-top: 2px solid var(--hof-fire-red);
}
.upcoming-list__month {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
}
.upcoming-list__day {
  font-family: var(--font-label);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hof-cream);
  line-height: 1;
}
.upcoming-list__weekday {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hof-smoke);
}
.upcoming-list__info {}
.upcoming-list__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--hof-cream);
  margin-bottom: 0.15rem;
}
.upcoming-list__meta {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: var(--hof-smoke-2);
  letter-spacing: 0.05em;
}

/* ── Story Section (About / Brand) ───────────────────────────────────────── */
.story-section {
  background: var(--hof-charcoal-3);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(143,47,36,0.12), transparent);
  pointer-events: none;
}
.story-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .story-section__inner { grid-template-columns: 1fr 1fr; }
}
.story-section__text p {
  font-size: 1rem;
  color: var(--hof-smoke-2);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.story-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(143,47,36,0.15);
  border: 1px solid rgba(143,47,36,0.4);
  border-radius: var(--radius);
  padding: 0.65em 1.1em;
  margin-bottom: var(--space-md);
}
.story-section__badge-text {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hof-fire-red-2);
}
.story-section__badge-est {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hof-gold);
  opacity: 0.85;
  padding-right: var(--space-sm);
  border-right: 1px solid rgba(143,47,36,0.4);
}
/* ── Mug Club available-slots banner (homepage) ───────────────── */
.mugclub-slots-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(199,154,75,0.12) 0%, rgba(199,154,75,0.06) 100%);
  border: 1px solid rgba(199,154,75,0.35);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: var(--space-lg);
  text-align: left;
}
.mugclub-slots-banner__body {
  flex: 1;
  min-width: 200px;
}
.mugclub-slots-banner__body strong {
  display: block;
  color: var(--hof-gold);
  font-family: var(--font-label);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.mugclub-slots-banner__body span {
  font-size: 0.83rem;
  color: var(--hof-smoke-2);
  line-height: 1.5;
}
@media (max-width: 520px) {
  .mugclub-slots-banner { justify-content: center; text-align: center; }
  .mugclub-slots-banner__body { min-width: 0; }
}
.story-section__visual {
  display: none;
}
@media (min-width: 768px) {
  .story-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
.story-section__emblem {
  width: min(90%, 320px);
  aspect-ratio: 1;
  background: var(--maltese-cross) center/contain no-repeat;
  opacity: 0.15;
}

/* ── Food / Family Section ────────────────────────────────────────────────── */
.food-section {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(199, 154, 75, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.food-section__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--hof-cream);
  margin-bottom: var(--space-sm);
  text-shadow: var(--shadow-text);
}
.food-section__body {
  font-size: 0.95rem;
  color: var(--hof-smoke-2);
  line-height: 1.65;
  max-width: 640px;
}

/* ── Private Event / Community Form Pages ─────────────────────────────────── */
.contact-form-wrap {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--hof-fire-red);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

/* ── Utility Classes ──────────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-cream   { color: var(--hof-cream); }
.text-gold    { color: var(--hof-gold); }
.text-red     { color: var(--hof-fire-red-2); }
.text-smoke   { color: var(--hof-smoke-2); }
.text-label   { font-family: var(--font-label); letter-spacing: 0.1em; }
.text-heading { font-family: var(--font-heading); }

.mt-0  { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.d-flex       { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

.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;
}

/* ── Page: On Tap ─────────────────────────────────────────────────────────── */
.ontap-section {
  background: var(--hof-charcoal-3);
  padding: var(--space-xl) 0;
}

/* ── Page: Events Filter Bar ──────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.filter-btn {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--hof-smoke-2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--hof-fire-red);
  border-color: var(--hof-fire-red);
  color: var(--hof-cream);
}

/* ── Print / accessibility ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   RSVP / Sign-Up Page
   ══════════════════════════════════════════════════════════════════════════════ */
.rsvp-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.rsvp-card {
  background: var(--hof-charcoal-2);
  border: 1px solid rgba(199, 154, 75, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.rsvp-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--hof-cream);
  margin-bottom: var(--space-md);
}
.rsvp-spots-left {
  font-size: 0.82rem;
  font-family: var(--font-label);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--hof-gold);
  margin-bottom: var(--space-md);
}
.rsvp-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}
.rsvp-optin {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--hof-smoke);
  cursor: pointer;
  margin-top: var(--space-sm);
}
.rsvp-optin input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
/* Tabs */
.rsvp-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-md);
  border-bottom: 2px solid rgba(199, 154, 75, 0.2);
}
.rsvp-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hof-smoke);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.rsvp-tab:hover { color: var(--hof-cream); }
.rsvp-tab--active {
  color: var(--hof-gold);
  border-bottom-color: var(--hof-gold);
}
/* Mode chooser big buttons */
.rsvp-mode-chooser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (max-width: 680px) {
  .rsvp-mode-chooser { grid-template-columns: 1fr; }
}
.rsvp-mode-btn {
  background: var(--hof-charcoal-2);
  border: 2px solid rgba(199, 154, 75, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.18s, background 0.18s, transform 0.12s;
}
.rsvp-mode-btn:hover {
  border-color: var(--hof-gold);
  background: rgba(199, 154, 75, 0.07);
  transform: translateY(-2px);
}
.rsvp-mode-btn--active {
  border-color: var(--hof-gold);
  background: rgba(199, 154, 75, 0.1);
}
.rsvp-mode-btn__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--hof-cream);
  display: block;
}
.rsvp-mode-btn--active .rsvp-mode-btn__title {
  color: var(--hof-gold);
}
.rsvp-mode-btn__sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--hof-smoke);
  display: block;
  line-height: 1.4;
}
/* Team success details */
.rsvp-team-details {
  background: var(--hof-charcoal-3);
  border: 1px solid rgba(199, 154, 75, 0.25);
  border-radius: var(--radius);
  padding: var(--space-md);
  max-width: 440px;
  margin: 0 auto;
}
.rsvp-team-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rsvp-team-detail-row:last-child { border-bottom: none; }
.rsvp-team-detail-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hof-smoke);
}
.rsvp-team-detail-value {
  color: var(--hof-cream);
}
/* Alert info variant */
.alert--info {
  background: rgba(74, 144, 226, 0.12);
  border: 1px solid rgba(74, 144, 226, 0.35);
  color: #a8c8f0;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
