:root {
  --red: #c51f1a;
  --red-hot: #e23a2e;
  --red-deep: #6e1210;
  --black: #161310;
  --asphalt: #1e1a16;
  --steel: #2a241e;
  --chrome: #b9b3aa;
  --cream: #e4d8c8;
  --gold: #b08968;
  --muted: rgba(228, 216, 200, 0.68);
  --line: rgba(228, 216, 200, 0.14);
  --font-display: "Teko", "Arial Narrow", sans-serif;
  --font-cond: "Teko", "Arial Narrow", sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1180px;
  --header-h: 4.6rem;
  --promo-h: 2.6rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--cream);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(197, 31, 26, 0.16), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(0, 0, 0, 0.35), transparent 50%),
    var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #1a1613;
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

a {
  color: #d7c4ae;
}

a:hover {
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  padding: 0.7rem 1rem;
  background: var(--cream);
  color: #1a1613;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: calc(var(--promo-h) + 0.5rem);
}

.promo-bar {
  position: relative;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-family: var(--font-cond);
  font-size: clamp(0.72rem, 2.4vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.promo-bar a {
  color: #fff;
  font-weight: 800;
}

.checker {
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      #fff 0 14px,
      #111 14px 28px
    );
}

.site-header {
  position: relative;
  z-index: 110;
  min-height: var(--header-h);
  background: rgba(26, 22, 19, 0.96);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 1.2rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.8rem;
  margin-left: 0.35rem;
}

.nav-socials a {
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  opacity: 0.88;
  border-bottom: 0 !important;
}

.nav-socials a:hover {
  opacity: 1;
}

.ig-scroll {
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0 0.8rem;
  cursor: pointer;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ig-scroll__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  will-change: transform;
}

.ig-scroll--marquee .ig-scroll__track {
  animation: ig-marquee var(--ig-duration, 80s) linear infinite;
}

.ig-scroll--marquee.is-paused .ig-scroll__track {
  animation-play-state: paused;
}

.ig-scroll--static {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  cursor: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

.ig-scroll a {
  flex: 0 0 min(70vw, 260px);
  aspect-ratio: 1;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.ig-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-scroll-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@keyframes ig-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-scroll--marquee .ig-scroll__track {
    animation: none;
  }
}

.finder-frame {
  width: 100%;
  min-height: 640px;
  background: #f4efe8;
  border: 1px solid var(--line);
}

.finder-frame iframe {
  display: block;
  width: 100%;
  min-height: 910px;
  border: 0;
}

.logo__word {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 0.9;
  font-weight: 600;
}

@media (max-width: 720px) {
  .logo__word { display: none; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
}

.logo__img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid var(--red);
}

.nav-cta {
  padding: 0.55rem 1.1rem !important;
  background: var(--red);
  color: #fff !important;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--red-hot);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
}

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.2rem 1.2rem;
    background: #0a0a0a;
    border-bottom: 3px solid var(--red);
    max-height: min(80vh, 640px);
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-cta {
    margin-top: 0.6rem;
    text-align: center;
    border-bottom: 0 !important;
  }
  .nav-group {
    border-bottom: 1px solid var(--line);
  }
  .nav-group__btn {
    width: 100%;
    text-align: left;
    padding: 0.95rem 0;
  }
  .nav-group__panel {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0 0 0.6rem 0.8rem;
  }
  .nav-group.is-open .nav-group__panel,
  .nav-group:focus-within .nav-group__panel {
    display: block;
  }
  .nav-group:hover .nav-group__panel {
    display: none;
  }
  .nav-group.is-open:hover .nav-group__panel,
  .nav-group.is-open .nav-group__panel {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2.6rem 1.2rem 3rem;
  background:
    linear-gradient(115deg, rgba(22,19,16,0.88) 0%, rgba(22,19,16,0.55) 48%, rgba(197,31,26,0.22) 100%),
    url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/video_poster-03.jpg") center / cover;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.82) contrast(0.92) brightness(0.52);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(22,19,16,0.82) 0%, rgba(22,19,16,0.42) 52%, rgba(197,31,26,0.18) 100%);
  pointer-events: none;
}

.hero::before {
  content: "93";
  position: absolute;
  right: 2%;
  top: 8%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12vw, 7.4rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 18ch;
  overflow-wrap: anywhere;
  text-shadow: 0 4px 0 #7a0500, 0 12px 32px rgba(0,0,0,0.5);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-lede {
  max-width: 34rem;
  margin: 1.1rem 0 1.6rem;
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  font-weight: 600;
  color: var(--cream);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.3rem;
  font-family: var(--font-cond);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid transparent;
  border-radius: 2px;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 0 var(--red-deep);
}

.btn-primary:hover {
  background: var(--red-hot);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: #111;
}

.btn-chrome {
  background: linear-gradient(#fff, var(--chrome));
  color: #111;
  border-color: #fff;
}

.btn-chrome:hover {
  color: #111;
  filter: brightness(1.05);
}

.section {
  padding: 3.4rem 1.2rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h1,
.section h2,
.page-title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold), #fff);
  border: 0;
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 1.2rem 2.6rem;
  background-color: var(--asphalt);
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--red);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.55), rgba(5,5,5,0.82));
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero--beer { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/beer_3.jpg"); }
.page-hero--about { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/brewer.jpg"); }
.page-hero--events { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/parties_right.jpg"); }
.page-hero--menus { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/spec_h.jpg"); }

.bays {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.bay {
  background: var(--steel);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.bay[data-location="elmhurst"] { border-top: 6px solid var(--red); }
.bay[data-location="stcharles"] { border-top: 6px solid var(--chrome); }

.bay__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1613;
  display: block;
  color: inherit;
}

.bay__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.bay__body {
  padding: 1.25rem 1.25rem 1.35rem;
}

.bay h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bay h3 a {
  color: inherit;
  text-decoration: none;
}

.bay address {
  font-style: normal;
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.bay address a {
  color: #fff;
  text-decoration: none;
}

.bay address a:hover {
  color: var(--gold);
}

.phone {
  margin: 0 0 1rem;
  font-family: var(--font-cond);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.phone a {
  color: var(--cream);
  text-decoration: none;
}

.hours {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.note {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chips a {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  border: 2px solid #fff;
}

.chips a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.page-hero .page-title,
.page-hero .section-intro {
  max-width: 40rem;
}

.poster {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 1.6rem;
  background-color: #120000;
  background-image:
    linear-gradient(115deg, rgba(8,0,0,0.82) 0%, rgba(8,0,0,0.42) 55%, rgba(225,6,0,0.28) 100%),
    url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/parties_right.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.16);
}

.poster > * {
  position: relative;
}

.poster .kicker {
  color: var(--gold);
}

.poster h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 0.9;
}

.grid-2,
.grid-3,
.board {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.occasion-card h3 {
  margin: 0 0 0.45rem;
}

.occasion-card p {
  margin: 0;
  color: var(--muted);
}

.inquiry {
  max-width: 760px;
}

.inquiry__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin: 0 0 1rem;
}

.inquiry label,
.inquiry .full {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.inquiry input,
.inquiry select,
.inquiry textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #111;
  background: #f4efe8;
  border: 2px solid transparent;
  border-radius: 2px;
  padding: 0.75rem 0.85rem;
}

.inquiry textarea {
  min-height: 8.5rem;
  resize: vertical;
  margin-bottom: 1.1rem;
}

.inquiry input:focus,
.inquiry select:focus,
.inquiry textarea:focus {
  outline: none;
  border-color: var(--red);
}

.hp,
.inquiry .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--steel);
}

.form-status--ok {
  border-color: #4a7a4a;
  color: #d8ead8;
}

.form-status--err {
  border-color: var(--red);
  color: #f3c7c4;
}

.card {
  background: var(--steel);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 1.2rem 1.25rem 1.35rem;
}

.card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: -1.2rem -1.25rem 1rem;
  background: #0a0a0a;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__media img.is-cutout {
  object-fit: contain;
  padding: 0.75rem;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  text-transform: uppercase;
}

.card .btn {
  margin-top: 0.85rem;
}

.card ul,
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card li,
.plain-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  background: #111;
  padding: 0.35rem;
  border: 2px solid var(--line);
}

.tabs [role="tab"] {
  flex: 1;
  padding: 0.9rem 0.6rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.tabs [role="tab"].is-active {
  background: var(--red);
  color: #fff;
}

.order-links,
.link-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.order-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--steel);
  border: 2px solid var(--line);
  border-left: 8px solid var(--red);
  text-decoration: none;
  color: #fff;
}

.order-link:hover {
  border-color: var(--gold);
  color: #fff;
  transform: translateX(6px);
}

.order-link__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-link__meta {
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.85rem;
}

.menu-block + .menu-block {
  margin-top: 2.4rem;
}

.menu-block h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.4rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h4 {
  margin: 0;
  font-family: var(--font-cond);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-item .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.reviews {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.review {
  margin: 0;
  padding: 1.4rem;
  background: var(--steel);
  border-top: 6px solid var(--red);
}

.review p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.review footer {
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.8rem;
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.split img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 3px;
  background: #000;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--gold);
}

.split .photo-stack img {
  height: auto;
}

.photo-stack {
  display: grid;
  gap: 0.65rem;
}

.photo-stack img {
  max-height: 280px;
}

@media (min-width: 640px) {
  .photo-stack {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .photo-stack img {
    max-height: 420px;
  }
}

.filmstrip img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

@media (max-width: 800px) {
  .filmstrip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .filmstrip img { height: 96px; }
}

.order-shell {
  max-width: 640px;
}

.site-footer {
  padding: 2.5rem 1.2rem 2rem;
  background: #000;
  border-top: 8px solid var(--red);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.9;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.footer-nav a,
.footer-social a {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.footer-note,
.footer-studio {
  margin: 0;
  color: rgba(246, 241, 231, 0.45);
  font-size: 0.8rem;
}

.footer-studio a {
  color: var(--gold);
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-note,
  .footer-studio {
    grid-column: 1 / -1;
  }
}

.bay[data-location="stcharles"] { border-top-color: var(--chrome); }

.bay__media {
  display: block;
  color: inherit;
}

.pour {
  position: absolute;
  right: 6%;
  bottom: 8%;
  z-index: 3;
  width: 92px;
  pointer-events: none;
}

.pour__glass {
  position: relative;
  height: 150px;
  border: 3px solid rgba(228, 216, 200, 0.55);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transform: perspective(400px) rotateX(8deg);
}

.pour__beer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(#f3c56a, #c47a1e);
  animation: fill-pint 4.5s ease-in-out infinite;
}

.pour__head {
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background: #f4efe6;
  border-radius: 40% 40% 0 0;
  animation: fill-head 4.5s ease-in-out infinite;
}

.pour__stream {
  position: absolute;
  top: -70px;
  left: 42%;
  width: 8px;
  height: 70px;
  background: linear-gradient(#f3c56a, #e0a43a);
  border-radius: 8px;
  animation: stream 4.5s ease-in-out infinite;
  transform-origin: top;
}

@keyframes fill-pint {
  0%, 8% { height: 0; }
  55%, 78% { height: 78%; }
  100% { height: 0; }
}
@keyframes fill-head {
  0%, 18% { bottom: 0; opacity: 0; }
  55%, 78% { bottom: 72%; opacity: 1; }
  100% { bottom: 0; opacity: 0; }
}
@keyframes stream {
  0%, 8% { transform: scaleY(0); opacity: 0; }
  18%, 52% { transform: scaleY(1); opacity: 1; }
  62%, 100% { transform: scaleY(0); opacity: 0; }
}

@media (max-width: 800px) {
  .pour { display: none; }
}

.tabs--scroll {
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}

.tabs--scroll [role="tab"] {
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  white-space: nowrap;
}

.beer-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.pint {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  background: var(--steel);
  border: 1px solid var(--line);
  transform-style: preserve-3d;
}

.pint:hover .can {
  transform: rotateY(-8deg) rotateX(4deg) translateY(-4px);
}

.can {
  width: 72px;
  height: 118px;
  margin: 0 auto;
  border-radius: 8px 8px 10px 10px / 22px 22px 10px 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 28%, rgba(0,0,0,0.28) 100%),
    var(--can, #8a2a1a);
  box-shadow: 8px 10px 0 rgba(0,0,0,0.28);
  transform: rotateY(-16deg) rotateX(6deg);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.can::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10%;
  right: 10%;
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.18);
}

.can__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.can__abv {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.pint h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pint__meta {
  margin: 0 0 0.45rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pint p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.pour-banner {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

@media (min-width: 800px) {
  .pour-banner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.pour-banner img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.map-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}

.facts {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  margin: 1.2rem 0 0;
}

.fact {
  padding: 0.9rem 1rem;
  background: var(--steel);
  border-left: 4px solid var(--red);
}

.fact strong {
  display: block;
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.faq details p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.page-hero--elmhurst { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/beer_3.jpg"); }
.page-hero--stcharles { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/location_93.jpg"); }
.page-hero--parties { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/parties_right.jpg"); }
.page-hero--pour { background-image: url("https://static.spotapps.co/website_images/ab_websites/472429_website_v1/beer_2.jpg"); }

.hazard {
  height: 12px;
  background: repeating-linear-gradient(-55deg, #14110e 0 14px, var(--red) 14px 28px);
}

.marquee {
  overflow: hidden;
  background: #120f0c;
  border-bottom: 1px solid var(--red);
  padding: 0.5rem 0;
}

.marquee__track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(228, 216, 200, 0.78);
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bays,
.grid-2,
.grid-3,
.beer-grid,
.reviews {
  perspective: 1100px;
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}

.photo-stack img {
  transform: perspective(900px) rotateY(-7deg);
  transition: transform 0.45s ease;
}

.photo-stack img:last-child {
  transform: perspective(900px) rotateY(9deg) translateY(6px);
}

.photo-stack:hover img:first-child {
  transform: perspective(900px) rotateY(-2deg) scale(1.03);
}

.filmstrip img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.filmstrip:hover img {
  filter: saturate(0.85);
}

.filmstrip img:hover {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08);
  z-index: 1;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.crumbs {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.crumbs a { color: var(--cream); }

.nav-group {
  position: relative;
}

.nav-group__btn {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: 0;
  padding: 0.35rem 0;
  cursor: pointer;
}

.nav-group__btn:hover,
.nav-group.is-open .nav-group__btn,
.nav-group:hover .nav-group__btn {
  color: #fff;
}

.nav-group__panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 11.5rem;
  padding: 0.45rem 0;
  background: #120f0d;
  border: 1px solid var(--line);
  z-index: 30;
}

.nav-group:hover .nav-group__panel,
.nav-group:focus-within .nav-group__panel,
.nav-group.is-open .nav-group__panel {
  display: block;
}

.nav-group__panel a {
  display: block;
  padding: 0.55rem 1rem !important;
  border-bottom: 0 !important;
  white-space: nowrap;
}

.event-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1rem 1.4rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.event-row:hover .event-row__name {
  color: #fff;
}

.event-row__date {
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.95rem;
}

.event-row__name {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.event-row__place {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-row__go {
  font-family: var(--font-cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--chrome);
}

.event-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 280px;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.event-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}

.event-banner__copy {
  padding: 1.6rem 1.7rem;
  background: #120f0d;
}

.venue-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.venue-pane {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.venue-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-pane__copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.6rem 1.7rem;
  background: linear-gradient(180deg, rgba(10,8,7,0.05) 20%, rgba(10,8,7,0.88) 100%);
}

.venue-pane h2 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.venue-pane p {
  margin: 0 0 0.9rem;
  max-width: 28rem;
  color: rgba(246,241,231,0.86);
}

.venue-pane__meta {
  font-size: 0.92rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-cond);
}

.find-band,
.food-band,
.signup {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.find-band img,
.food-band img {
  width: 100%;
  height: min(420px, 52vw);
  object-fit: cover;
  display: block;
}

.featured-beers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.featured-beer {
  text-decoration: none;
  color: inherit;
}

.featured-beer .can {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 0.7rem;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem 1.2rem;
  margin: 1.2rem 0 1.5rem;
}

.event-meta dt {
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

.event-meta dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
}

.signup {
  background: #120f0d;
  border: 1px solid var(--line);
  padding: 1.6rem 1.7rem;
  gap: 1.4rem;
}

.signup form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.signup input[type="email"] {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  background: #0a0a0a;
  border: 1px solid var(--line);
  color: var(--cream);
  font: inherit;
}

.hours-now {
  display: inline-block;
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.story-pull {
  max-width: 38rem;
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.86;
  margin: 0.1rem 0 0.5rem;
}

.hero-copy .hero-sub {
  font-family: var(--font-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: var(--gold);
  margin: 0 0 0.8rem;
}

.hero-copy .hero-lede {
  max-width: 28rem;
  font-size: 1.02rem;
}

.page-error {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 1.2rem 3rem;
}

@media (max-width: 900px) {
  .event-banner,
  .venue-split,
  .find-band,
  .food-band,
  .signup,
  .featured-beers {
    grid-template-columns: 1fr;
  }
  .event-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .event-row__go { display: none; }
  .venue-pane { min-height: 380px; }
}

@media (max-width: 640px) {
  .featured-beers {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video,
  .pour,
  .marquee__track { display: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
}

