/* ============= Venue picker modal ============= */
.venue-picker {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 48px);
  background: rgba(15, 9, 5, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s ease;
}
.venue-picker.is-open {
  display: flex;
  opacity: 1;
}
.venue-picker__panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: #FBFAF8;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 80px rgba(15, 9, 5, 0.35);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

/* Close X */
.venue-picker__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: 0;
  background: transparent;
  color: #1C1814;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
  z-index: 1;
}
.venue-picker__close:hover {
  background: rgba(28, 24, 20, 0.06);
}
.venue-picker__close:focus-visible {
  outline: 2px solid #85634D;
  outline-offset: 2px;
}

.venue-picker__head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.venue-picker__eyebrow {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6E655A;
  margin-bottom: 14px;
}
.venue-picker__title {
  font-family: 'Acapulco', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  color: #1C1814;
  letter-spacing: -0.005em;
}
.venue-picker__title .ital {
  font-style: italic;
  color: #85634D;
}
.venue-picker__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.venue-picker__card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(28, 24, 20, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.venue-picker__card:hover {
  transform: translateY(-2px);
  border-color: #85634D;
  box-shadow: 0 12px 32px rgba(15, 9, 5, 0.12);
}
.venue-picker__card.is-primary {
  border-width: 2px;
  border-color: #1C1814;
}
.venue-picker__card.is-primary:hover {
  border-color: #85634D;
}
.venue-picker__img {
  aspect-ratio: 4 / 3;
  background: #1a1410;
  overflow: hidden;
}
.venue-picker__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.venue-picker__body {
  padding: 18px 18px 22px;
}
.venue-picker__badge {
  display: inline-block;
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #85634D;
  margin-bottom: 8px;
}
.venue-picker__name {
  font-family: 'Acapulco', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  color: #1C1814;
  margin-bottom: 10px;
}
.venue-picker__meta {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #3A322B;
}
.venue-picker__meta .sub {
  display: block;
  color: #6E655A;
  font-size: 12px;
  margin-top: 2px;
}
.venue-picker__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #1C1814;
}
.venue-picker__cta::after {
  content: "→";
  transition: transform .25s ease;
}
.venue-picker__card:hover .venue-picker__cta::after {
  transform: translateX(4px);
}
.venue-picker__foot {
  text-align: center;
  margin-top: 24px;
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: 12px;
  color: #6E655A;
}

@media (max-width: 600px) {
  .venue-picker {
    padding: 16px;
    align-items: center;
  }
  .venue-picker__panel {
    padding: 20px;
    border-radius: 14px;
    max-height: calc(100vh - 32px);
  }
  .venue-picker__head {
    margin-bottom: 16px;
  }
  .venue-picker__eyebrow {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .venue-picker__title {
    font-size: 22px;
  }
  .venue-picker__cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* Cards become horizontal: small image left, content right */
  .venue-picker__card {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: stretch;
  }
  .venue-picker__img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 92px;
  }
  .venue-picker__body {
    padding: 12px 14px;
  }
  .venue-picker__badge {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
  }
  .venue-picker__name {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .venue-picker__meta {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .venue-picker__meta .sub {
    font-size: 10.5px;
    margin-top: 2px;
  }
  .venue-picker__cta {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .venue-picker__foot {
    margin-top: 14px;
    font-size: 11px;
  }
  .venue-picker__card.is-primary {
    border-width: 1px;
  }
}

/* Hide site scroll while modal is open */
body.venue-picker-open {
  overflow: hidden;
}

/* Footer venue-switch link */
.foot-venue-switch {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6E655A;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  transition: color .25s;
}
.foot-venue-switch:hover {
  color: #85634D;
}

/* ============================================================
   Language switcher: flag + code + chevron
   ============================================================ */
.lang-switch{
  display:inline-flex; align-items:center; gap:7px;
  padding:7px 10px;
  font-family: var(--sans, 'Inter Tight', sans-serif);
  font-size:11px; letter-spacing:.22em; text-transform:uppercase; font-weight:500;
  color:currentColor;
  text-decoration:none;
  border-radius:999px;
  opacity:.88;
  transition:opacity .25s, background-color .25s;
}
.lang-switch:hover{
  opacity:1;
  background:rgba(28,24,20,0.06);
}
.lang-switch .lang-flag{
  width:18px; height:12px;
  border-radius:2px;
  flex-shrink:0;
  display:block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  overflow:hidden;
}
.lang-switch .lang-chevron{
  width:10px; height:10px;
  flex-shrink:0;
  opacity:.55;
  transition:transform .25s, opacity .25s;
}
.lang-switch:hover .lang-chevron{
  opacity:.9;
  transform:translateY(1px);
}
