/* =========================================================================
   Bodega Cantina & Discoteca - VIP Birthday landing page
   Mobile first. Above-the-fold styles are inlined in index.html <head>;
   everything below the hero lives here.
   ========================================================================= */

/* ---------- shared tokens (mirrors the inlined block) ---------- */
:root{
  --ink:#0d0d0f;
  --surface:#141417;
  --surface-2:#1b1b1f;
  --line:#2b2b31;
  --purple:#793bd7;
  --purple-lt:#9b5cff;
  --purple-dk:#350066;
  --gold:#e8c87a;
  --text:#ece9f1;
  --muted:#a8a4b3;
  --white:#fff;
  --rad:14px;
  --head:'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  --body:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
}

/* subtle art-deco chevron texture, drawn in CSS so it costs zero requests */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  pointer-events:none;
  opacity:.5;
  background-color:var(--ink);
  background-image:
    repeating-linear-gradient(45deg,  rgba(88,120,120,.075) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-45deg, rgba(88,120,120,.075) 0 1px, transparent 1px 22px);
  background-size:62px 62px;
}

::selection{background:var(--purple);color:#fff}

.skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--purple);color:#fff;padding:12px 18px;border-radius:0 0 10px 0;
  font-family:var(--head);font-size:.85rem;text-decoration:none;
}
.skip:focus{left:0}

:where(a,button,input,select,textarea,summary,details):focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:6px;
}

@media(hover:hover){
  .btn:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(155,92,255,.5)}
}

.wrap--narrow{max-width:760px}

/* ---------- section shell ---------- */
.sec{padding:56px 0;position:relative}
.sec--tight{padding:56px 0 48px}
.sec--alt{background:var(--surface);border-block:1px solid var(--line)}
.sec__h{font-size:clamp(1.45rem,5.9vw,2.6rem);text-transform:uppercase;margin-bottom:.4em}
.sec__sub{color:var(--muted);max-width:58ch;margin:0 0 32px;font-size:1.02rem}
.midcta{margin-top:34px}
.midcta .btn{width:100%}

h2{font-size:clamp(1.45rem,5.9vw,2.6rem)}
h3{font-size:1.14rem;margin-bottom:.45em}
p{margin:0 0 1em}
p:last-child{margin-bottom:0}
strong{color:var(--white);font-weight:600}
em{font-style:normal;color:var(--gold)}

/* ---------- ticks (shared with hero) ---------- */
.ticks--stack{grid-template-columns:1fr!important;max-width:none!important;margin-inline:0!important;margin-top:22px}
.ticks--stack li{align-items:flex-start;font-size:.98rem;color:var(--muted);line-height:1.6}
.ticks--stack svg{margin-top:5px}

/* =========================================================================
   FORM
   ========================================================================= */
.sec--form{padding-top:8px;scroll-margin-top:76px}

.formcard{
  background:linear-gradient(168deg,#1d1626,var(--surface-2) 42%);
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px 20px 24px;
  box-shadow:0 24px 60px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  position:relative;
}
.formcard::after{
  content:"";position:absolute;inset:-1px;border-radius:21px;pointer-events:none;
  background:linear-gradient(160deg,rgba(155,92,255,.55),transparent 38%,rgba(232,200,122,.28));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;padding:1px;
}
.formcard__head{text-align:center;margin-bottom:22px}
.formcard__head h2{margin-bottom:.35em;font-size:clamp(1.35rem,5.6vw,2rem);text-transform:uppercase}
.formcard__head p{color:var(--muted);font-size:.97rem;margin:0 auto;max-width:42ch}

.field{margin-bottom:15px}
.field label{
  display:block;font-family:var(--head);font-size:.78rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;color:#cdc7da;margin-bottom:7px;
}
.field label span{color:var(--purple-lt)}

.lead-form input,
.lead-form select,
.lead-form textarea{
  width:100%;
  font-family:var(--body);
  font-size:16px; /* 16px stops iOS Safari zooming on focus */
  color:var(--white);
  background:rgba(255,255,255,.045);
  border:1px solid #3a3a44;
  border-radius:11px;
  padding:14px 15px;
  min-height:52px;
  transition:border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance:none;appearance:none;
}
.lead-form textarea{min-height:88px;resize:vertical;line-height:1.55}
.lead-form input::placeholder,
.lead-form textarea::placeholder{color:#77727f}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus{
  outline:none;border-color:var(--purple-lt);
  background:rgba(255,255,255,.07);
  box-shadow:0 0 0 3px rgba(155,92,255,.2);
}
.lead-form select{
  color:var(--white);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23a8a4b3'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 13px center;
  background-size:20px;
  padding-right:42px;
}
.lead-form select:invalid{color:#77727f}
.lead-form option{background:#1b1b1f;color:var(--white)}
.lead-form input[type=date]{color-scheme:dark}
.lead-form input[type=date]::-webkit-calendar-picker-indicator{filter:invert(.7);cursor:pointer}

.row2{display:grid;gap:0}

.lead-form .invalid input,
.lead-form .invalid select,
.lead-form .invalid textarea,
.lead-form input.invalid,
.lead-form select.invalid{border-color:#ff6b6b;box-shadow:0 0 0 3px rgba(255,107,107,.14)}
.err{margin:6px 0 0;font-size:.82rem;color:#ff8d8d;min-height:0}
.err:empty{display:none}

#leadSubmit{margin-top:8px;font-size:1.02rem}
#leadSubmit[disabled]{opacity:.62;cursor:progress}

.form-foot{margin:14px 0 0;font-size:.8rem;color:var(--muted);text-align:center;line-height:1.5}
.form-error{
  margin:14px 0 0;font-size:.9rem;color:#ff8d8d;text-align:center;
  background:rgba(255,107,107,.09);border:1px solid rgba(255,107,107,.3);
  border-radius:10px;padding:11px 13px;
}

/* honeypot, hidden from humans, visible to naive bots */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* =========================================================================
   CARDS
   ========================================================================= */
.cards{display:grid;gap:14px}
.card{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--rad);
  padding:22px 20px;
  transition:border-color .18s ease, transform .18s ease;
}
.card__ico{
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:12px;margin-bottom:14px;font-size:1.24rem;
  background:linear-gradient(150deg,rgba(155,92,255,.3),rgba(53,0,102,.5));
  border:1px solid rgba(155,92,255,.35);
}
.card h3{margin-bottom:.4em}
.card p{color:var(--muted);font-size:.96rem;margin:0}
@media(hover:hover){.card:hover{border-color:rgba(155,92,255,.5);transform:translateY(-3px)}}

/* =========================================================================
   GALLERY - horizontal scroll-snap on mobile, grid on desktop
   ========================================================================= */
.gal{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:78%;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding:4px 20px 14px;
  scrollbar-width:thin;
  scrollbar-color:var(--purple) transparent;
}
.gal::-webkit-scrollbar{height:5px}
.gal::-webkit-scrollbar-thumb{background:var(--purple);border-radius:99px}
.gal figure{margin:0;scroll-snap-align:center;border-radius:var(--rad);overflow:hidden;border:1px solid var(--line)}
.gal img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover}


/* =========================================================================
   SOCIAL PROOF
   ========================================================================= */
.quotes{display:grid;gap:14px}
.quote{
  margin:0;background:var(--surface-2);border:1px solid var(--line);
  border-radius:var(--rad);padding:24px 22px;position:relative;
}
.quote__stars{color:var(--gold);letter-spacing:.18em;font-size:.94rem;margin-bottom:12px}
.quote blockquote{margin:0 0 16px}
.quote blockquote p{margin:0;font-size:1.02rem;line-height:1.62;color:var(--text)}
.quote figcaption{
  font-family:var(--head);font-weight:600;font-size:.92rem;color:var(--white);
  display:flex;flex-direction:column;gap:2px;
}
.quote figcaption span{
  font-family:var(--body);font-weight:400;font-size:.78rem;
  letter-spacing:.08em;text-transform:uppercase;color:var(--muted);
}
@media(min-width:900px){.quotes{grid-template-columns:repeat(3,1fr);gap:18px}}

/* =========================================================================
   GALLERY SCROLL HINT
   ========================================================================= */
/* =========================================================================
   STEPS
   ========================================================================= */
.steps{list-style:none;margin:0;padding:0;display:grid;gap:14px;counter-reset:s}
.steps li{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-left:3px solid var(--purple);
  border-radius:var(--rad);
  padding:20px 20px 18px;
  position:relative;
}
.steps__n{
  font-family:var(--head);font-weight:700;font-size:.76rem;letter-spacing:.16em;
  color:var(--gold);display:block;margin-bottom:8px;
}
.steps p{color:var(--muted);font-size:.96rem;margin:0}

/* =========================================================================
   SPLIT
   ========================================================================= */
.split{display:grid;gap:26px}
.split__media{border-radius:var(--rad);overflow:hidden;border:1px solid var(--line)}
.split__media img{width:100%;height:auto;aspect-ratio:4/5;max-height:340px;object-fit:cover;object-position:50% 35%}
.split__copy p{color:var(--muted)}
.split__copy .btn{margin-top:26px;width:100%}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq{
  border:1px solid var(--line);
  border-radius:var(--rad);
  background:var(--surface-2);
  margin-bottom:11px;
  overflow:hidden;
}
.faq summary{
  cursor:pointer;list-style:none;
  padding:18px 46px 18px 18px;
  font-family:var(--head);font-weight:600;font-size:1.01rem;line-height:1.4;
  position:relative;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"";position:absolute;right:20px;top:50%;
  width:9px;height:9px;margin-top:-6px;
  border-right:2px solid var(--purple-lt);border-bottom:2px solid var(--purple-lt);
  transform:rotate(45deg);transition:transform .2s ease;
}
.faq[open] summary::after{transform:rotate(-135deg);margin-top:-2px}
.faq div{padding:0 18px 18px}
.faq p{color:var(--muted);font-size:.97rem;margin:0}

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.finale{
  padding:62px 0 70px;text-align:center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(121,59,215,.42), transparent 62%),
    linear-gradient(180deg,var(--surface),var(--ink));
  border-top:1px solid var(--line);
}
.finale h2{text-transform:uppercase;margin-bottom:.4em}
.finale p{color:#d9d4e3;max-width:44ch;margin:0 auto 26px}
.finale .btn{width:100%;max-width:min(400px,100%)}
.finale .hero__note{margin-top:14px;font-size:.82rem;color:var(--muted)}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-foot{
  background:var(--ink);border-top:1px solid var(--line);
  padding:40px 0 calc(40px + env(safe-area-inset-bottom));text-align:center;
}
.site-foot .brand{justify-content:center;margin-bottom:16px}
.site-foot__loc{color:var(--muted);font-size:.88rem;max-width:46ch;margin:0 auto 18px}
.site-foot__nav{display:flex;flex-wrap:wrap;justify-content:center;gap:10px 22px;margin-bottom:18px}
.site-foot__nav a{color:var(--muted);font-size:.88rem;text-decoration:none;border-bottom:1px solid transparent}
.site-foot__nav a:hover{color:var(--white);border-bottom-color:var(--purple-lt)}
.site-foot__legal{color:#6f6b7a;font-size:.78rem;margin:0}

/* =========================================================================
   STICKY MOBILE CTA
   ========================================================================= */
.stickybar{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  padding:11px 16px calc(11px + env(safe-area-inset-bottom));
  background:rgba(13,13,15,.94);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  transform:translateY(110%);
  transition:transform .26s ease;
}
.stickybar.is-on{transform:translateY(0)}
.stickybar .btn{min-height:52px}
body.has-sticky{padding-bottom:80px}

/* =========================================================================
   EXIT INTENT
   ========================================================================= */
.exit{position:fixed;inset:0;z-index:120;display:flex;align-items:center;justify-content:center;padding:20px}
/* A class selector beats the UA [hidden] rule, so say it explicitly. */
.exit[hidden],.stickybar[hidden]{display:none!important}
.exit__backdrop{position:absolute;inset:0;background:rgba(6,6,8,.82);backdrop-filter:blur(5px);animation:fade .22s ease}
.exit__box{
  position:relative;width:100%;max-width:440px;text-align:center;
  background:linear-gradient(168deg,#1f1729,var(--surface-2) 46%);
  border:1px solid rgba(155,92,255,.4);
  border-radius:20px;padding:32px 24px 26px;
  box-shadow:0 30px 80px rgba(0,0,0,.7);
  animation:pop .26s cubic-bezier(.2,.9,.3,1.2);
  max-height:90vh;overflow-y:auto;
}
.exit__box h2{font-size:clamp(1.25rem,5.2vw,1.9rem);text-transform:uppercase;margin-bottom:.5em}
.exit__box p{color:var(--muted);font-size:.98rem;margin-bottom:22px}
.exit__x{
  position:absolute;top:10px;right:12px;width:38px;height:38px;
  background:none;border:0;color:var(--muted);font-size:1.9rem;line-height:1;cursor:pointer;
}
.exit__x:hover{color:var(--white)}
.exit__no{
  display:block;width:100%;margin-top:14px;background:none;border:0;
  color:var(--muted);font-family:var(--body);font-size:.86rem;cursor:pointer;text-decoration:underline;
}
.exit__no:hover{color:var(--text)}
@keyframes fade{from{opacity:0}to{opacity:1}}
@keyframes pop{from{opacity:0;transform:translateY(18px) scale(.96)}to{opacity:1;transform:none}}
body.exit-open{overflow:hidden}

/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
.reveal.is-in{opacity:1;transform:none}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
}

/* =========================================================================
   TABLET AND UP
   ========================================================================= */
@media(min-width:600px){
  .row2{grid-template-columns:1fr 1fr;gap:0 14px}
  .cards{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr 1fr}
  .gal{grid-auto-columns:42%}
  .midcta .btn,
  .finale .btn,
  .split__copy .btn{width:auto;min-width:300px}
  .formcard{padding:34px 32px 30px}
}

@media(min-width:900px){
  .sec{padding:82px 0}
  .sec--tight{padding:82px 0 64px}
  .sec--form{padding-top:14px}
  .cards{grid-template-columns:repeat(3,1fr);gap:18px}
  .steps{grid-template-columns:repeat(3,1fr);gap:18px}
  .gal{
    grid-auto-flow:row;
    grid-template-columns:repeat(3,1fr);
    overflow:visible;
    padding:4px 20px 0;
    max-width:1120px;margin:0 auto;
  }

  .split{grid-template-columns:1fr 1fr;gap:52px;align-items:center}
  .split__media img{max-height:none;aspect-ratio:4/5}
  .formcard{max-width:720px;margin:0 auto;padding:40px 44px 36px}
  .stickybar{display:none}
  body.has-sticky{padding-bottom:0}
  .finale{padding:96px 0}
}

/* =========================================================================
   EXIT INTENT FORM
   ========================================================================= */
.exit__sub{margin-bottom:20px!important}
.exit__box .lead-form{text-align:left}
.lead-form--compact .field{margin-bottom:12px}
.lead-form--compact input,
.lead-form--compact select{min-height:48px;padding:12px 14px}
.lead-form--compact .field label{font-size:.72rem;margin-bottom:5px}
.lead-form--compact button[type=submit]{margin-top:6px}
.exit__box .form-error{margin-top:12px}

/* =========================================================================
   TWO-STEP FORM
   ========================================================================= */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

.stepbar{display:flex;gap:6px;margin-bottom:20px}
.stepbar span{
  flex:1;height:3px;border-radius:99px;background:#33333c;
  transition:background .25s ease;
}
.stepbar span.is-on{background:linear-gradient(90deg,var(--purple-lt),var(--purple))}

.fstep{animation:stepIn .28s ease both}
@keyframes stepIn{from{opacity:0;transform:translateX(10px)}to{opacity:1;transform:none}}

.fstep__q{
  font-family:var(--head);font-weight:600;font-size:1.06rem;line-height:1.35;
  color:var(--white);margin:0 0 16px;text-align:center;
}
.fstep__q--sm{font-size:.98rem;margin-bottom:18px}

.fstep__back{
  background:none;border:0;color:var(--muted);font-family:var(--body);font-size:.84rem;
  cursor:pointer;padding:0 0 12px;display:inline-block;
}
.fstep__back:hover{color:var(--text)}

/* step one choices */
.choices{display:grid;gap:10px}
.choice{
  display:grid;
  grid-template-columns:44px 1fr;
  grid-template-rows:auto auto;
  align-items:center;
  gap:0 14px;
  width:100%;text-align:left;cursor:pointer;
  background:rgba(255,255,255,.045);
  border:1px solid #3a3a44;
  border-radius:13px;
  padding:14px 16px;
  min-height:64px;
  color:var(--text);
  font-family:var(--body);
  transition:border-color .16s ease, background .16s ease, transform .16s ease;
}
.choice__ico{grid-row:1 / span 2;font-size:1.5rem;line-height:1;text-align:center}
.choice__t{font-family:var(--head);font-weight:600;font-size:1rem;color:var(--white)}
.choice__s{font-size:.84rem;color:var(--muted);line-height:1.4}
.choice:active{transform:scale(.985)}
.choice.is-picked{border-color:var(--purple-lt);background:rgba(155,92,255,.12)}
@media(hover:hover){
  .choice:hover{border-color:var(--purple-lt);background:rgba(155,92,255,.09)}
}

/* optional notes, collapsed so step two stays short */
.extra{margin:4px 0 16px}
.extra summary{
  cursor:pointer;list-style:none;color:var(--muted);font-size:.88rem;
  padding:6px 0;display:inline-flex;align-items:center;gap:7px;
}
.extra summary::-webkit-details-marker{display:none}
.extra summary::before{content:"+";color:var(--purple-lt);font-size:1.1rem;line-height:1}
.extra[open] summary::before{content:"\2212"}
.extra summary:hover{color:var(--text)}
.extra .field{margin-top:8px;margin-bottom:0}

@media(min-width:600px){
  .choices{grid-template-columns:1fr 1fr}
  .fstep__q{font-size:1.14rem}
}

/* =========================================================================
   SINGLE-FIELD STEPS
   Steps two and three ask for one thing each, so give the field room and put
   the Continue button right under it.
   ========================================================================= */
.fstep[data-step="2"] .field,
.fstep[data-step="3"] .field{margin-bottom:18px}
.fstep [data-step-next]{margin-top:2px}

/* two rows of three on desktop, and the gallery stops being a carousel */
@media(min-width:900px){
  .gal{grid-template-columns:repeat(3,1fr);grid-auto-flow:row}
}
.gal__video video{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;display:block}

/* =========================================================================
   GIVEAWAY
   ========================================================================= */
.site-head__nav{display:flex;align-items:center;gap:10px}
.navlink{
  display:inline-flex;align-items:center;gap:5px;
  font-family:var(--head);font-weight:600;font-size:.74rem;letter-spacing:.06em;
  text-transform:uppercase;text-decoration:none;color:var(--gold);
  border:1px solid rgba(232,200,122,.4);border-radius:999px;
  padding:9px 13px;white-space:nowrap;min-height:44px;
  transition:border-color .16s ease,background .16s ease;
}
.navlink:hover{border-color:var(--gold);background:rgba(232,200,122,.1)}
@media(max-width:480px){
  .navlink{font-size:.66rem;padding:8px 10px;gap:4px}
  .navlink span{font-size:.9rem}
}
@media(max-width:360px){
  .navlink{padding:8px;letter-spacing:0}
}

/* the fifth tile reads as the giveaway option, not another booking type */
.choice--gw{
  border-color:rgba(232,200,122,.42);
  background:rgba(232,200,122,.06);
}
.choice--gw .choice__t{color:var(--gold)}
.choice--gw.is-picked{border-color:var(--gold);background:rgba(232,200,122,.14)}
@media(hover:hover){
  .choice--gw:hover{border-color:var(--gold);background:rgba(232,200,122,.12)}
}
@media(min-width:600px){.choice--gw{grid-column:1 / -1}}

.gw-note{
  margin:0 0 18px;padding:12px 14px;
  background:rgba(232,200,122,.08);
  border:1px solid rgba(232,200,122,.28);
  border-radius:11px;
  font-size:.85rem;line-height:1.55;color:#e6dfcd;
}

.gw{
  background:var(--surface-2);border:1px solid var(--line);
  border-left:3px solid var(--gold);
  border-radius:var(--rad);padding:24px 22px;
}
.gw__lead{font-size:1.02rem;margin-bottom:16px}
.gw__list{list-style:none;margin:0 0 16px;padding:0;display:grid;gap:10px}
.gw__list li{
  position:relative;padding-left:26px;color:var(--muted);font-size:.96rem;line-height:1.55;
}
.gw__list li::before{
  content:"";position:absolute;left:8px;top:.62em;
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}
.gw__fine{font-size:.85rem;color:var(--muted);margin:0;line-height:1.55}
@media(min-width:600px){.gw{padding:28px 30px}}

/* =========================================================================
   LANGUAGE TOGGLE + WIDER NAV LABELS
   The nav labels are long on purpose, so on a phone the nav drops to its own
   row instead of being squeezed. Hero padding is trimmed to pay for it, which
   keeps the form on the first screen.
   ========================================================================= */
.lang{
  display:inline-flex;align-items:center;gap:5px;flex:0 0 auto;
  background:none;border:1px solid var(--line);border-radius:999px;
  color:var(--muted);cursor:pointer;
  font-family:var(--head);font-weight:600;font-size:.7rem;letter-spacing:.08em;
  padding:8px 11px;min-height:40px;
  transition:color .16s ease,border-color .16s ease;
}
.lang svg{width:15px;height:15px}
.lang:hover{color:var(--white);border-color:var(--purple-lt)}

.site-head__in{flex-wrap:wrap;row-gap:8px}
.site-head__nav{display:flex;align-items:center;gap:8px;flex:1 1 100%;order:3}
.site-head__nav .btn,
.site-head__nav .navlink{
  flex:1 1 0;
  justify-content:center;
  text-align:center;
  font-size:.62rem;
  letter-spacing:.04em;
  line-height:1.25;
  padding:9px 10px;
  min-height:42px;
  white-space:normal;
}
.site-head__nav .navlink span{font-size:.85rem;flex:0 0 auto}
.brand{flex:1 1 auto;min-width:0}

@media(min-width:820px){
  .site-head__in{flex-wrap:nowrap;row-gap:0}
  .site-head__nav{flex:0 0 auto;order:0;gap:10px}
  .site-head__nav .btn,
  .site-head__nav .navlink{
    flex:0 0 auto;font-size:.72rem;white-space:nowrap;padding:11px 16px;min-height:44px;
  }
  .lang{font-size:.72rem;padding:9px 13px;min-height:44px}
}

/* =========================================================================
   FINE PRINT
   The giveaway line sits under the button as quiet text, not a callout box.
   ========================================================================= */
.fineprint{
  margin:12px 0 0;
  font-size:.76rem;
  line-height:1.5;
  color:#8b8695;
  text-align:center;
}
.fstep .form-foot{margin-top:8px}

/* =========================================================================
   VENUE VIDEO
   ========================================================================= */
.split__media--video{background:#000}
.split__media--video video{
  width:100%;height:auto;aspect-ratio:4/5;max-height:340px;
  object-fit:cover;display:block;
}
@media(min-width:900px){
  .split__media--video video{max-height:none;aspect-ratio:4/5}
}
