/* ==========================================================================
   Loosa Brews — Tuscaloosa's Original Craft Beer Store & Arcade Bar
   Design system: crimson + amber + midnight, with arcade-era flourishes.
   ========================================================================== */

:root {
  /* Palette */
  --bg-deep: #0a0309;
  --bg-near: #14080d;
  --surface: #1f0f15;
  --surface-2: #2a141c;
  --surface-3: #38192a;

  --crimson: #c8203c;          /* Crimson Crowler red */
  --crimson-bright: #ee2f55;
  --crimson-deep: #861228;

  --amber: #f4a83a;            /* beer amber */
  --amber-bright: #ffc25e;
  --amber-deep: #b97c1d;

  --neon-pink: #ff3b8d;        /* arcade accent */

  --cream: #f6ead0;
  --cream-dim: #b8a07a;
  --text: #ede1cd;
  --text-muted: #c8a89a;
  --text-quiet: #8e7a6e;

  --border: rgba(244, 168, 58, 0.16);
  --border-strong: rgba(244, 168, 58, 0.32);
  --border-crimson: rgba(238, 47, 85, 0.30);

  /* Type */
  --f-display: "Big Shoulders Display", "Bebas Neue", Impact, sans-serif;
  --f-mono: "Major Mono Display", "JetBrains Mono", monospace;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.06), 0 24px 56px rgba(0,0,0,0.55);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--amber-bright); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--cream); }

::selection { background: var(--crimson); color: var(--cream); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--amber); color: var(--bg-deep); padding: 8px 14px;
  border-radius: var(--r-sm); font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(10, 3, 9, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark {
  width: 44px; height: 44px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  border-radius: 6px;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(10px, 1.6vw, 24px);
  justify-content: center;
}
.primary-nav a {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--crimson-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover { color: var(--cream); }
.primary-nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.open-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 8, 13, 0.7);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.open-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-quiet);
}
.open-pill.is-open { color: #c4f0d4; border-color: rgba(120, 220, 150, 0.4); }
.open-pill.is-open .dot { background: #5ee68a; box-shadow: 0 0 12px rgba(94, 230, 138, 0.7); animation: pulse 2.4s var(--ease) infinite; }
.open-pill.is-closed { color: #ffb6a8; border-color: rgba(238, 47, 85, 0.4); }
.open-pill.is-closed .dot { background: var(--crimson-bright); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 230, 138, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(94, 230, 138, 0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--crimson);
  color: var(--cream);
  border-color: var(--crimson);
  box-shadow: 0 6px 20px -4px rgba(200, 32, 60, 0.5);
}
.btn-primary:hover {
  background: var(--crimson-bright);
  border-color: var(--crimson-bright);
  box-shadow: 0 10px 28px -4px rgba(238, 47, 85, 0.65), 0 0 0 1px var(--crimson-bright);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: rgba(244, 168, 58, 0.08);
  border-color: var(--amber);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 4px;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--amber); background: rgba(244, 168, 58, 0.08); }

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent; border: 1px solid var(--border);
  width: 44px; height: 44px; border-radius: 6px;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--cream); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(10, 3, 9, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-call { color: var(--amber); margin-top: 8px; }

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.1) brightness(0.7);
  animation: heroDrift 28s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateX(-1%); }
  to { transform: scale(1.12) translateX(2%); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 50% 30%, rgba(0,0,0,0.0) 0%, rgba(10,3,9,0.45) 55%, rgba(10,3,9,0.92) 100%),
    linear-gradient(180deg, rgba(10,3,9,0.55) 0%, rgba(10,3,9,0.30) 30%, rgba(10,3,9,0.7) 75%, rgba(10,3,9,1) 100%);
  z-index: -1;
}
/* Subtle CRT scanline texture */
.scanlines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.014) 0px,
    rgba(255,255,255,0.014) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.hero-inner {
  width: min(100% - var(--gutter)*2, 1100px);
  margin-inline: auto;
  text-align: center;
  padding: 130px 0 80px;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--amber);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-transform: uppercase;
}
.eyebrow.accent { color: var(--crimson-bright); }
.eyebrow .ord { font-size: 9px; vertical-align: super; }
.eb-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 10px var(--amber-bright);
  display: inline-block;
  animation: pulse-amber 2s ease-in-out infinite;
}
@keyframes pulse-amber {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.82;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--cream);
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.4),
    0 0 60px rgba(0,0,0,0.7),
    0 0 100px rgba(238, 47, 85, 0.18);
}
.hero-title .line { display: block; }
.hero-title .line-1 { color: var(--cream); }
.hero-title .line-2 {
  color: var(--crimson-bright);
  text-shadow:
    0 2px 0 rgba(0,0,0,0.4),
    0 0 40px rgba(238, 47, 85, 0.55),
    0 0 80px rgba(238, 47, 85, 0.3);
}

.hero-tag {
  max-width: 720px;
  margin: 32px auto 14px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--cream);
  font-weight: 500;
  font-family: var(--f-body);
}
.hero-tag em {
  font-style: italic;
  color: var(--amber);
  font-weight: 600;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-meta {
  margin: 60px auto 0;
  display: flex; gap: clamp(28px, 6vw, 80px);
  justify-content: center; flex-wrap: wrap;
  padding: 24px clamp(28px, 5vw, 64px);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(20, 8, 13, 0.7), rgba(20, 8, 13, 0.55));
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-top: 2px solid var(--crimson);
  border-bottom: 2px solid var(--amber);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  width: fit-content;
  position: relative;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--amber);
  line-height: 1;
  font-feature-settings: "tnum";
  text-shadow: 0 0 24px rgba(244, 168, 58, 0.4);
}
.meta-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 2px; height: 8px; background: var(--amber);
  border-radius: 1px; display: block;
  animation: cueFall 1.8s var(--ease) infinite;
}
@keyframes cueFall {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =======================  SECTIONS — generic  ======================= */
.band { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.band-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.band-head .eyebrow { margin-bottom: 18px; }
.band-head .lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.7;
}

.display, .display-xl {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  margin: 0 0 8px;
  color: var(--cream);
  text-transform: uppercase;
}
.display { font-size: clamp(38px, 5vw, 64px); }
.display-xl { font-size: clamp(48px, 7vw, 96px); font-weight: 900; }
.display em { font-style: italic; color: var(--amber); text-transform: lowercase; font-weight: 700; }
.display-xl em { font-style: italic; color: var(--crimson-bright); text-transform: lowercase; font-weight: 800; }

.lede { color: var(--text-muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.story-figure, .crowler-figure, .patio-figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.story-figure img, .crowler-figure img, .patio-figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.story-figure:hover img, .crowler-figure:hover img, .patio-figure:hover img {
  transform: scale(1.04);
}
.story-figure figcaption, .patio-figure figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 12px;
  background: rgba(10,3,9,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: inline-flex; align-items: center; gap: 10px;
}
.cap-num {
  color: var(--crimson-bright);
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: 0;
  font-size: 14px;
}

/* =======================  TAP WALL (Untappd embed)  ======================= */
.band-tapwall {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-near) 100%);
  position: relative;
}
.band-tapwall::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--crimson) 30%, var(--amber) 70%, transparent 100%);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--crimson-bright);
  box-shadow: 0 0 12px var(--crimson-bright);
  display: inline-block;
  animation: pulse-amber 1.5s ease-in-out infinite;
  margin-right: 4px;
}
/* ----- Tap Board (custom card grid in our brand) ----- */
.tap-board {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.tap-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(31,15,21,0.95) 0%, rgba(20,8,13,0.95) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--crimson);
  border-radius: 8px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.tap-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(238,47,85,0.10) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.tap-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  border-left-color: var(--crimson-bright);
  box-shadow: var(--shadow-1), 0 0 30px -10px rgba(238,47,85,0.35);
}
.tap-card:hover::before { opacity: 1; }
.tap-card.tc-feature {
  border-left-color: var(--amber);
  background:
    linear-gradient(180deg, rgba(56,25,42,0.95) 0%, rgba(31,15,21,0.95) 100%);
}
.tap-card.tc-feature:hover { border-left-color: var(--amber-bright); }

.tc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.tc-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--crimson-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(238, 47, 85, 0.35);
  position: relative;
}
.tc-num::before {
  content: "#";
  font-size: 0.55em;
  color: var(--text-quiet);
  vertical-align: super;
  margin-right: 1px;
  text-shadow: none;
  font-weight: 700;
}
.tc-price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--amber);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
}
.tc-pour {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-quiet);
  margin-left: 4px;
}
.tc-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.05;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}
.tc-style {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 10px;
  line-height: 1.4;
}
.tc-mid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.tc-brewery {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.tc-loc {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--text-quiet);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.tc-abv {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--amber);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  font-feature-settings: "tnum";
}
.tc-badge {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}
.tc-badge.tc-al,
.tc-badge.tc-local {
  color: var(--crimson-bright);
  border-color: var(--border-crimson);
  background: rgba(238, 47, 85, 0.06);
}
.tc-badge.tc-local {
  color: var(--amber);
  border-color: var(--border-strong);
  background: rgba(244, 168, 58, 0.10);
}
.tc-badge.tc-rare {
  color: var(--amber-bright);
  border-color: var(--border-strong);
  background: rgba(244, 168, 58, 0.08);
}

/* ----- Live tap CTA (replaces the iframe) ----- */
.tap-cta {
  margin: 60px auto 0;
  max-width: 1100px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 56px);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(200,32,60,0.14) 0%, rgba(244,168,58,0.06) 100%),
    var(--surface);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.tap-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(238,47,85,0.18), transparent 60%);
  pointer-events: none;
}
.tap-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.tap-cta-text { flex: 1 1 380px; }
.tap-cta-text .eyebrow { margin-bottom: 12px; }
.tap-cta-h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.tap-cta-h em {
  font-style: italic;
  color: var(--amber);
  text-transform: lowercase;
  font-weight: 700;
}
.tap-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
}
.tap-cta .btn { flex-shrink: 0; }

/* =======================  STORY  ======================= */
.band-story { background: var(--bg-near); }
.story-copy p { color: var(--text-muted); }
.story-copy p + p { margin-top: 18px; }
.story-sign {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-top: 32px;
}

/* =======================  CRIMSON CROWLER  ======================= */
.band-crowler {
  position: relative;
  background:
    radial-gradient(70% 60% at 90% 40%, rgba(200, 32, 60, 0.12) 0%, transparent 60%),
    radial-gradient(60% 50% at 10% 60%, rgba(244, 168, 58, 0.08) 0%, transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.crowler-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 80px,
      rgba(238, 47, 85, 0.025) 80px,
      rgba(238, 47, 85, 0.025) 81px
    );
  z-index: 0;
}
.band-crowler .container { position: relative; z-index: 1; }
.crowler-copy .display-xl { margin-bottom: 16px; }
.crowler-copy .reg {
  font-family: var(--f-body);
  font-size: 0.32em;
  font-weight: 600;
  vertical-align: super;
  color: var(--amber);
  margin-left: 2px;
}
.crowler-copy .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.55;
}
.crowler-pts {
  list-style: none; padding: 0; margin: 0 0 28px;
  border-top: 1px solid var(--border);
}
.crowler-pts li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 16px;
  display: flex; gap: 14px;
  align-items: baseline;
}
.crowler-pts li strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-width: 90px;
  flex-shrink: 0;
}
.crowler-cta {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--crimson-bright);
}
.crowler-cta a {
  color: var(--amber);
  margin-left: 8px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.crowler-figure {
  aspect-ratio: 4/3;
  border-radius: 8px;
  position: relative;
}
.crowler-figure::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244,168,58,0.2), 0 0 80px -20px rgba(238,47,85,0.45);
}

.link-arrow {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 17px;
  color: var(--amber);
  display: inline-flex; gap: 10px; align-items: baseline;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* =======================  PATIO  ======================= */
.band-patio { background: var(--bg-near); }
.patio-copy p { color: var(--text-muted); margin: 0 0 18px; }
.patio-copy .display { margin-bottom: 24px; }

/* =======================  ARCADE  ======================= */
.band-arcade {
  position: relative;
  isolation: isolate;
  padding: clamp(120px, 14vw, 200px) 0;
  overflow: hidden;
}
.arcade-bg { position: absolute; inset: 0; z-index: -2; }
.arcade-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15) contrast(1.1);
}
.arcade-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,3,9,0.96) 0%, rgba(10,3,9,0.55) 55%, rgba(10,3,9,0.25) 100%),
    radial-gradient(80% 60% at 25% 50%, rgba(238, 47, 85, 0.18) 0%, transparent 60%);
}
.arcade-card {
  max-width: 600px;
  background: rgba(20,8,13,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-crimson);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-2), 0 0 0 1px rgba(238,47,85,0.1);
  position: relative;
}
.arcade-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(238,47,85,0.04), transparent 50%);
}
.arcade-card p { color: var(--text-muted); margin: 18px 0 0; line-height: 1.65; }
.arcade-card .display-xl { margin-bottom: 8px; }

.arcade-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
.arcade-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--cream);
  font-weight: 500;
}
.al-num {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--crimson-bright);
  background: rgba(238, 47, 85, 0.12);
  border: 1px solid var(--border-crimson);
  padding: 4px 8px;
  border-radius: 3px;
  min-width: 48px;
  text-align: center;
  text-shadow: 0 0 8px rgba(238, 47, 85, 0.5);
}

/* =======================  VISIT  ======================= */
.band-visit {
  background: linear-gradient(180deg, var(--bg-near) 0%, var(--bg-deep) 100%);
}
.visit-info .display { margin-top: 8px; }
.visit-info .display .ord { font-size: 0.5em; vertical-align: super; color: var(--amber); }
.visit-sub { color: var(--text-muted); margin: 18px 0 32px; max-width: 480px; }
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--crimson);
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.hours-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  text-align: left;
  font-size: 15px;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { color: var(--text-muted); }
.hours-table td { color: var(--cream); text-align: right; font-feature-settings: "tnum"; }
.hours-status {
  margin: 14px 0 0;
  font-size: 13px; color: var(--amber);
  font-style: italic;
  font-family: var(--f-body);
}

.contact-row {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.contact-pill {
  display: inline-flex; flex-direction: column;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--cream);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.contact-pill:hover {
  border-color: var(--amber);
  color: var(--cream);
  background: rgba(244, 168, 58, 0.06);
  transform: translateY(-1px);
}
.cp-lbl {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-quiet);
}
.cp-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.visit-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  filter: grayscale(40%) contrast(0.95) saturate(0.9);
  transition: filter .35s var(--ease);
}
.visit-map:hover { filter: none; }
.visit-map iframe { width: 100%; height: 100%; }

/* =======================  SISTER COVE  ======================= */
.band-sister {
  background: var(--bg-deep);
  padding: clamp(60px, 8vw, 100px) 0;
}
.sister-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(212, 168, 87, 0.10) 0%, rgba(176, 74, 47, 0.08) 100%),
    var(--surface);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.sister-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(244,168,58,0.12), transparent 60%);
  pointer-events: none;
}
.sister-card p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 18px auto 28px;
  line-height: 1.65;
  position: relative;
}
.sister-card strong { color: var(--amber-bright); font-weight: 700; }
.sister-card .btn { position: relative; }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: #050207;
  border-top: 2px solid var(--crimson);
  padding: 80px 0 24px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft-brand img { width: 56px; height: 56px; border-radius: 6px; }
.ft-tag { color: var(--text-muted); font-size: 14px; margin: 14px 0 0; max-width: 320px; line-height: 1.6; }
.ft-col h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ft-col p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0 0 8px; }
.ft-col a { color: var(--text-muted); }
.ft-col a:hover { color: var(--amber); }
.social { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.social a { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.social svg { color: var(--amber); }

.ft-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.ft-base p { font-size: 12px; color: var(--text-quiet); margin: 0; letter-spacing: 0.02em; }
.ft-credit a { color: var(--amber); }

/* =======================  REVEAL ANIMATIONS  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  LIGHTBOX  ======================= */
.lightbox {
  border: 0; padding: 0; margin: 0;
  background: rgba(10,3,9,0.96);
  backdrop-filter: blur(8px);
  width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh;
  display: none;
  place-items: center;
  z-index: 100;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(0,0,0,0.92); }
#lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 16px; right: 20px;
  background: transparent; border: 0; color: var(--cream);
  font-size: 40px; line-height: 1;
  cursor: pointer; padding: 4px 12px;
}

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn { display: none; }
  .hdr-cta .open-pill { padding: 6px 10px; font-size: 11px; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .arcade-list { grid-template-columns: 1fr; }
  .hero-meta { gap: 26px; padding: 18px 24px; margin-top: 50px; }
  .meta-num { font-size: 36px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 9px; }
  .open-pill .open-text { display: none; }
  .open-pill { padding: 6px; }
  .scroll-cue { display: none; }
  .ft-base { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: 12px 20px; font-size: 13px; }
  .hero-tag { font-size: 18px; }
  .crowler-pts li { flex-direction: column; gap: 4px; }
  .crowler-pts li strong { min-width: 0; }
  .display-xl { font-size: 48px; }
  .tap-embed iframe { height: 700px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .contact-pill { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .cp-val { font-size: 15px; }
  .hero-title { font-size: 80px; }
}
