/* ==========================================================================
   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);

  /* Height of .announce-bar, if present — kept in sync by js/main.js
     (syncAnnounceOffset) so the fixed header sits below it instead of
     overlapping it. Stays 0px when no announcement bar is rendered. */
  --announce-h: 0px;
}

@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; }

/* <picture> is an inline wrapper with auto height, so a percentage height on
   the <img> inside it resolves to auto and object-fit:cover never engages —
   the photo just sits at its natural aspect inside the sized box. Every
   fixed-ratio photo container on this page wraps its <img> in a <picture>
   for the WebP sources, so they all need the wrapper stretched. */
.hero-bg picture,
.arcade-bg picture,
.story-figure picture,
.crowler-figure picture,
.patio-figure picture,
.togo-figure picture,
.visit-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
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;
}

/* =======================  ANNOUNCEMENT BAR  =======================
   Rendered only when content.json's announcement.enabled is true (see
   <!-- content:announcement --> in index.html and js/content.js). Sits
   above the fixed header so it never overlaps it; adds no space at all
   when absent. */
.announce-bar {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, var(--crimson-deep), var(--crimson));
  border-bottom: 1px solid var(--border-crimson);
}
.announce-bar p {
  margin: 0;
  padding: 10px var(--gutter);
  text-align: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: var(--announce-h); 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);
  /* The hero is a photograph of the hand-painted "Loosa" script on the brick
     wall outside. It is pushed well down so it reads as texture and glow
     behind the LOOSA / BREWS wordmark rather than competing with it. */
  filter: saturate(1.02) contrast(1.04) brightness(0.38);
  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:
    /* Text scrim. The painted-brick plate is bright in the middle, exactly
       where the hero copy sits, so the centre needs darkening too — the
       edge vignette below only handles the frame. */
    radial-gradient(74% 54% at 50% 44%, rgba(10,3,9,0.76) 0%, rgba(10,3,9,0.48) 62%, rgba(10,3,9,0) 100%),
    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; }
.eyebrow .eb-text { text-align: center; }
.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);
  /* --text, not --text-muted: this sits directly on the lit part of the
     painted-brick plate, and the muted tone measured ~2.9:1 there. */
  color: var(--text);
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(10, 3, 9, 0.85);
}
.hero .eyebrow {
  color: var(--amber-bright);
  text-shadow: 0 1px 10px rgba(10, 3, 9, 0.9);
}
.hero-tag { text-shadow: 0 1px 12px rgba(10, 3, 9, 0.7); }

.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, .togo-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, .togo-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, .togo-figure:hover img {
  transform: scale(1.04);
}
.story-figure figcaption, .patio-figure figcaption,
.togo-figure figcaption, .visit-photo 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-meta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px;
  margin: -12px 0 28px;
}
.crowler-meta .crowler-price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--amber-bright);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
}
.crowler-meta .crowler-blurb {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.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: 16/10;
  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%; }

/* =======================  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); }

/* =======================  TAP WALL BAND (full-bleed strip)  =======================
   Brad's 2500x625 shot of the whole 63-line tap wall, run edge to edge at
   the top of the tap-board band. No 100vw trick needed: .band is already
   full width, so this just sits outside .container and eats the band's own
   top padding. */
.taps-band {
  position: relative;
  margin: calc(-1 * clamp(80px, 10vw, 140px)) 0 clamp(52px, 6vw, 88px);
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}
.taps-band img {
  width: 100%;
  height: clamp(120px, 15vw, 250px);
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.04) contrast(1.04) brightness(0.88);
}
.taps-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 3, 9, 0.82) 0%,
    rgba(10, 3, 9, 0.10) 34%,
    rgba(10, 3, 9, 0.10) 62%,
    rgba(10, 3, 9, 0.92) 100%);
}

/* =======================  LIVE TAP LIST (click-to-load embed)  =======================
   The Untappd embed is a cream-background SPA we cannot restyle cross-origin,
   so it is never auto-loaded: the button injects the iframe on click, inside
   a dark frame, with no layout shift before that. A plain link to the public
   Untappd page is always present as the fallback. */
.tap-live-actions {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.tap-live-actions .btn svg { transition: transform .3s var(--ease); }
.tap-live-actions .btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.tap-live-fallback {
  margin: 0;
  font-size: 13px;
  color: var(--text-quiet);
  letter-spacing: 0.01em;
}
.tap-live-fallback a { color: var(--amber); font-weight: 600; }
.tap-live-panel {
  position: relative;
  margin-top: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-1);
}
.tap-live-panel[hidden] { display: none; }
.tap-live-head {
  margin: 0;
  padding: 10px 16px;
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(90deg, rgba(200,32,60,0.16), transparent 70%), var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.tap-live-panel iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #f6ead0;
}

/* =======================  PHOTO GRIDS  =======================
   Shared grid for the arcade, patio and bottle-shop photo groups. One aspect
   ratio (3:2) per group, hairline frames, caption chip bottom-left — the same
   treatment .story-figure/.patio-figure already use, at tile scale. */
.photo-grid {
  list-style: none; padding: 0;
  margin: clamp(32px, 4vw, 52px) 0 0;
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
}
.photo-grid-2 { grid-template-columns: repeat(2, 1fr); }
.photo-grid-3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid-4 { grid-template-columns: repeat(4, 1fr); }

.g-tile {
  display: block; position: relative;
  width: 100%; padding: 0; margin: 0;
  appearance: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.g-tile picture { display: block; }
.g-tile img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  filter: saturate(1.02) brightness(0.9);
  transition: transform .9s var(--ease), filter .35s var(--ease);
}
.g-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.g-tile:hover img { transform: scale(1.05); filter: none; }
.g-tile:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.g-cap {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream);
  padding: 6px 10px;
  background: rgba(10, 3, 9, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
}

/* =======================  BEER & WINE TO GO  ======================= */
.band-togo {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-near) 100%);
  position: relative;
}
.band-togo::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--amber) 35%, var(--crimson) 75%, transparent 100%);
  opacity: 0.5;
}
.togo-copy .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text);
  margin: 18px 0 28px;
  line-height: 1.55;
}
.togo-pts {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border);
}
.togo-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;
}
.togo-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;
}

/* =======================  ARCADE — feature line  ======================= */
.arcade-card .arcade-feature {
  margin: 16px 0 0;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--amber-bright);
}
.band-arcade .photo-grid { position: relative; }

/* =======================  VISIT — photo above the map  ======================= */
.visit-media { display: grid; gap: clamp(14px, 1.8vw, 20px); }
.visit-photo {
  position: relative; margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-2);
}
.visit-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.visit-photo:hover img { transform: scale(1.04); }
.contact-intro {
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}
.contact-intro + .contact-row { margin-top: 14px; }

/* =======================  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: 1200px) {
  .photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@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; }
  .togo-pts li { flex-direction: column; gap: 4px; }
  .togo-pts li strong { min-width: 0; }
  .tap-live-actions { width: 100%; }
  .tap-live-panel iframe { height: 640px; }
  .taps-band img { height: clamp(100px, 26vw, 170px); }
  /* 3-up bottle-shop strip -> 2-up with the last tile as a deliberate banner,
     rather than a lone orphan tile in a 2-column grid. */
  .photo-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .photo-grid-3 > li:last-child { grid-column: 1 / -1; }
  .photo-grid-3 > li:last-child .g-tile img { aspect-ratio: 21 / 9; }
}

@media (max-width: 600px) {
  .photo-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .g-cap { font-size: 9px; letter-spacing: 0.14em; padding: 5px 8px; left: 8px; bottom: 8px; }
  .tap-live-panel iframe { height: 560px; }
  .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; }
}

/* =======================  ORGANIC COLLAGE GALLERIES  =======================
   Replaces the uniform tile rows: 12-col placements, mixed aspect ratios,
   slight tilts and deliberate overlaps. Markup + lightbox contract unchanged. */
.photo-grid.collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 0;
  align-items: start;
  padding-bottom: 2%;
}
.photo-grid.collage > li { position: relative; z-index: 1; min-width: 0; --tilt: 0deg; }
.photo-grid.collage > li:hover { z-index: 6; }
.photo-grid.collage .g-tile {
  border-radius: 8px;
  border-color: var(--border-strong);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
  transform: rotate(var(--tilt));
}
.photo-grid.collage .g-tile:hover { transform: rotate(var(--tilt)) translateY(-5px); }

/* Beer & Wine To Go — 3 photos: wine wall anchors, growler tucks in, sticker wall overlaps up */
.photo-grid-3.collage > li:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.photo-grid-3.collage > li:nth-child(1) img { aspect-ratio: 5 / 4; }
.photo-grid-3.collage > li:nth-child(2) { grid-column: 8 / 13; grid-row: 1; margin: 7% 0 0 -7%; z-index: 2; --tilt: 1.8deg; }
.photo-grid-3.collage > li:nth-child(2) img { aspect-ratio: 4 / 3; }
.photo-grid-3.collage > li:nth-child(3) { grid-column: 7 / 13; grid-row: 2; margin: -16% 2% 0 3%; z-index: 3; --tilt: -1.6deg; }
.photo-grid-3.collage > li:nth-child(3) img { aspect-ratio: 3 / 2; }

/* Patio — 2 photos: the dog leads, the string lights drop in over its shoulder */
.photo-grid-2.collage > li:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
.photo-grid-2.collage > li:nth-child(1) img { aspect-ratio: 4 / 3; }
.photo-grid-2.collage > li:nth-child(2) { grid-column: 7 / 13; grid-row: 1; margin: 14% 0 0 -9%; z-index: 2; --tilt: -2deg; }
.photo-grid-2.collage > li:nth-child(2) img { aspect-ratio: 4 / 3; }

/* Arcade — 4 photos: tall backroom anchor, neon sign, Golden Tee and the flippers cascade down the right */
.photo-grid-4.collage > li:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 4; }
.photo-grid-4.collage > li:nth-child(1) img { aspect-ratio: 4 / 5; }
.photo-grid-4.collage > li:nth-child(2) { grid-column: 7 / 13; grid-row: 1; margin: 5% 0 0 -5%; z-index: 2; --tilt: 1.9deg; }
.photo-grid-4.collage > li:nth-child(2) img { aspect-ratio: 3 / 2; }
.photo-grid-4.collage > li:nth-child(3) { grid-column: 6 / 11; grid-row: 2; margin: -6% 0 0 0; z-index: 3; --tilt: -1.5deg; }
.photo-grid-4.collage > li:nth-child(3) img { aspect-ratio: 3 / 2; }
.photo-grid-4.collage > li:nth-child(4) { grid-column: 9 / 13; grid-row: 3; margin: -16% 0 0 0; z-index: 4; --tilt: 1.2deg; }
.photo-grid-4.collage > li:nth-child(4) img { aspect-ratio: 4 / 3; }

@media (max-width: 860px) {
  .photo-grid.collage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding-bottom: 20px; }
  .photo-grid.collage > li { grid-column: auto !important; grid-row: auto !important; margin: 0 !important; }
  .photo-grid.collage > li:nth-child(even) { transform: translateY(18px); }
  .photo-grid.collage > li:nth-child(even) { --tilt: 1deg; }
  .photo-grid.collage > li:nth-child(odd) { --tilt: -0.8deg; }
  .photo-grid-3.collage > li:first-child, .photo-grid-4.collage > li:first-child { grid-column: 1 / -1 !important; --tilt: 0deg; }
  .photo-grid.collage img { aspect-ratio: 4 / 3 !important; }
  .photo-grid-4.collage > li:first-child img { aspect-ratio: 16 / 10 !important; }
  .photo-grid-4.collage > li:last-child { grid-column: 1 / -1 !important; transform: none; --tilt: 0.6deg; }
  .photo-grid-4.collage > li:last-child img { aspect-ratio: 16 / 9 !important; }
}
@media (prefers-reduced-motion: reduce) { .photo-grid.collage .g-tile { transform: none; } }

.crowler-spec {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: -6px 0 18px;
}

/* Trademark stays mixed-case: staff review 2026-09-16 ("capitalize the c's") — the italic lowercase motif is fine elsewhere. */
#crowler .display-xl em { text-transform: none; }

/* Crimson Crowler — 2 portrait photos: cans on the bar, then the seamer tucks in and up */
.photo-grid-2.collage.crowler-collage { margin-top: clamp(40px, 6vw, 80px); }
.photo-grid-2.collage.crowler-collage > li:nth-child(1) { grid-column: 3 / 7; grid-row: 1; --tilt: -1.4deg; }
.photo-grid-2.collage.crowler-collage > li:nth-child(1) img { aspect-ratio: 3 / 4; }
.photo-grid-2.collage.crowler-collage > li:nth-child(2) { grid-column: 6 / 11; grid-row: 1; margin: 12% 0 0 -8%; z-index: 2; --tilt: 2deg; }
.photo-grid-2.collage.crowler-collage > li:nth-child(2) img { aspect-ratio: 3 / 4; }
