/* Jerzes location template — layout aligned to Sports & Social Green Hills */

@font-face {
  font-family: "Gilroy ExtraBold";
  src: url("../assets/fonts/GilroyExtraBold.woff2") format("woff2"),
       url("../assets/fonts/GilroyExtraBold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #e03a22;
  --red-dark: #c4311c;
  --navy: #0e1828;
  --ink: #0e1828;
  --white: #ffffff;
  --muted: #5c6570;
  --header-h: 64px;
  --font-display: voltage, sans-serif;
  --font-ui: "Gilroy ExtraBold", "Helvetica Neue", Arial, sans-serif;
  --font-menu: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  overflow-x: hidden;
}
.page-home,
.page-about { padding-top: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; outline: 0; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; padding: 0; }
ul, ol, figure { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 20px; line-height: 1.65; font-weight: 800; }
@media (min-width: 768px) { p { font-size: 18px; } }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 80;
  background: var(--red); color: #fff; padding: 0.65rem 1rem;
}
.skip:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 1300px) { .container { max-width: 1250px; } }

h1, h2, h3, h4, h5 { margin: 0 0 0.5rem; font-weight: 500; line-height: 1.1; }
h1, h2 {
  font-family: var(--font-ui);
  font-weight: 800;
  text-transform: uppercase;
}
h1 { font-size: 120px; line-height: 0.875; }
h2 { font-size: 90px; line-height: 0.95; }
h2 span { color: var(--red); }
h3 {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
}
h4 { font-size: 40px; font-weight: 800; }
h5 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  h2 { font-size: 77px; }
  h5 { font-size: 38px; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 { font-size: 100px; }
  h2 { font-size: 56px; }
  h3 { font-size: 50px; }
  h5 { font-size: 34px; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 { font-size: 65px; line-height: 0.95; }
  h2 { font-size: 50px; }
  h3 { font-size: 44px; }
  h4 { font-size: 36px; }
  h5 { font-size: 30px; }
}
@media (max-width: 575.98px) {
  h1 { font-size: 37px; line-height: 1.1; }
  h2 { font-size: 35px; }
  h3 { font-size: 32px; }
  h4 { font-size: 30px; }
  h5 { font-size: 26px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  padding: 7px 25px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
@media (max-width: 767.98px) {
  .btn { min-width: 160px; font-size: 14px; }
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-secondary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: #04070c; border-color: #04070c; color: #fff; }
.icon { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Header — solid brand bar, logo left, hamburger overlay */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  min-height: var(--header-h);
  background: rgba(224, 58, 34, 0.96);
  color: #fff;
  border-bottom: 1px solid transparent;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease;
}
.site-header.is-over-hero:not(.is-scrolled) {
  background: rgba(224, 58, 34, 0.96);
  border-bottom-color: transparent;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  color: #fff;
  overflow: visible;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header.is-over-hero.is-watching:not(.is-scrolled) {
  background: rgba(224, 58, 34, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header.is-over-hero.is-scrolled {
  background: rgba(224, 58, 34, 0.96);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
body.nav-open .site-header,
body.nav-open .site-header.is-over-hero:not(.is-scrolled) {
  min-height: 100%;
  background: var(--red);
  color: #fff;
  border-bottom-color: transparent;
  box-shadow: none;
  overflow: visible;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 12px 30px;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) { .header__bar { padding: 12px 5px 12px 15px; } }
.logo { padding: 0; margin: 0; }
.logo img {
  height: 42px;
  width: auto;
  margin-top: 0;
  transition: filter 0.35s ease;
}
.site-header.is-over-hero:not(.is-scrolled) .logo img {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55));
}
@media (max-width: 767.98px) { .logo img { height: 34px; width: auto; max-width: 200px; } }
.header__location {
  margin-left: auto;
  margin-right: 8px;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.07px;
  text-transform: uppercase;
  min-width: auto;
  padding: 0;
}
@media (max-width: 767.98px) { .header__location { display: none; } }
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 56px;
  flex: 0 0 auto;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s, top 0.3s, background-color 0.3s;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; width: 100%; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(135deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(225deg); }

.nav-mobile {
  position: absolute;
  left: 0; right: 0; top: var(--header-h); bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px 80px;
  background: var(--red);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/brand/pattern-marks.svg") center / cover no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
body.nav-open .nav-mobile { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-mobile a {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255,255,255,0.35);
  max-width: 22rem;
  transition: color 0.15s ease;
}
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile__meta { display: none; }

.hero.hero--marks {
  background: var(--red);
}
.hero--marks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/brand/pattern-marks.svg") center / cover no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.hero--marks .hero__overlay {
  display: none;
}
.page-about .site-header.is-over-hero:not(.is-scrolled) {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #000 center / cover no-repeat;
}
@media (min-width: 992px) { .hero { height: 725px; } }
@media (min-width: 768px) {
  .hero { display: flex; align-items: center; }
}
@media (min-width: 768px) and (max-width: 991.98px) { .hero { height: 625px; } }
@media (min-width: 576px) and (max-width: 767.98px) { .hero { padding: 75px 0; min-height: 420px; display: flex; align-items: center; } }
@media (max-width: 575.98px) { .hero { padding: 50px 0; min-height: 380px; display: flex; align-items: center; } }

.hero__media, .hero-slideshow, .hero-video, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img, .hero-video video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.hero-slide.is-active img { animation: kenburns 8.5s var(--ease) forwards; }
@keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1) translateX(-1%); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.61;
  background-image: linear-gradient(269deg, rgba(0,0,0,0) 0%, #000 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 15px;
}
@media (min-width: 1300px) { .hero__content { max-width: 1250px; } }
.hero__content h1 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 72px;
  line-height: 0.9;
  max-width: none;
}
@media (min-width: 1200px) { .hero__content h1 { font-size: 80px; } }
@media (min-width: 768px) and (max-width: 991.98px) { .hero__content h1 { font-size: 52px; } }
@media (min-width: 576px) and (max-width: 767.98px) { .hero__content h1 { font-size: 42px; line-height: 0.95; } }
@media (max-width: 575.98px) { .hero__content h1 { font-size: 32px; line-height: 1; } }
.hero__script {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  margin: 0 0 10px;
  display: block;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 991.98px) { .hero__script { font-size: 40px; } }
@media (min-width: 576px) and (max-width: 767.98px) { .hero__script { font-size: 36px; } }
@media (max-width: 767.98px) { .hero__content h1 { margin-bottom: 6px; } .hero__script { font-size: 28px; margin-bottom: 8px; } }
.hero__kicker {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767.98px) { .hero__kicker { margin-bottom: 18px; } }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.hero__content .btn {
  margin: 0;
  min-width: 185px;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, 225px);
    gap: 10px;
    justify-content: start;
  }
  .hero__content .btn {
    min-width: 0;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .hero__actions {
    grid-template-columns: repeat(4, 210px);
  }
}

.hero__watch-hint {
  display: none;
  margin: 18px 0 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 768px) {
  .page-home .hero { cursor: pointer; }
  .hero__watch-hint { display: block; }
}
.hero.is-watching { cursor: default; }
.hero.is-watching .hero__content,
.hero.is-watching .hero__progress {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero.is-watching .hero__overlay { opacity: 0.28; }
.hero__controls {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-h) + 12px);
  right: 15px;
  display: none;
  gap: 8px;
}
.hero.is-watching .hero__controls { display: flex; }
.hero__restore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 7px 18px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__restore[hidden] { display: none; }
.hero__restore:hover { background: #fff; color: #000; }

.hero__progress { display: none; }
.hero .hero__carousel-nav {
  display: none;
}
@media (max-width: 767.98px) {
  .hero .hero__carousel-nav {
    display: inline-flex;
    bottom: 1rem;
    left: 15px;
    z-index: 4;
  }
}
.hero__hide-words {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0 12px;
  border: 0.0625rem solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.hero__hide-words:hover,
.hero__hide-words:focus-visible {
  background: #fff;
  color: #000;
}
.hero.is-photos .hero__content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero.is-photos .hero__overlay { opacity: 0.22; }

/* Location subnav — hidden until the header is scrolled */
.location-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 1029;
  background: #fff;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.location-nav.is-fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
@media (min-width: 992px) {
  #location-about.is-fixed { padding-top: calc(var(--header-h) + 64px + 100px); }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #location-about.is-fixed { padding-top: calc(var(--header-h) + 64px + 50px); }
}
.location-nav ul {
  display: flex; flex-wrap: wrap; justify-content: center;
}
.location-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s ease;
}
.location-nav a:hover, .location-nav a.is-active { color: var(--red); }
@media (min-width: 768px) and (max-width: 991.98px) { .location-nav a { padding: 10px 15px; } }
@media (max-width: 767.98px) {
  .location-nav { display: none; }
  #location-about.is-fixed { padding-top: 35px; }
}
.anchor {
  display: block;
  visibility: hidden;
  height: calc(var(--header-h) + 63px);
  margin-top: calc(0px - var(--header-h) - 63px);
}
@media (max-width: 767.98px) { .anchor { height: var(--header-h); margin-top: calc(0px - var(--header-h)); } }

/* About two-col */
.two-col {
  background: var(--navy);
  color: #fff;
  padding: 100px 0;
}
@media (min-width: 768px) and (max-width: 991.98px) { .two-col { padding: 50px 0; } }
@media (max-width: 767.98px) { .two-col { padding: 35px 0; } }
.two-col .split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 40px;
  align-items: start;
}
@media (min-width: 1300px) { .two-col .split { column-gap: 110px; } }
@media (max-width: 991.98px) {
  .two-col .split {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
}
.two-col p { text-align: left; }
.two-col .about-copy > p:last-of-type { margin-bottom: 50px; }
@media (min-width: 768px) and (max-width: 991.98px) {
  .two-col .about-copy > p:last-of-type { margin-bottom: 35px; }
}
@media (max-width: 767.98px) {
  .two-col .about-copy > p:last-of-type { margin-bottom: 25px; }
}
.two-col .about-copy .btn {
  margin-top: 50px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .two-col .about-copy .btn { margin-top: 35px; }
}
@media (max-width: 767.98px) {
  .two-col .about-copy .btn { margin-top: 25px; }
}
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.amenity-grid h5 {
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  text-align: left;
}
@media (min-width: 1200px) {
  .amenity-grid h5 { max-width: 220px; }
}
.about-carousel {
  position: relative;
  overflow: hidden;
  background: #111;
  height: 450px;
  min-width: 0;
}
.about-carousel img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
}
.about-carousel img.is-active { opacity: 1; }
.about-carousel__nav {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  pointer-events: none;
}
.about-carousel__arrow {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  margin: 0;
  padding: 0;
  border: 0.0625rem solid #fff;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.about-carousel__arrow::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 0.1rem solid currentColor;
  border-right: 0.1rem solid currentColor;
  box-sizing: border-box;
}
.about-carousel__arrow--next::before { transform: rotate(45deg); margin-left: -0.12rem; }
.about-carousel__arrow--prev::before { transform: rotate(-135deg); margin-right: -0.12rem; }
.about-carousel__arrow:hover { background: #fff; color: #000; }
.about-carousel__arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: -36px; position: relative; z-index: 2;
}
.carousel-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.carousel-dots button.is-active { background: #fff; }
@media (max-width: 991.98px) {
  .about-carousel {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/* Food & drink */
#location-menu { background: #fff; padding: 100px 0; color: var(--ink); }
@media (min-width: 768px) and (max-width: 991.98px) { #location-menu { padding: 50px 0; } }
@media (max-width: 767.98px) { #location-menu { padding: 35px 0; } }
.menu-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
  margin-bottom: 30px; flex-wrap: wrap;
}
.menu-head h3 { color: var(--ink); margin-bottom: 0; }
.menu-head h2 { margin-bottom: 0; color: var(--red); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0 40px; margin-bottom: 40px; }
.menu-tabs button {
  padding: 5px 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .menu-tabs {
    flex-wrap: nowrap;
    gap: 0 22px;
    margin-bottom: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs button { font-size: 16px; flex: 0 0 auto; }
}
.menu-tabs button.is-active,
.menu-tabs button:hover { color: var(--red); border-bottom-color: var(--red); }
.tab-pane { display: none; }
.tab-pane.is-active { display: block; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.menu-section { margin-bottom: 40px; }
.menu-section > h3 {
  color: var(--red);
  border-bottom: 2px solid var(--red);
  margin-bottom: 25px;
}
.ss-item { margin-bottom: 10px; font-family: var(--font-menu); }
.ss-item .item-title {
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.ss-item .item-description {
  font-weight: 400;
  color: #5c6570;
  margin: 0;
  font-size: 16px;
}
.ss-item .item-price { font-weight: 800; float: right; color: var(--ink); }
.menu-fee {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* Hours / inner-page marks hero */
.marks-band {
  background-color: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.marks-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/brand/pattern-marks.svg") center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.marks-band__inner {
  position: relative;
  z-index: 1;
  padding: 125px 0;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 991.98px) { .marks-band__inner { padding: 75px 0; } }
@media (max-width: 575.98px) { .marks-band__inner { padding: 35px 0; } }
.marks-band h2 { margin-bottom: 15px; color: #fff; }
.marks-band h3 { color: #f4e8c4; margin-bottom: 0; }
.marks-band p { margin-bottom: 0; }
.marks-band p + p { margin-top: 8px; }
.marks-band__hours {
  margin: 0 auto 22px;
  color: #f4e8c4;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .marks-band__hours { font-size: 18px; }
}
.marks-band a:not(.btn) {
  display: block;
  color: #fff;
  padding: 3px 0;
  transition: color 0.15s ease;
}
.marks-band a:not(.btn):hover { color: var(--red); }
.marks-band .btn {
  display: inline-flex;
  padding: 7px 25px;
  margin: 20px 8px 0;
  color: #fff;
}
.marks-band .btn:hover { color: #fff; }
.marks-band .btn-secondary {
  background: transparent;
  border-color: #fff;
}
.marks-band .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
#keno-hero .marks-band__inner { max-width: 46rem; }
#keno-hero p:first-of-type { font-weight: 400; }

.husker-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(20, 12, 11, 0.92), rgba(20, 12, 11, 0.96)),
    #140c0b;
  border-block: 4px solid #e03a22;
}
.husker-band::before,
.husker-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: url("../assets/brand/husker-rail.svg") center / 10px 100% repeat-y;
  pointer-events: none;
}
.husker-band::before { left: 0; }
.husker-band::after { right: 0; }
.husker-band__inner {
  position: relative;
  z-index: 1;
  padding: 100px 28px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 991.98px) { .husker-band__inner { padding: 72px 24px; } }
@media (max-width: 575.98px) { .husker-band__inner { padding: 40px 18px; } }
.husker-band h3 {
  color: #f4e8c4;
  margin-bottom: 6px;
}
.husker-band h2 {
  color: #fff;
  margin-bottom: 18px;
}
.husker-band__offer {
  margin: 0 auto 28px;
  max-width: 28em;
  color: #f4e8c4;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.husker-band .btn {
  display: inline-flex;
  padding: 7px 25px;
  color: #fff;
}
.husker-band .btn-secondary {
  background: transparent;
  border-color: #f4e8c4;
  color: #f4e8c4;
}
.husker-band .btn-secondary:hover {
  background: #f4e8c4;
  color: #140c0b;
  border-color: #f4e8c4;
}

/* Keno / plan-an-event analog */
.text-col {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.text-col .copy {
  padding: 125px 0;
  max-width: 43%;
}
.text-col .bg-image {
  position: absolute;
  top: 0; bottom: 0; right: 0; left: 50%;
  background: center / cover no-repeat;
}
@media (min-width: 992px) {
  #location-keno .bg-image {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: auto;
    aspect-ratio: 1800 / 1180;
    right: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 991.98px) {
  .text-col .copy {
    padding: 48px 0 24px;
    max-width: 100%;
  }
  .text-col .bg-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    aspect-ratio: 3 / 2;
    margin: 0 15px 40px;
    background-size: contain;
    background-color: #f3f3f3;
  }
  #location-keno .bg-image {
    aspect-ratio: 1800 / 1180;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
  }
  .text-col--full .bg-image {
    height: auto;
    aspect-ratio: auto;
    background: none;
    margin-bottom: 32px;
  }
  .text-col--full .bg-image img { height: auto; }
  .text-col--flip .bg-image {
    left: auto;
    right: auto;
  }
  .text-col--flip .copy { margin-left: 0; }
}
@media (max-width: 575.98px) {
  .text-col .copy { padding: 35px 0 20px; }
}
.text-col h2 { margin-bottom: 15px; }
.text-col .btn { margin: 16px 8px 0 0; }
.text-col--full .bg-image {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-col--full .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.text-col--flip .bg-image {
  left: 0;
  right: 50%;
}
.text-col--flip .copy { margin-left: auto; }
.text-col--dark {
  background: var(--navy);
  color: #fff;
}

/* Inner about hero */
.page-about .hero__content h1 {
  font-size: 120px;
  line-height: 0.875;
  max-width: 675px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .page-about .hero__content h1 { font-size: 100px; max-width: 560px; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .page-about .hero__content h1 { font-size: 65px; max-width: none; }
}
@media (max-width: 575.98px) {
  .page-about .hero__content h1 { font-size: 37px; line-height: 1.1; }
}

/* About — Food & Drink collage */
#about-menu { padding: 75px 0; }
@media (min-width: 768px) and (max-width: 991.98px) { #about-menu { padding: 50px 0; } }
@media (max-width: 767.98px) { #about-menu { padding: 35px 0; } }
.about-menu__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (min-width: 1300px) {
  .about-menu__split { grid-template-columns: minmax(0, 1fr) minmax(0, 44%); column-gap: 13%; }
}
#about-menu h2 { color: var(--red); margin-bottom: 15px; }
#about-menu h3 { margin-bottom: 0; }
#about-menu .btn { margin-top: 35px; }
.about-menu__photos {
  display: flex;
  flex-wrap: wrap;
}
.about-menu__photos .img-container {
  overflow: hidden;
  margin-top: 14px;
  margin-right: 3%;
  background: #111;
}
.about-menu__photos .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-menu__photos .img-container:first-of-type {
  width: 100%;
  margin: 0;
  height: 310px;
}
.about-menu__photos .img-container:nth-of-type(2) {
  width: 37.5%;
  height: 289px;
}
.about-menu__photos .img-container:nth-of-type(3) {
  width: 59.5%;
  margin-right: 0;
  height: 289px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-menu__photos .img-container:first-of-type { height: 250px; }
  .about-menu__photos .img-container:nth-of-type(2),
  .about-menu__photos .img-container:nth-of-type(3) { height: 200px; }
}
@media (max-width: 767.98px) {
  .about-menu__split { grid-template-columns: 1fr; }
  .about-menu__copy { margin-bottom: 25px; }
  #about-menu .btn { margin-top: 25px; }
  .about-menu__photos .img-container {
    width: 100%;
    margin: 15px 0 0;
    height: 250px;
  }
  .about-menu__photos .img-container:first-of-type { height: 250px; }
}

/* About — Keno / Get in the Action */
#about-keno {
  background-color: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#about-keno::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 295px;
  height: 295px;
  background: url("../assets/brand/pattern-marks.svg") right bottom / contain no-repeat;
  opacity: 0.11;
  pointer-events: none;
}
.about-keno__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1300px) { .about-keno__split { column-gap: 9%; } }
#about-keno h2 { color: var(--red); margin-bottom: 15px; }
#about-keno h3 { margin-bottom: 0; }
#about-keno .btn { margin-top: 35px; }
.about-keno__photo {
  height: 520px;
  overflow: hidden;
  background: #111;
  margin: 0;
}
.about-keno__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-keno__photo { height: 475px; }
  #about-keno::before { width: 265px; height: 265px; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-keno__photo { height: 380px; }
  #about-keno::before { width: 200px; height: 200px; }
}
@media (max-width: 767.98px) {
  .about-keno__split {
    grid-template-columns: 1fr;
    padding: 35px 0;
    gap: 25px;
  }
  .about-keno__photo { height: 250px; }
  #about-keno::before { display: none; }
  #about-keno .btn { margin-top: 25px; }
}

/* About — follow / gallery */
.about-follow { background: #fff; }
.about-follow .container {
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}
.about-follow h3 { margin-bottom: 20px; }
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .about-follow .container { padding: 35px 15px 24px; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .about-gallery img { height: 180px; }
}

.special-row .publication {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--red);
}

/* Daily specials */
.news-events { padding: 100px 0; background: #fff; }
@media (min-width: 768px) and (max-width: 991.98px) { .news-events { padding: 50px 0; } }
@media (max-width: 767.98px) { .news-events { padding: 35px 0; } }
.news-events > .container:first-of-type { margin-bottom: 50px; }
.news-events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.news-events-head h2 { margin-bottom: 0; }
.special-row {
  display: grid;
  grid-template-columns: 22% 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 45px 0;
  border-top: 1px solid var(--navy);
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) { .special-row { padding: 30px 0; } }
@media (max-width: 767.98px) {
  .special-row { grid-template-columns: 1fr; padding: 20px 0; }
  .special-row .btn { justify-self: start; }
}
.special-row .date {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--red);
}
.special-row .date p { margin: 0; font-size: inherit; font-weight: inherit; color: inherit; }
.special-row .title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

/* Footer */
.site-footer {
  background-image: linear-gradient(179deg, #1a0a08 0%, #0b0b0c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/brand/pattern-keno.webp") right center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: repeating-linear-gradient(
    90deg,
    #e03a22 0 3px,
    transparent 3px 6px,
    #e03a22 6px 10px,
    transparent 10px 12px,
    #b7bcc0 12px 14px
  );
  opacity: 0.7;
  pointer-events: none;
}
.footer-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 15px 28px;
}
@media (min-width: 1300px) { .footer-columns { max-width: 1250px; } }
.footer-columns img { width: 140px; height: auto; }
.footer-columns h4 {
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  font-size: 22px;
}
.footer-columns a {
  display: block;
  padding: 2px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.footer-columns a:hover { color: var(--red); }
.footer-columns > div:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  align-content: start;
}
.footer-columns > div:nth-child(2) h4 {
  grid-column: 1 / -1;
}
.footer-copyright {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px 28px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.footer-copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-copyright a:hover { color: var(--red); }
@media (max-width: 767.98px) {
  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 40px 20px 16px 36px;
  }
  .footer-columns img { width: 140px; }
  .footer-columns h4 { font-size: 20px; margin-bottom: 8px; }
  .footer-columns > div:nth-child(2) { display: none; }
  .footer-copyright { padding: 8px 20px 28px 36px; }
}

/* Inner pages */
.default-page { padding: 75px 0 100px; }
.default-page h1 { font-size: 50px; margin-bottom: 30px; }
.default-page h2 { color: var(--red); margin-bottom: 24px; }
@media (min-width: 768px) and (max-width: 991.98px) {
  .default-page { padding: 50px 0; }
  .default-page h1 { font-size: 40px; }
}
@media (max-width: 767.98px) {
  .default-page { padding: 35px 0; }
  .default-page h1 { font-size: 36px; margin-bottom: 25px; }
}
.chapter {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}
.chapter:nth-child(even) { grid-template-columns: 1.05fr 0.95fr; }
.chapter:nth-child(even) .chapter__copy { order: 2; }
.media { overflow: hidden; background: #111; }
.media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.body-copy { max-width: 38rem; }
.body-copy p + p { margin-top: 1em; }
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--red);
  font-weight: 400;
}
.band-navy { background: var(--navy); color: #fff; padding: 80px 0; }
.band-navy h2 { color: var(--red); }
.band-white { background: #fff; }

.menu-nav {
  position: sticky; top: var(--header-h); z-index: 20;
  background: #fff; border-bottom: 1px solid #eee;
}
.menu-nav__track {
  display: flex; overflow-x: auto; scrollbar-width: none;
  max-width: 1140px; margin: 0 auto; padding: 0 15px;
}
.menu-nav button {
  flex: 0 0 auto; padding: 16px 14px;
  text-transform: uppercase; letter-spacing: 1.14px; font-size: 14px; font-weight: 800;
  color: var(--ink); border-bottom: 2px solid transparent;
}
.menu-nav button.is-active, .menu-nav button:hover { color: var(--red); border-bottom-color: var(--red); }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.page-menu-section { padding: 48px 0 0; }
.page-menu-section .note { color: var(--muted); font-weight: 400; margin: 8px 0 20px; max-width: 46rem; }
.menu-specials-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-bottom: 20px;
}
.menu-specials-teaser article {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-family: var(--font-menu);
}
.menu-specials-teaser span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--red);
}
.menu-specials-teaser p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.page-menu-section--compact .btn { margin-top: 4px; }
.menu-item-row {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 12px;
  padding: 10px 0;
  font-family: var(--font-menu);
}
.menu-item-row h3 {
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink);
  border: 0;
  margin: 0;
}
.menu-item-row p { grid-column: 1 / -1; font-weight: 400; color: var(--muted); font-size: 14px; margin: 0; }
.price-block { font-weight: 800; font-size: 14px; }
.price-block small { display: block; color: var(--red); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.menu-disclaimer { color: var(--muted); font-size: 13px; font-weight: 400; padding: 48px 0 0; }

.default-page h3 { margin-bottom: 0; }
.prose { max-width: 42rem; }
.prose ul { margin: 0 0 24px; padding-left: 1.15rem; }
.prose li { margin-bottom: 8px; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  margin: 28px 0 0;
}
.info-grid h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.info-grid p {
  margin: 0 0 8px;
  font-weight: 400;
  color: var(--muted);
}
.info-grid a { color: var(--red); }
@media (max-width: 767.98px) {
  .info-grid { grid-template-columns: 1fr; }
}
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 767.98px) { .contact-split { grid-template-columns: 1fr; gap: 28px; } }
.contact-split a.btn { margin: 8px 8px 0 0; }
.contact-map {
  margin-top: 48px;
  background: #111;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
@media (max-width: 767.98px) {
  .contact-map iframe { height: 320px; }
}
.related {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}
.related a {
  display: inline-block;
  margin: 0 18px 8px 0;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
.specials-list .special-row { cursor: default; }
.legal-copy p, .legal-copy li { font-weight: 400; color: var(--muted); font-size: 15px; }

.careers-split { align-items: start; }
.careers-split .prose { max-width: none; }
.event-types {
  margin: 28px 0 8px;
  max-width: 52rem;
}
.event-types h5 { max-width: none; }
.event-spaces { padding-top: 12px; }
.event-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}
.event-photos figure { margin: 0; overflow: hidden; background: #111; }
.event-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .event-photos { grid-template-columns: 1fr; }
  .event-photos img { height: 200px; }
}
.contact-form select.contact-form__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230e1828' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.contact-form {
  max-width: 36rem;
}
.contact-form__lead {
  margin: 0 0 18px;
  font-weight: 400;
  color: var(--muted);
  font-size: 15px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
@media (max-width: 767.98px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__field { margin-bottom: 14px; }
.contact-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--red);
}
.contact-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
.contact-form__input,
.contact-form__textarea,
.wpcf7-form-control {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--navy);
  background: #fff;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 0;
}
.contact-form__textarea { min-height: 120px; resize: vertical; }
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 0;
  border-color: var(--red);
}
.contact-form__submit { margin-top: 8px; }
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.form-modal[hidden] { display: none !important; }
.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 40, 0.55);
}
.form-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 32px 28px 28px;
  background: #fff;
  border-top: 4px solid var(--red);
  text-align: center;
}
.form-modal--error .form-modal__panel { border-top-color: var(--navy); }
.form-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
}
.form-modal__close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.form-modal__close:hover { color: var(--red); }
.form-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.form-modal--error .form-modal__eyebrow { color: var(--navy); }
.form-modal__title {
  margin: 0 0 12px;
  font-size: 28px;
  text-transform: uppercase;
}
.form-modal__message {
  margin: 0;
  font-weight: 400;
  color: var(--muted);
}
body.form-modal-open { overflow: hidden; }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(14, 24, 40, 0.55);
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__dialog {
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 32px 28px 28px;
  position: relative;
  max-height: 90vh;
  overflow: auto;
}
.modal__dialog h4 {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 28px;
}
.modal__dialog p { font-weight: 400; }
.modal__when {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 14px;
}
.modal__close {
  position: absolute; top: 12px; right: 16px;
  font-size: 28px; line-height: 1; color: var(--ink);
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .chapter, .chapter:nth-child(even) { grid-template-columns: 1fr; }
  .chapter:nth-child(even) .chapter__copy { order: 0; }
}
@media (max-width: 767.98px) {
  .two-col .split,
  .menu-cols,
  .menu-list,
  .menu-specials-teaser,
  .amenity-grid { grid-template-columns: 1fr; }
  .menu-specials-teaser article { grid-template-columns: 1fr; gap: 2px; }
  .page-home .two-col .split > .about-copy {
    order: 1;
    display: flex;
    flex-direction: column;
  }
  .page-home .two-col .about-copy > .about-head { order: 0; }
  .page-home .two-col .about-copy > .amenity-grid { order: 1; }
  .page-home .two-col .about-copy > p { order: 2; }
  .page-home .two-col .split > :last-child { order: 2; margin-top: 10px; }
  .menu-head .btn { margin-top: 8px; }
  .page-home .two-col .about-copy > p:last-of-type { margin-bottom: 25px; }
  .page-home .two-col .about-copy > .amenity-grid h5:last-child { margin-bottom: 30px; }
}
/* Practice keno cabinet */
.keno-how {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 56px;
}
.keno-how h2 { color: #fff; margin-bottom: 18px; }
.keno-how h3 { color: #f4e8c4; }
.keno-how__lede {
  max-width: 42rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}
.keno-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.keno-how__steps li {
  border: 1px solid rgba(244, 232, 196, 0.22);
  padding: 18px 18px 16px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}
.keno-how__steps span {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--red);
  margin-bottom: 6px;
}
.keno-how__disclaimer {
  margin: 22px 0 0;
  max-width: 46rem;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.keno-cabinet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  grid-template-areas:
    "marquee marquee"
    "call call"
    "board side"
    "controls controls"
    "status status";
  gap: 8px;
  background:
    radial-gradient(1200px 420px at 50% -10%, rgba(224, 58, 34, 0.16), transparent 55%),
    linear-gradient(180deg, #121c2e, #070d18);
  border: 3px solid #c9a227;
  box-shadow:
    0 0 0 1px #7a5c12,
    0 28px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 80px rgba(0, 0, 0, 0.28);
  padding: 10px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  align-items: stretch;
}
.keno-cabinet.is-drawing {
  box-shadow: 0 0 0 1px #7a5c12, 0 0 42px rgba(224, 58, 34, 0.35), inset 0 0 80px rgba(0, 0, 0, 0.28);
}
.keno-cabinet.is-drawing .keno-cell,
.keno-cabinet.is-drawing .keno-btn { pointer-events: none; }
.keno-cabinet__marquee {
  grid-area: marquee;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px 16px;
  align-items: end;
  background: linear-gradient(180deg, #e03a22, #9e2414);
  color: #fff;
  padding: 8px 12px;
}
.keno-cabinet__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1;
}
.keno-cabinet__demo,
.keno-meter {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.keno-meter strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.keno-call {
  grid-area: call;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  background: #050910;
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 8px 10px;
  min-width: 0;
}
.keno-call__now span {
  display: block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c9a227;
}
.keno-call__now strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  color: #fff8d6;
  text-shadow: 0 0 18px rgba(255, 214, 80, 0.55);
}
.keno-call__now strong.is-pulse { animation: keno-pulse 0.28s var(--ease); }
.keno-call__balls {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 4px;
}
.keno-ball {
  width: 100%;
  max-width: 38px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #161f30;
  border: 1px solid #2a3c5c;
  color: transparent;
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.keno-ball.is-on {
  color: #1a1400;
  background: radial-gradient(circle at 32% 28%, #fff6d2, #e8c547 42%, #b8860b);
  border-color: #f4e08a;
  box-shadow: 0 0 10px rgba(232, 197, 71, 0.45);
  animation: keno-pop 0.28s var(--ease);
}
.keno-ball.is-hit {
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #ffd0c4, #e03a22 46%, #8f1c10);
  border-color: #ff8a70;
  box-shadow: 0 0 12px rgba(224, 58, 34, 0.65);
}

.keno-board {
  grid-area: board;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr)) 4px repeat(4, minmax(0, 1fr));
  gap: 3px;
  background: #0a1220;
  padding: 6px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.keno-board__split {
  grid-column: 1 / -1;
  height: 4px;
  margin: 0;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
}
.keno-cell {
  aspect-ratio: auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, #1a2740, #0c1424);
  border: 1px solid #2a3c5c;
  color: #f4e8c4;
  font-size: clamp(10px, 1.15vw, 15px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .keno-cell:hover { border-color: #c9a227; color: #fff; }
  .keno-btn:hover:not(:disabled) { background: #24344f; color: #fff; }
  .keno-btn--play:hover:not(:disabled) { background: var(--red-dark); color: #fff; }
}
.keno-cell:focus-visible,
.keno-btn:focus-visible {
  outline: 2px solid #fff8d6;
  outline-offset: 2px;
}
.keno-cell.is-marked {
  background: radial-gradient(circle at 40% 28%, #ff6a4c, #c4311c);
  border-color: #ff8a70;
  color: #fff;
  box-shadow: 0 0 12px rgba(224, 58, 34, 0.5);
}
.keno-cell.is-drawn {
  background: radial-gradient(circle at 40% 28%, #fff0b0, #c9a227);
  border-color: #f4e08a;
  color: #1a1400;
}
.keno-cell.is-hit {
  background: radial-gradient(circle at 40% 28%, #fff4b0, #e03a22 58%);
  border-color: #ffe08a;
  color: #fff;
  box-shadow: 0 0 16px #ffd24a, 0 0 8px #e03a22;
}
.keno-cell.is-live { animation: keno-pop 0.28s var(--ease); }

.keno-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}
.keno-hud {
  background: #050910;
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  flex: 1;
  overflow: auto;
}
.keno-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-content: start;
  flex: 0 0 auto;
}
.keno-meters div {
  background: #10192a;
  padding: 8px 10px 6px;
}
.keno-meters span {
  display: block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c9a227;
}
.keno-meters strong {
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff8d6;
  text-shadow: 0 0 10px rgba(255, 214, 80, 0.35);
}
.keno-pay p {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a227;
  font-weight: 800;
}
.keno-pay ul { margin: 0; }
.keno-pay li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.keno-pay strong { color: #fff8d6; }
.keno-result {
  padding: 12px;
  background: #10192a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.keno-result h4 {
  font-size: 22px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.keno-result p { margin: 0; font-size: 14px; font-weight: 400; }
.keno-result.is-win {
  background: linear-gradient(180deg, #5a160e, #2a0c08);
  border-color: #c9a227;
  animation: keno-win 0.8s ease;
}

.keno-controls {
  grid-area: controls;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 0;
}
.keno-btn {
  min-width: 0;
  min-height: 40px;
  padding: 8px 14px;
  background: #1a2740;
  border: 1px solid #c9a227;
  color: #f4e8c4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 13px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.keno-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.keno-btn--play {
  background: var(--red);
  border-color: #ff8a70;
  color: #fff;
  min-width: 140px;
  margin-left: auto;
}
.keno-btn--ghost { border-style: dashed; }
.keno-live {
  grid-area: status;
  margin: 0;
  min-height: 1.4em;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes keno-pop {
  from { transform: scale(0.72); }
  to { transform: none; }
}
@keyframes keno-pulse {
  from { transform: scale(1.18); filter: brightness(1.4); }
  to { transform: none; filter: none; }
}
@keyframes keno-win {
  0%, 100% { box-shadow: none; }
  40% { box-shadow: 0 0 24px rgba(201, 162, 39, 0.55); }
}

@media (min-width: 992px) {
  .keno-how h2 { font-size: 52px; margin-bottom: 10px; }
  .keno-how h3 { font-size: 42px; }
  .keno-how__lede { margin-bottom: 14px; }
  .keno-how__steps { margin-bottom: 16px; }
  .keno-how__steps li { padding: 12px 14px; font-size: 14px; }
  .keno-how__steps span { font-size: 22px; margin-bottom: 2px; }
  .keno-cabinet {
    height: min(620px, calc(100dvh - var(--header-h) - 2.5rem));
  }
  .keno-how__disclaimer { margin-top: 14px; }
}
@media (max-width: 991.98px) {
  .keno-how { padding: 56px 0 64px; }
  .keno-how__steps { grid-template-columns: 1fr; }
  .keno-side { display: contents; }
  .keno-meters { grid-area: meters; }
  .keno-hud { grid-area: hud; overflow: visible; flex: none; }
  .keno-cabinet {
    height: auto;
    overflow: visible;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "marquee"
      "meters"
      "call"
      "controls"
      "board"
      "hud"
      "status";
  }
  .keno-cabinet__marquee { grid-template-columns: 1fr auto; }
  .keno-cabinet__demo { grid-column: 1 / -1; }
  .keno-call { grid-template-columns: 1fr; }
  .keno-call__balls { grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .keno-board {
    overflow: visible;
    grid-template-rows: none;
  }
  .keno-cell {
    aspect-ratio: 1;
    height: auto;
    font-size: clamp(10px, 2.6vw, 16px);
  }
  .keno-meters { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .keno-meters strong { font-size: 22px; }
  .keno-btn--play { margin-left: 0; }
}
@media (max-width: 767.98px) {
  .keno-how { padding: 40px 0 48px; }
  .keno-how .container { padding-left: 10px; padding-right: 10px; }
  .keno-how__lede,
  .keno-how__disclaimer { font-size: 15px; }
  .keno-how__steps li { padding: 14px; }
  .keno-cabinet {
    padding: 8px;
    border-width: 2px;
  }
  .keno-cabinet__marquee { padding: 8px 10px; }
  .keno-cabinet__brand { font-size: 26px; }
  .keno-meter strong { font-size: 22px; }
  .keno-call {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .keno-call__now {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .keno-call__now strong { font-size: 36px; }
  .keno-call__balls {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 3px;
  }
  .keno-ball { font-size: 9px; }
  .keno-board { padding: 5px; gap: 2px; }
  .keno-board__split { height: 4px; margin: 1px 0; }
  .keno-meters { gap: 4px; }
  .keno-meters div { padding: 6px 6px 5px; }
  .keno-meters span { font-size: 9px; letter-spacing: 0.8px; }
  .keno-meters strong { font-size: 18px; }
  .keno-pay ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
  .keno-controls {
    position: static;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .keno-btn {
    flex: 1 1 calc(50% - 8px);
    min-height: 46px;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 8px;
  }
  .keno-btn--play { flex: 1 1 100%; font-size: 15px; }
  .keno-btn--ghost { flex: 1 1 100%; }
  .keno-live { font-size: 12px; }
}
@media (max-width: 399px) {
  .keno-meters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .keno-call__balls { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* 2026 Football Pool */
.pool-page h2 { margin-bottom: 12px; }
.pool-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  margin: 8px 0 28px;
  border-bottom: 2px solid #eee;
}
.pool-nav a {
  padding: 10px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.pool-nav a:hover,
.pool-nav a.is-active { color: var(--red); border-bottom-color: var(--red); }
.pool-lead { max-width: 46rem; }
.pool-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 8px 0 28px;
}
.pool-cards article {
  background: var(--navy);
  color: #fff;
  padding: 22px 20px;
}
.pool-cards h5 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}
.pool-cards p { margin: 0 0 10px; font-size: 15px; }
.pool-hint { color: var(--muted); font-size: 14px; font-weight: 600; }
.pool-note {
  padding: 12px 14px;
  margin: 0 0 18px;
  background: #f4f5f6;
  font-size: 15px;
}
.pool-note--ok { background: #e8f6ec; }
.pool-note--warn { background: #fdecea; }
.pool-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.pool-form {
  display: grid;
  gap: 12px;
  max-width: 28rem;
}
.pool-form button { margin-top: 8px; margin-right: 8px; }
.pool-form-msg { margin: 0 0 12px; }
.pool-form-disclaimer {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  line-height: 1.45;
}
.pool-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pool-form input[type="text"],
.pool-form input[type="password"],
.pool-form input[type="email"],
.pool-form input:not([type]),
.pool-sheet input[type="number"],
.pool-toolbar select,
.pool-sheet select {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  font: inherit;
  font-weight: 700;
  background: #fff;
}
.pool-radio { display: flex; align-items: center; gap: 8px; text-transform: none; letter-spacing: 0; font-size: 16px; }
.pool-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 16px;
}
.pool-toolbar label { display: flex; align-items: center; gap: 8px; }
.pool-toolbar select { width: auto; min-width: 160px; }
.pool-sheet-wrap { overflow-x: auto; margin-bottom: 16px; }
.pool-sheet,
.pool-standings {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.pool-sheet th,
.pool-standings th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px;
  border-bottom: 2px solid var(--navy);
}
.pool-sheet td,
.pool-standings td {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.pool-kick { white-space: nowrap; color: var(--muted); font-size: 13px; font-weight: 700; }
.pool-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  background: #fff;
  text-align: left;
  font-weight: 800;
}
.pool-team span { color: var(--red); }
.pool-team.is-picked {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.pool-team.is-picked span { color: #fff; }
.pool-team.is-picked.is-hit,
.pool-sheet tr.is-hit .pool-team.is-picked {
  background: #1f8a4c;
  border-color: #1f8a4c;
  color: #fff;
}
.pool-team.is-picked.is-miss,
.pool-sheet tr.is-miss .pool-team.is-picked {
  background: #c4311c;
  border-color: #c4311c;
  color: #fff;
}
.pool-team.is-picked.is-push {
  background: #8a741c;
  border-color: #8a741c;
  color: #fff;
}
.pool-team:disabled { opacity: 0.7; cursor: default; }
.pool-sheet tr.is-locked { background: #fafafa; }
.pool-sheet tr.is-husker { background: #fff4f2; }
.pool-sheet tr.is-hit { background: #e8f7ee; }
.pool-sheet tr.is-miss { background: #fdecea; }
.pool-sheet tr.is-push { background: #f7f3e0; }
.pool-sheet tr.is-live { background: #fff8e8; }
.pool-sheet tr.is-husker td:first-child { font-weight: 800; color: var(--red); }
.pool-sheet select { min-width: 72px; width: auto; }
.pool-result { font-size: 13px; color: var(--muted); white-space: nowrap; }
.pool-result.is-hit { color: #1f8a4c; font-weight: 800; }
.pool-result.is-miss { color: #c4311c; font-weight: 800; }
.pool-result.is-push { color: #8a741c; font-weight: 800; }
.pool-result.is-live { color: #b15b00; font-weight: 800; }
.pool-standings td:first-child { font-weight: 800; color: var(--red); }
.pool-rules h4 { margin: 28px 0 8px; font-size: 28px; }
.pool-rules h5 { font-size: 24px; margin: 18px 0 8px; }
.pool-rules ul { list-style: disc; }
@media (max-width: 991.98px) {
  .pool-cards { grid-template-columns: 1fr; }
  .pool-auth { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
  .pool-sheet th:first-child,
  .pool-sheet td.pool-kick { display: none; }
}
.pool-standings tr.is-kicked td { color: var(--muted); text-decoration: line-through; }
.pool-standings td .btn { min-width: 0; padding: 4px 12px; font-size: 13px; letter-spacing: 1px; }

/* Homepage-style promo popup (pool sign-up) */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.promo-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.promo-popup[hidden] { display: none !important; }
.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 40, 0.72);
}
.promo-popup__card {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92vh, 920px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  outline: 0;
}
.promo-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.promo-popup__close:hover { background: #fff; color: var(--red); }
.promo-popup__close .icon { width: 20px; height: 20px; }
.promo-popup__media {
  position: relative;
  display: block;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--red);
  color: inherit;
  text-decoration: none;
}
.promo-popup__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/brand/pattern-marks.svg") center / cover no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.12;
  pointer-events: none;
}
.promo-popup__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 32px 26px;
  color: #fff;
  pointer-events: none;
}
.promo-popup__kicker {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: none;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}
.promo-popup__win {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: none;
}
.promo-popup__poster h3 {
  margin: 4px 0 14px;
  font-family: var(--font-ui);
  font-weight: 800;
  color: #f4e8c4;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.15;
  text-transform: none;
}
.promo-popup__badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 12px;
  background: #fff;
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 800;
}
.promo-popup__year {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}
.promo-popup__url {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 800;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-popup__body {
  padding: 22px 28px 26px;
}
.promo-popup__eyebrow {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.promo-popup__body h4 {
  margin: 0 0 12px;
  font-size: 28px;
  text-transform: uppercase;
}
.promo-popup__body > p {
  font-weight: 400;
  color: var(--ink);
}
.promo-popup__label {
  margin: 4px 0 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.promo-popup__how {
  margin: 0 0 20px;
  padding: 0 0 0 18px;
  list-style: disc;
}
.promo-popup__how li {
  margin: 0 0 8px;
  font-weight: 400;
  color: var(--muted);
}
.promo-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}
.promo-popup__actions .btn { min-width: 0; }
.promo-popup__aside {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e6e8eb;
  font-weight: 400;
  font-size: 15px;
  color: var(--muted);
}
body.promo-popup-open { overflow: hidden; }
@media (max-width: 575.98px) {
  .promo-popup { padding: 8px; align-items: flex-end; }
  .promo-popup__card { max-height: 94vh; }
  .promo-popup__media { aspect-ratio: 16 / 10; }
  .promo-popup__poster { padding: 18px 18px 16px; }
  .promo-popup__win { font-size: 36px; }
  .promo-popup__poster h3 { font-size: 22px; }
  .promo-popup__body { padding: 18px 18px 22px; }
  .promo-popup__body h4 { font-size: 24px; }
}
