.buy-page {
  background: var(--paper);
}

.locator {
  display: grid;
  grid-template-columns: minmax(17rem, 0.52fr) minmax(36rem, 1.48fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 5vw, 5.5rem);
}

.locator-intro h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3.8rem, 6.5vw, 7rem);
}

.locator-lede {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.purchase-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.purchase-links a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  padding: 0.7rem 1rem;
  color: var(--maroon-deep);
  border: 2px solid var(--maroon-deep);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.purchase-links a:hover,
.purchase-links a:focus-visible {
  color: white;
  background: var(--maroon-deep);
}

.locator-board {
  min-width: 0;
}

.city-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 2px solid var(--maroon-deep);
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.city-tabs button {
  min-height: 5rem;
  padding: 0.9rem 1.2rem;
  color: var(--maroon-deep);
  background: var(--cream);
  border: 0;
  cursor: pointer;
  text-align: left;
}

.city-tabs button + button {
  border-left: 1px solid var(--maroon-deep);
}

.city-tabs button[aria-selected="true"] {
  color: white;
  background: var(--maroon);
}

.city-tabs span,
.city-tabs small {
  display: block;
}

.city-tabs span {
  font-size: 1.2rem;
  font-weight: 900;
}

.city-tabs small {
  margin-top: 0.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.city-panel {
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--maroon-deep);
  border-radius: 0 0 1rem 1rem;
  box-shadow: 8px 8px 0 var(--brass);
  overflow: hidden;
}

.simple-map {
  position: relative;
  isolation: isolate;
  min-height: clamp(22rem, 37vw, 29rem);
  background: #e8e0cc;
  overflow: hidden;
}

.map-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #e8e0cc;
}

.amsterdam-map .leaflet-container {
  font-family: inherit;
}

.amsterdam-map .leaflet-tile-pane {
  filter: grayscale(1) sepia(0.1) saturate(0.35) contrast(0.72) brightness(1.16);
  opacity: 0.5;
}

.amsterdam-map .leaflet-control-zoom {
  border: 2px solid var(--maroon-deep);
  box-shadow: 3px 3px 0 var(--brass);
}

.amsterdam-map .leaflet-control-zoom a {
  color: var(--maroon-deep);
  background: var(--paper);
}

.amsterdam-map .leaflet-control-attribution {
  color: var(--maroon-deep);
  background: rgba(255, 250, 238, 0.9);
  font-size: 0.58rem;
}

.map-context-marker {
  width: max-content !important;
  height: auto !important;
  margin: 0 !important;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.map-context-marker span {
  display: block;
  color: rgba(90, 36, 48, 0.72);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 0 var(--paper), 1px 0 0 var(--paper), 0 -1px 0 var(--paper), -1px 0 0 var(--paper);
  text-transform: uppercase;
  white-space: nowrap;
}

.map-context-marker.is-water span {
  color: #416a86;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.map-context-marker.is-station span {
  padding: 0.18rem 0.35rem;
  color: white;
  background: var(--maroon-deep);
  border-radius: 0.2rem;
  text-shadow: none;
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-stop {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  color: var(--maroon-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  transform: translate(-50%, -50%);
}

.map-marker-logo {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.15rem;
  background: white;
  border: 3px solid white;
  border-radius: 0.55rem;
  box-shadow: 0 3px 0 var(--maroon-deep);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.map-marker-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-marker-logo-dark {
  background: #262626;
}

.map-stop strong {
  padding: 0.3rem 0.5rem;
  background: rgba(255, 250, 238, 0.94);
  border-radius: 0.25rem;
  box-shadow: 0 1px 4px rgba(53, 23, 31, 0.14);
  white-space: nowrap;
}

.map-stop:hover .map-marker-logo,
.map-stop:focus-visible .map-marker-logo,
.map-stop.is-active .map-marker-logo {
  border-color: var(--brass);
  box-shadow: 0 4px 0 var(--maroon-deep), 0 0 0 2px rgba(255, 250, 238, 0.88);
  transform: translateY(-2px);
}

.stop-craft {
  top: 78%;
  left: 31%;
}

.stop-bax {
  top: 57%;
  left: 37%;
}

.stop-zilt {
  top: 27%;
  left: 67%;
}

.map-place-cards {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  width: min(18rem, calc(100% - 2rem));
}

.map-place-card {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem;
  color: white;
  background: var(--maroon-deep);
  border: 2px solid var(--brass);
  border-radius: 0.65rem;
  box-shadow: 6px 6px 0 rgba(214, 171, 85, 0.78);
}

.map-place-card[hidden] {
  display: none;
}

.venue-logo {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  background: white;
  border-radius: 0.45rem;
  overflow: hidden;
}

.venue-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.venue-logo-dark {
  background: #262626;
}

.venue-area {
  margin: 0 0 0.1rem;
  color: var(--brass);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-place-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.map-place-card h3 + p {
  margin: 0.08rem 0 0.45rem;
  color: #eadbd4;
  font-size: 0.78rem;
}

.map-place-card a {
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration-color: var(--brass);
  text-underline-offset: 0.2rem;
  text-transform: uppercase;
}

.map-attribution {
  position: absolute;
  bottom: 0.35rem;
  left: 0.45rem;
  z-index: 3;
  padding: 0.2rem 0.35rem;
  color: var(--maroon-deep);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.58rem;
  text-decoration: none;
}

.availability-note {
  margin: 0;
  padding: 0.85rem 1.15rem;
  color: white;
  background: var(--maroon-deep);
  font-size: 0.78rem;
  text-align: center;
}

.arnhem-map-wrap {
  position: relative;
}

.arnhem-map {
  min-height: clamp(19rem, 32vw, 25rem);
}

.arnhem-map .map-lines {
  fill: none;
  stroke: rgba(90, 36, 48, 0.24);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.arnhem-map .map-lines .map-water {
  stroke: #4655bf;
  stroke-width: 18;
  opacity: 0.72;
}

.arnhem-map .map-city-name {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  color: rgba(90, 36, 48, 0.28);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.arnhem-callout {
  position: absolute;
  z-index: 500;
  top: 50%;
  left: 50%;
  width: min(27rem, calc(100% - 2rem));
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  color: white;
  background: rgba(53, 23, 31, 0.96);
  border: 2px solid var(--brass);
  border-radius: 0.8rem;
  box-shadow: 7px 7px 0 rgba(214, 171, 85, 0.82);
  transform: translate(-50%, -50%);
}

.arnhem-callout h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.arnhem-callout > p:not(.eyebrow) {
  margin-bottom: 1.5rem;
  color: #eadbd4;
}

.bottles {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(32rem, 1.22fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
  background: var(--brass);
}

.bottle-copy > h2,
.events-heading h2,
.trade-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
}

.bottle-lede,
.events-heading > p:last-child,
.trade-copy > p:not(.eyebrow) {
  max-width: 38rem;
  font-size: 1.05rem;
}

.uk-callout {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  color: white;
  background: var(--maroon-deep);
  border-radius: 0.85rem;
  box-shadow: 8px 8px 0 var(--maroon);
}

.uk-callout h3 {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.uk-callout > p:not(.eyebrow) {
  color: #eadbd4;
}

.uk-interest-form > label:first-child,
.consent-choice {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.uk-interest-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  margin: 0.45rem 0 0.8rem;
}

.uk-interest-row input {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  border: 2px solid white;
  border-radius: 999px;
  font: inherit;
}

.consent-choice {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.65rem;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.consent-choice input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--brass);
}

.uk-interest-form .form-status {
  color: white;
}

.bottle-order-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  border: 2px solid var(--maroon-deep);
  border-radius: 1rem;
  box-shadow: 10px 10px 0 var(--maroon-deep);
}

.bottle-order-panel h3 {
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.button-maroon {
  color: white;
  background: var(--maroon);
  border-color: var(--maroon-deep);
}

.events {
  display: grid;
  grid-template-columns: minmax(15rem, 0.48fr) minmax(38rem, 1.52fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  color: white;
  background: var(--maroon);
}

.events-heading > p:last-child {
  color: #eadbd4;
}

.event-agenda {
  color: var(--maroon-deep);
  background: var(--paper);
  border: 2px solid var(--maroon-deep);
  border-radius: 0.9rem;
  box-shadow: 7px 7px 0 var(--brass);
  overflow: hidden;
}

.agenda-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 1rem;
  color: white;
  background: var(--maroon-deep);
}

.agenda-month strong {
  font-size: 1rem;
}

.agenda-month span,
.agenda-meta,
.agenda-action {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.agenda-event {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.agenda-event-pegasus {
  background: #e6bd63;
}

.agenda-event time {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  align-content: center;
  color: white;
  background: var(--maroon);
  border-radius: 50%;
  line-height: 1;
}

.agenda-event time strong {
  font-size: 1.45rem;
}

.agenda-event time .agenda-date-range {
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.agenda-event time span {
  margin-top: 0.2rem;
  color: var(--brass);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-meta {
  display: flex;
  gap: 0.45rem 1rem;
  margin-bottom: 0.3rem;
  color: var(--maroon);
}

.agenda-meta span + span {
  color: #704f56;
}

.agenda-event-copy {
  min-width: 0;
}

.agenda-event-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.05;
}

.agenda-event-copy > p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
}

.agenda-logo {
  float: right;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 0 0.3rem 0.75rem;
  object-fit: contain;
}

.agenda-action {
  padding: 0.7rem 0.9rem;
  color: var(--maroon-deep);
  border: 2px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.agenda-action:hover,
.agenda-action:focus-visible {
  color: white;
  background: var(--maroon-deep);
}

.trade {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(32rem, 1.3fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
  background: var(--cream);
}

.trade-note {
  margin-top: 2rem;
  padding: 1rem 0 1rem 1.2rem;
  border-left: 3px solid var(--maroon);
  font-weight: 700;
}

.trade-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: white;
  background: var(--maroon-deep);
  border-radius: 1rem;
  box-shadow: 10px 10px 0 var(--brass);
}

.trade-form label,
.trade-form legend {
  color: white;
}

.trade-form .format-choice span {
  color: var(--maroon-deep);
  background: var(--paper);
}

.trade-form .format-choice input:checked + span {
  color: white;
  background: var(--maroon);
}

.trade-form .form-status {
  color: white;
}

@media (max-width: 1100px) {
  .locator,
  .bottles,
  .events,
  .trade {
    grid-template-columns: 1fr;
  }

  .locator-intro {
    max-width: 50rem;
  }
}

@media (max-width: 760px) {
  .locator {
    padding-top: 2.5rem;
  }

  .locator-intro h1 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .city-tabs button {
    min-height: 4.4rem;
    padding-inline: 0.85rem;
  }

  .city-tabs span {
    font-size: 1rem;
  }

  .simple-map {
    min-height: 28rem;
  }

  .map-place-cards {
    width: calc(100% - 2rem);
  }

  .arnhem-callout {
    width: calc(100% - 2rem);
  }

  .uk-interest-row {
    grid-template-columns: 1fr;
  }

  .uk-interest-row .button {
    width: 100%;
  }

  .agenda-event {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .agenda-event time {
    width: 3.8rem;
    height: 3.8rem;
  }

  .agenda-action {
    grid-column: 2;
    justify-self: start;
    padding: 0.55rem 0.75rem;
  }
}

@media (max-width: 520px) {
  .amsterdam-map {
    min-height: 28rem;
  }

  .amsterdam-map .map-canvas {
    height: 20.2rem;
    bottom: auto;
  }

  .map-stop {
    transform: translate(-50%, -50%);
  }

  .map-marker-logo {
    width: 2.8rem;
    height: 2.8rem;
  }

  .map-stop strong {
    position: absolute;
    top: 3.05rem;
    left: 0;
  }

  .map-context-marker.is-secondary {
    display: none;
  }

  .map-place-card {
    grid-template-columns: 3.6rem minmax(0, 1fr);
  }

  .venue-logo {
    width: 3.6rem;
    height: 3.6rem;
  }

  .amsterdam-map .leaflet-control-attribution {
    max-width: 76%;
    line-height: 1.2;
  }

  .agenda-meta {
    display: grid;
    gap: 0.2rem;
  }

  .agenda-logo {
    width: 2.8rem;
    height: 2.8rem;
  }
}
