:root {
  --c-cyan: #00e0ff;
  --c-gold-light: #fff5b3;
  --c-pink-light: #ffb3e8;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

* {
  margin: 0;
  box-sizing: border-box;
}

#main-content > section,
footer {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  padding: 1rem;
  text-align: center;
  background: #111;
  color: #fff;
}

/* Nav */
nav {
  height: 3rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: var(--c-cyan);
}

nav > div {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

nav > div > button {
  width: 2rem;
  height: 2rem;
  border: 2px solid #111;
  border-radius: .4rem;
  background: var(--c-cyan);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav > div > ul {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-cyan);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  z-index: 100;
}

nav > div > ul.nav-open {
  display: flex;
}

nav > div > a[href="/"] img {
  height: 2rem;
  width: auto;
}

/* Outline type */
.outline {
  color: white;
  position: relative;
  z-index: 0;
  isolation: isolate;
  letter-spacing: -0.125rem;
  text-transform: uppercase;
  font-weight: 900;
  paint-order: stroke fill;
}

nav .outline {
  font-family: "Nunito", sans-serif;
}

.outline::after {
  color: black;
  -webkit-text-stroke-width: .35rem;
  content: attr(data-text);
  position: absolute;
  top: .05rem;
  left: .05rem;
  z-index: -1;
  white-space: pre-wrap;
}

/* Desktop nav */
@media (min-width: 801px) {
  nav > div > button {
    display: none;
  }

  nav > div > ul {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    gap: .75rem;
  }
}

/* Hero */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.two-col h1 {
  grid-column: 1 / -1;
}

/* Location map poster */
#main-content > .location-hero {
  max-width: none;
  min-height: 24rem;
  padding: 2rem max(1rem, calc((100vw - 800px) / 2));
  display: flex;
  align-items: flex-start;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.location-hero__map,
.location-hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



.location-hero__wash {
  display: none;
}

/* Leaflet map */
.leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Grayscale tiles but not the pin */
.leaflet-map .leaflet-tile-pane {
  filter: grayscale(1) contrast(.85) brightness(1.12);
}

/* Custom cyan pin */
.custom-map-pin {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.custom-pin-dot {
  width: 2rem;
  height: 2rem;
  background: var(--c-cyan);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.custom-pin-dot::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: .5rem;
  background: rgba(0, 0, 0, .2);
  border-radius: 50%;
}

.location-hero__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.location-hero__content > .outline {
  margin-bottom: 1.25rem;
}

#main-content > section.location-details {
  position: relative;
  z-index: 3;
  max-width: none;
  padding: 0 max(1rem, calc((100vw - 800px) / 2));
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Event pages */
.event-hero {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

#main-content > .event-hero--mapped {
  max-width: none;
  min-height: 24rem;
  padding: 2rem max(1rem, calc((100vw - 800px) / 2));
  display: flex;
  align-items: flex-start;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.event-hero--mapped .leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.event-hero--mapped .leaflet-tile-pane {
  filter: grayscale(1) contrast(.85) brightness(1.12);
}

.event-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.event-hero__placeholder {
  width: 100%;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0,0,0,.15);
  background: #f5f5f5;
}

.event-hero__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.event-hero__content > .outline {
  margin-bottom: 1.25rem;
}

#main-content > section.event-details {
  position: relative;
  z-index: 3;
  max-width: none;
  padding: 0 max(1rem, calc((100vw - 800px) / 2));
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.event-details__card {
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, .94);
  border: 3px solid #111;
  border-radius: .9rem;
  box-shadow: .5rem .5rem 0 #111;
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 2;
  margin-top: -8rem;
  width: 100%;
}

.event-details__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}

.event-details__logo-wrap {
  width: min(11rem, 100%);
  aspect-ratio: 1;
  border: 2px solid #111;
  border-radius: .65rem;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
}

.event-details__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-details__monogram {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.event-details__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}

.event-details__item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.event-details__item span {
  font-family: "Nunito", sans-serif;
  font-size: .95rem;
}

.event-details__copy-text {
  margin-top: .75rem;
}

.event-details__copy-text p {
  margin: 0;
  line-height: 1.6;
}

/* Event hero variants */
.event-hero--image {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* Directions link on event map */
.event-hero__directions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.95);
  color: #111;
  border: 2px solid #111;
  border-radius: 100rem;
  padding: .45rem .9rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-decoration: none;
  transition: background .15s;
}

.event-hero__directions:hover {
  background: var(--c-cyan);
  color: #fff;
}

/* Date badges */
.event-badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 100rem;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .6rem;
}

.event-badge--today {
  background: var(--c-cyan);
  color: #fff;
}

.event-badge--weekend {
  background: var(--c-gold);
  color: #111;
}

/* Event actions (calendar + share) */
.event-actions {
  position: relative;
  padding: 2rem 0;
}

.event-actions__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 max(1rem, calc((100vw - 800px) / 2));
}

.event-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.event-actions__calendar {
  background: var(--c-cyan);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.event-actions__calendar:hover {
  background: #0aa;
}

.event-actions__share {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.event-actions__note {
  margin: .75rem 0 0;
  font-size: .85rem;
  color: #555;
}

.location-details__card {
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, .94);
  border: 3px solid #111;
  border-radius: .9rem;
  box-shadow: .5rem .5rem 0 #111;
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 2;
  margin-top: -8rem;
  width: 100%;
}

.location-inventory {
  padding-top: 2rem;
}

.location-details__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}

.location-details__logo-wrap {
  width: min(11rem, 100%);
  aspect-ratio: 1;
  border: 2px solid #111;
  border-radius: .65rem;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
}

.location-details__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-details__monogram {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.location-details__copy h2 {
  margin-bottom: .4rem;
}

.location-details__copy .pill-button {
  margin-top: .75rem;
}

/* Buttons */
.pill-button {
  display: inline-block;
  background: #111;
  color: #fff;
  border-radius: 100rem;
  padding: .4rem 1.25rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 1rem;
  transition: background .15s, color .15s;
}

.pill-button:hover {
  background: #333;
}

.pill-button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* Card grids */
.grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-section > h1,
.grid-section > h2 {
  grid-column: 1 / -1;
}

.grid-section > .pill-button {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 1rem;
}

.grid-section > a:not(.pill-button),
.grid-section > div:not(:last-child) {
  background: #fff;
  border: 2px solid #111;
  border-radius: .75rem;
  overflow: hidden;
}

.grid-section figure {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}

.grid-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-section figcaption {
  padding: .5rem;
  text-align: center;
  background: #111;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: .85rem;
}

/* Full-width section bands */
.outer-shape {
  position: relative;
  padding: 2rem 0;
}

.outer-shape::after {
  content: '';
  background-color: var(--section-bg);
  width: 200vw;
  height: 100%;
  top: 0;
  left: -50vw;
  position: absolute;
  z-index: -10;
}

/* Section colors */
.section-bg-gold { --section-bg: var(--c-gold-light); }
.section-bg-pink { --section-bg: var(--c-pink-light); }
.section-bg-cyan { --section-bg: var(--c-cyan); }
.section-bg-white { --section-bg: #fff; }
.section-bg-black { --section-bg: #111; }

/* Product pages */
.product-hero {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

#main-content > .product-hero {
  max-width: none;
  padding: 0;
  z-index: 1;
}

.product-hero__slides {
  position: relative;
  width: 100%;
  min-height: 24rem;
}

.product-hero__slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-hero__slide.active {
  opacity: 1;
}

.product-hero__placeholder {
  width: 100%;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0,0,0,.15);
  background: #f5f5f5;
}

.product-hero__content {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  max-width: 800px;
  margin-left: max(1rem, calc((100vw - 800px) / 2));
  z-index: 1;
}

.product-hero__content > .outline {
  margin-bottom: 1.25rem;
}

/* Product title */
.product-title {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}

/* Product details - image scroller */
.product-details {
  padding-bottom: 0;
}

.product-details__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.raised-card {
  width: 5rem;
  border-radius: 1rem;
  border: 3px solid black;
  position: relative;
  background: white;
  margin: 0 1rem 1rem 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
  }
  &:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    border-radius: 1rem;
    bottom: -.75rem;
    right: -.75rem;
    z-index: -1;
  }
}

/* Product media sections */
.product-media-grid {
  display: flex;
  gap: 1rem;
}

.product-media-panel {
  flex: 1;
  min-width: 0;
}

.product-media {
  display: grid;
  gap: 1rem;
}

.product-media__item {
  border: 2px solid #111;
  border-radius: .75rem;
  overflow: hidden;
  display: block;
}

.product-media--images .product-media__item {
  aspect-ratio: 16/10;
}

.product-media--images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media--videos {
  grid-template-columns: 1fr;
}

.product-media__video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
  transition: background .15s;
}

.product-media__video:hover {
  background: #f5f5f5;
}

.product-media__video-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
  border-radius: 50%;
  font-size: 1.5rem;
  background: #fff;
}

.product-media__video-label {
  font-size: .85rem;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

.product-media__video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: .75rem;
  border: 2px solid #111;
}

.product-media--pdfs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-media__pdf {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #eee;
  transition: background .15s;
}

.product-media__pdf:last-child {
  border-bottom: none;
}

.product-media__pdf:hover {
  background: none;
}

.product-media__pdf-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.product-media__pdf-label {
  font-size: .85rem;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

/* Product info section */
.product-info__body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-info h1.outline {
  margin-bottom: 1rem;
}

.product-info__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: .75rem;
}

.product-info__meta-item {
  font-size: .85rem;
  color: #555;
  font-family: "Montserrat", sans-serif;
}

.product-info p {
  margin: 0;
  line-height: 1.6;
}

/* Product price */
.product-info__price {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.product-info__price-pill {
  display: inline-block;
  background: #111;
  color: #fff;
  border-radius: 100rem;
  padding: .45rem 1.3rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
}

.product-info__price-note {
  font-size: .8rem;
  color: #666;
  font-family: "Montserrat", sans-serif;
}

/* Per-product detail cards */
.product-details-section {
  padding: 2rem 0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.detail-card {
  background: #fff;
  border: 2px solid #111;
  border-radius: .75rem;
  padding: 1.25rem;
  text-align: center;
  transition: transform .2s;
}

.detail-card:hover {
  transform: translateY(-2px);
}

.detail-card__label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #666;
  margin-bottom: .5rem;
}

.detail-card__value {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #111;
  line-height: 1.3;
}

/* How to Play section */
.product-how-to-play {
  padding: 2rem 0;
}

.how-to-play__text {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  padding: 0 1.5rem;
}

/* FAQ sections */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-question[aria-expanded="true"]::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer__text {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  padding-top: .75rem;
}

/* Mobile */
@media (max-width: 640px) {
  .two-col,
  .grid-section {
    grid-template-columns: 1fr;
  }

  #main-content > .location-hero {
    min-height: 20rem;
    padding: 1.5rem 1rem;
    align-items: flex-start;
  }

  #main-content > .product-hero {
    min-height: 20rem;
    padding: 1.5rem 1rem;
  }

  .location-hero__wash {
    background: linear-gradient(0deg, rgba(255, 245, 179, .95) 0%, rgba(255, 245, 179, .62) 62%, rgba(255, 255, 255, .15) 100%);
  }

  .location-details__card {
    grid-template-columns: 6rem 1fr;
    gap: .85rem;
    box-shadow: .3rem .3rem 0 #111;
    margin-top: -4rem;
  }

  .raised-card {
    width: 4rem;
  }

  .product-media--images .product-media__item {
    aspect-ratio: 4/3;
  }

  .product-media--videos,
  .product-media--pdfs {
    grid-template-columns: 1fr;
  }

  .product-media-grid {
    flex-direction: column;
  }

  .product-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
