.inner-page {
  min-height: 100vh;
  background: #080808;
}

.page-header {
  position: sticky;
  top: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  min-height: 650px;
  padding: 148px 6vw 76px;
  background:
    radial-gradient(circle at 15% 35%, rgba(73, 200, 255, .13), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(255, 79, 163, .12), transparent 32%),
    #050505;
}

.page-hero-copy {
  z-index: 1;
  align-self: center;
  max-width: 720px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 26px;
  color: rgba(242, 234, 219, .54);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.breadcrumbs a { color: var(--blue); }

.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .86;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 30px 0 34px;
  color: rgba(242, 234, 219, .72);
  font-size: 1.16rem;
  line-height: 1.75;
}

.page-hero-media {
  align-self: stretch;
  min-height: 420px;
  margin-left: 5vw;
  padding: 12px;
  background: #0b0b0b;
  border: 1px solid rgba(73, 200, 255, .55);
  box-shadow: 10px 10px 0 #000, 0 0 34px rgba(73, 200, 255, .14);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-gallery {
  align-self: center;
  min-width: 0;
  min-height: 0;
  padding: 14px;
}

.event-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.event-gallery-stage > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.event-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--blue);
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font: 700 1.35rem/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease;
}

.event-gallery-arrow:hover,
.event-gallery-arrow:focus-visible {
  background: var(--blue);
  color: #050505;
}

.event-gallery-prev { left: 12px; }
.event-gallery-next { right: 12px; }

.event-gallery-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(73, 200, 255, .7);
  background: rgba(0, 0, 0, .82);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.event-gallery-thumbs {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 1px 1px 7px;
  scrollbar-color: var(--blue) #111;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.event-gallery-thumb {
  flex: 0 0 76px;
  height: 58px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(242, 234, 219, .24);
  background: #000;
  cursor: pointer;
  opacity: .6;
  scroll-snap-align: center;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.event-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-gallery-thumb:hover,
.event-gallery-thumb:focus-visible,
.event-gallery-thumb.is-active {
  border-color: var(--blue);
  opacity: 1;
}

.event-gallery-thumb.is-active { transform: translateY(-1px); }

.page-hero-gallery {
  align-self: center;
  min-width: 0;
  min-height: 0;
}

.page-hero-gallery .event-gallery-thumbs {
  justify-content: center;
}

.lottery-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
}

.lottery-showcase-copy {
  min-width: 0;
}

.lottery-gallery {
  width: 100%;
  max-width: 760px;
  margin: 0;
  scroll-margin-top: 120px;
  padding: 14px;
  background: #0b0b0b;
  border: 1px solid rgba(73, 200, 255, .55);
  box-shadow: 10px 10px 0 #000, 0 0 34px rgba(73, 200, 255, .14);
}

.lottery-gallery .event-gallery-thumbs {
  justify-content: center;
}

.page-section {
  padding: 96px 6vw;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.page-section-inner {
  max-width: 1380px;
  margin: 0 auto;
}

.page-section h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .9;
}

.page-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(242, 234, 219, .68);
  font-size: 1.1rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.feature-card {
  padding: 30px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .18);
}

.feature-card:nth-child(3n + 1) { border-color: rgba(73, 200, 255, .55); }
.feature-card:nth-child(3n + 2) { border-color: rgba(255, 79, 163, .55); }
.feature-card:nth-child(3n) { border-color: rgba(255, 193, 74, .55); }

.feature-card h3 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.feature-card p {
  margin: 0;
  color: rgba(242, 234, 219, .63);
  line-height: 1.65;
  font-size: 1.04rem;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 60px 6vw;
  background: var(--cream);
  color: var(--black);
}

.page-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -.055em;
  line-height: .95;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 70px;
  margin-top: 42px;
}

.seo-copy h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.seo-copy p {
  margin: 0;
  color: rgba(242, 234, 219, .64);
  line-height: 1.7;
}

.menu-page .page-hero { min-height: 560px; }

.menu-page-list {
  display: grid;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-group {
  --group-color: var(--blue);
  padding: clamp(24px, 4vw, 48px);
  background: #111;
  border: 1px solid color-mix(in srgb, var(--group-color) 55%, transparent);
  box-shadow: 8px 8px 0 #000;
}

.menu-group:nth-child(2) { --group-color: var(--pink); }
.menu-group:nth-child(3) { --group-color: var(--amber); }
.menu-group:nth-child(4) { --group-color: var(--green); }
.menu-group:nth-child(5) { --group-color: var(--purple); }
.menu-group:nth-child(6) { --group-color: var(--red); }

.menu-group > h2 {
  padding-bottom: 22px;
  border-bottom: 3px solid var(--group-color);
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.dish {
  border-bottom: 1px dashed rgba(242, 234, 219, .25);
}

.dish:last-child { border-bottom: 0; }

.dish summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.dish summary::-webkit-details-marker { display: none; }

.dish summary::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--group-color);
  border: 1px solid var(--group-color);
  font-size: 1.1rem;
}

.dish[open] summary::after { content: "−"; }

.dish h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.dish-price {
  color: var(--group-color);
  font-weight: 900;
  white-space: nowrap;
}

.dish-description {
  max-width: 800px;
  margin: -12px 46px 22px 0;
  color: rgba(242, 234, 219, .66);
  line-height: 1.65;
  font-size: 1.04rem;
}

.dish-photo {
  overflow: hidden;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-bottom: 26px;
  background: #090909;
  border: 1px solid color-mix(in srgb, var(--group-color) 55%, transparent);
}

.dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-photo.logo img {
  padding: 12%;
  object-fit: contain;
}

.event-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.event-page-card {
  min-height: 310px;
  padding: 32px;
  background: #111;
  border: 1px solid rgba(73, 200, 255, .48);
}

.event-page-card:nth-child(2) { border-color: rgba(255, 79, 163, .5); }
.event-page-card:nth-child(3) { border-color: rgba(255, 193, 74, .5); }
.event-page-card:nth-child(4) { border-color: rgba(185, 137, 255, .5); }

.event-page-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.event-page-card p {
  color: rgba(242, 234, 219, .68);
  line-height: 1.7;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.venue-gallery figure {
  margin: 0;
  background: #111;
  border: 1px solid rgba(73, 200, 255, .4);
}

.venue-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-gallery figcaption {
  padding: 16px;
  color: rgba(242, 234, 219, .66);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.visit-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  margin-top: 48px;
}

.contact-card {
  padding: 34px;
  color: var(--ink);
  background: var(--cream);
}

.contact-card h2 { font-size: clamp(2.8rem, 5vw, 5rem); }

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, .28);
}

.contact-list div {
  padding: 19px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .28);
}

.contact-list span {
  display: block;
  margin-bottom: 7px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.map-card,
.visit-hero-map {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: #111;
  border: 1px solid rgba(73, 200, 255, .5);
}

.map-card iframe,
.visit-hero-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(.82) contrast(1.04);
}

.logo-map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .5)) drop-shadow(0 0 9px rgba(73, 200, 255, .85));
  pointer-events: none;
  transform: translate(-50%, -70%);
}

.logo-marker-face {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 104px;
  height: 76px;
  padding: 7px;
  background: #080808;
  border: 3px solid #fff;
  border-radius: 15px;
  outline: 2px solid #49c8ff;
}

.logo-marker-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.logo-marker-point {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  margin: -15px auto 0;
  background: #080808;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  box-shadow: 2px 2px 0 #49c8ff;
  transform: rotate(45deg);
}

.visit-hero-map {
  padding: 0;
}

.visit-hero-map iframe {
  display: block;
}

.visit-info-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.map-directions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 17px;
  color: #fff;
  background: #080808;
  border: 1px solid var(--blue);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .3);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .page-hero,
  .visit-grid { grid-template-columns: 1fr; }
  .page-hero-media { margin: 40px 0 0; }
  .lottery-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .lottery-gallery {
    max-width: 760px;
    margin: 0 auto;
  }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 124px 20px 64px;
  }
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4rem);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .page-hero-media { min-height: 300px; margin-top: 30px; }
  .event-gallery {
    min-height: 0;
    padding: 9px;
  }
  .event-gallery-stage { aspect-ratio: 4 / 3; }
  .event-gallery-arrow {
    width: 44px;
    height: 44px;
  }
  .event-gallery-prev { left: 8px; }
  .event-gallery-next { right: 8px; }
  .event-gallery-count {
    right: 8px;
    bottom: 8px;
  }
  .event-gallery-thumb {
    flex-basis: 68px;
    height: 52px;
  }
  .page-hero-gallery .event-gallery-thumbs {
    justify-content: flex-start;
  }
  .lottery-gallery {
    margin: 0;
    padding: 9px;
  }
  .page-section { padding: 72px 20px; }
  .feature-grid,
  .event-page-grid,
  .venue-gallery,
  .seo-copy { grid-template-columns: 1fr; }
  .page-cta { align-items: stretch; flex-direction: column; padding: 48px 20px; }
  .page-cta-actions { display: grid; }
  .menu-group { padding: 24px 20px; }
  .dish summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: 28px;
  }
  .dish summary::after { grid-column: 2; grid-row: 1; }
  .dish-price { grid-column: 1; grid-row: 2; }
  .dish-description {
    margin-right: 0;
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .dish-photo { width: calc(100% + 40px); max-width: none; margin-left: -20px; margin-right: -20px; }
  .map-card,
  .map-card iframe { min-height: 420px; }
  .logo-map-marker { transform: translate(-50%, -68%) scale(.88); }
  .map-directions { right: 12px; bottom: 12px; left: 12px; text-align: center; }
}
