/* ============================================================
   ZERO presents Bangers Only - Australia Tour 2026
   zerodownunder.com  ·  v2 redesign, 21 Aug 2026

   Brief: lean closer to restrictedthereturn.com, throw in a press
   shot, move away from the poster, keep the ZERO logotype and the
   "Bangers Only" line.

   So the structure is Restricted's: one full-bleed photograph as
   the page, the wordmark laid straight over it on the left, a dark
   sign-up card floating right, a billing line at the foot, and a
   full-width footer.

   The photograph is handled differently from Restricted's, and it
   has to be. Theirs is a dark location plate with the artist cut
   out and composited in. The Zero press shots are bright studio
   portraits on a cream seamless, and a matte off that backdrop
   fails (shadowed skin and the cast shadow share a tolerance).
   The seamless is instead knocked back with a high-key luminance
   mask at build time - see _source/build-hero.sh - which leaves the
   face, the hands and the lime jacket lit against black. The jacket
   happens to sit a few degrees off #FFE100, which is why this is
   the shot of the six.
   ============================================================ */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/Archivo-var.woff2?v=20260821-6") format("woff2-variations");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Martian Mono";
  src: url("/assets/fonts/martian-mono-latin-400.woff2?v=20260821-6") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Martian Mono";
  src: url("/assets/fonts/martian-mono-latin-700.woff2?v=20260821-6") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --void:     #000000;
  --ink:      #080808;   /* card face - OPAQUE on purpose, see :-webkit-autofill */
  --signal:   #FFE100;   /* the logotype yellow, exact */
  --phosphor: #FFFFFF;
  --static:   #9A9A92;
  --dim:      #63635C;
  --field:    #171717;   /* the FLATTENED field colour, see :-webkit-autofill */
  --wire:     rgba(255, 225, 0, .20);
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Martian Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

/* Base colour on html, NEVER on body: an opaque body paints over the
   z-index:-1 .bg layer and the photograph disappears. */
html {
  background: var(--void);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: transparent;
  color: var(--phosphor);
  font-family: var(--sans);
  font-variation-settings: "wdth" 100, "wght" 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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;
}

/* ============================================================
   THE PHOTOGRAPH - full bleed, the page itself
   ============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--void);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* Two BAKED compositions rather than one image left to `cover`.
   `cover` on a 2:3 portrait in a 16:10 window crops away the reaching hands
   and leaves a face fragment, so the landscape crop is composed at 16:9 at
   build time - figure left, resolving to black on the right - and the
   portrait one at 9:16. Conditions match the <link rel=preload> media
   attributes exactly, so the preloaded variant is always the one asked for. */
@media (min-aspect-ratio: 7/10) and (max-width: 1500px) {
  .bg { background-image: url("/assets/images/hero-land-1440.webp?v=20260821-6"); }
}
@media (min-aspect-ratio: 7/10) and (min-width: 1501px) {
  .bg { background-image: url("/assets/images/hero-land-1920.webp?v=20260821-6"); }
}
@media (max-aspect-ratio: 7/10) and (max-width: 500px) {
  .bg { background-image: url("/assets/images/hero-port-720.webp?v=20260821-6"); }
}
@media (max-aspect-ratio: 7/10) and (min-width: 501px) {
  .bg { background-image: url("/assets/images/hero-port-1080.webp?v=20260821-6"); }
}
/* Two scrims. The horizontal one carves out the right-hand side so the card
   has near-black behind it - that is what keeps the autofill colour below a
   two-layer composite instead of a photograph-dependent guess. The vertical
   one seats the wordmark and the billing line. */
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Deliberately light. The landscape hero already resolves to black on its
     right at build time, so a heavy CSS scrim on top would double-darken the
     photograph into mud - which is exactly what the first grading attempt
     did. This only seats the wordmark and the billing line. */
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.42) 0%,
      rgba(0,0,0,0)  30%,
      rgba(0,0,0,0)  58%,
      rgba(0,0,0,.55) 100%);
}

/* ============================================================
   SHELL
   ============================================================ */
.sheet {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.stage {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 44px) clamp(16px, 4vw, 40px);
}
.stage__inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vw, 44px);
}

/* ============================================================
   BILLING - the wordmark block, laid straight onto the photograph.
   No card, no panel: on Restricted the type sits ON the picture,
   and that is most of why it reads like a tour ad rather than a
   web form.
   ============================================================ */
.billing {
  width: 100%;
  max-width: 560px;
  text-align: center;
}
.wordmark {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* "BANGERS ONLY" and "AUSTRALIA TOUR" flank the wordmark's foot, the way
   AUSTRALIA / NEW ZEALAND do on the reference. On the poster these are the
   two lines under the logo, so the pairing is the artwork's, not invented. */
.billing__flank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 0;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(9px, 1.5vw, 12px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--signal);
}
.billing__rule {
  flex: 1 1 auto;
  height: 1px;
  min-width: 10px;
  background: rgba(255,225,0,.34);
}
/* The tour line at the foot of the photograph - Restricted puts the date,
   venue and city here in one tracked mono row. Four shows will not fit one
   row on a phone, so it wraps as pairs and keeps the separators. */
.billing__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  margin: 20px 0 0;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(9.5px, 1.4vw, 12px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--phosphor);
}
.billing__dates b {
  font-weight: 700;
  color: var(--signal);
  margin-right: 5px;
}
.billing__dates span { white-space: nowrap; }

/* ============================================================
   CARD
   ============================================================ */
.signup { width: 100%; display: flex; justify-content: center; }
.panel {
  isolation: isolate;                 /* keeps the iti dropdown clickable */
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.panel__inner {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 34px) clamp(20px, 3.6vw, 32px) clamp(26px, 4vw, 32px);
}

/* one state visible at a time; each carries its own eyebrow + title */
.panel__state { display: none; }
.panel[data-form-state="idle"]    .panel__idle    { display: block; }
.panel[data-form-state="success"] .panel__success { display: block; }

.panel__eyebrow {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--signal);
}
.panel__title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 4.4vw, 2.4rem);
  line-height: .98;
  text-transform: uppercase;
  font-variation-settings: "wdth" 76, "wght" 900;
  letter-spacing: .004em;
  color: var(--phosphor);
  text-wrap: balance;
}
.panel__title em {
  font-style: normal;
  color: var(--signal);
}
.panel__lede {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--static);
}
.panel__lede strong {
  color: var(--phosphor);
  font-variation-settings: "wdth" 100, "wght" 700;
}
.panel__note {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--dim);
}
.panel__success-note {
  margin: 0 0 12px;
  font-size: 13.5px;
  color: var(--static);
}
.panel__success .panel__lede { margin-bottom: 0; }

/* ============================================================
   SHOW PICKER - multi-select. Restyled for the card: the CRT
   scanline treatment belonged to the poster's television stack
   and went with it. What survives is the poster's dashed leader,
   because that is a type device, not a picture of a telly.
   ============================================================ */
.shows {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  min-width: 0;      /* fieldsets default to min-content and break flex */
}
.shows__legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0;
  margin: 0 0 9px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--phosphor);
}
.shows__hint {
  font-weight: 400;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: none;
  color: var(--dim);
}
/* Below ~430px the mono legend and its hint collide mid-word rather than
   wrapping, because space-between gives each only half the row. */
@media (max-width: 430px) {
  .shows__legend { flex-direction: column; align-items: flex-start; gap: 3px; }
}
.shows__rack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.show { display: block; cursor: pointer; }
/* stays in the layout (never off-screen) but is not painted */
.show input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: 0;
  pointer-events: none;
}
.show__screen {
  position: relative;
  display: block;
  padding: 9px 12px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  background: rgba(255,255,255,.035);
  transition: background-color .15s ease, border-color .15s ease;
}
.show__head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.show__lamp {
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--dim);
  background: transparent;
  transition: background-color .15s ease, border-color .15s ease;
}
.show__city {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--signal);
  transition: color .15s ease;
}
/* the poster's dashed leader, rebuilt as a rule so it stretches to whatever
   the city and date leave behind instead of being typed hyphens */
.show__leader {
  flex: 1 1 auto;
  min-width: 12px;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    var(--dim) 0px, var(--dim) 5px, transparent 5px, transparent 10px);
}
.show__date {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  color: var(--phosphor);
  transition: color .15s ease;
}
.show__venue {
  display: block;
  margin: 5px 0 0 17px;             /* clears the lamp */
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--static);
  transition: color .15s ease;
}

.show:hover .show__screen { border-color: rgba(255,225,0,.45); background: rgba(255,225,0,.06); }
.show:hover .show__lamp   { border-color: var(--signal); }

.show input:checked + .show__screen {
  background: var(--signal);
  border-color: var(--signal);
}
.show input:checked + .show__screen .show__lamp {
  background: var(--void);
  border-color: var(--void);
}
.show input:checked + .show__screen .show__city,
.show input:checked + .show__screen .show__date  { color: var(--void); }
.show input:checked + .show__screen .show__venue { color: rgba(0,0,0,.72); }
.show input:checked + .show__screen .show__leader {
  background: repeating-linear-gradient(90deg,
    rgba(0,0,0,.55) 0px, rgba(0,0,0,.55) 5px, transparent 5px, transparent 10px);
}
.show input:focus-visible + .show__screen {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* ============================================================
   FORM
   ============================================================ */
.form { display: block; }
.form__row { margin: 0 0 12px; }
/* sr-only, not display:none - the placeholder carries the meaning visually,
   the label carries it to a screen reader */
.form__label {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.form__input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  background: rgba(255,255,255,.06);
  color: var(--phosphor);
  font-family: var(--sans);
  font-variation-settings: "wdth" 100, "wght" 500;
  font-size: 15px;
  line-height: 1.3;
  transition: border-color .15s ease, background-color .15s ease;
}
.form__input::placeholder { color: #8A8782; }
.form__input:hover { border-color: rgba(255,255,255,.26); }
.form__input:focus {
  outline: none;
  border-color: var(--signal);
  background: rgba(255,255,255,.085);
}

/* Chrome paints autofilled inputs pale lavender and ignores `background`
   outright - a giant inset box-shadow is the only override that works.

   The colour is NOT the field's own rgba. It is that field FLATTENED against
   what is behind it: rgba(255,255,255,.06) over the card face #080808 gives
   .06*255 + .94*8 = 22.8 -> #171717. The card is opaque, and the horizontal
   scrim above puts near-black behind it, so this composite is exactly two
   layers and can be computed rather than sampled off a photograph.

   The 9999s transition stops Chrome flashing lavender in before it paints. */
.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:focus,
.form__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--field) inset !important;
          box-shadow: 0 0 0 1000px var(--field) inset !important;
  -webkit-text-fill-color: var(--phosphor) !important;
  caret-color: var(--phosphor);
  transition: background-color 9999s ease-in-out 0s;
}

/* Honeypot. display:none, NEVER off-screen - Chrome and Edge autofill
   off-screen fields and then silently block every real signup. */
.hp-row { display: none !important; }

.form__row--check { margin-top: 14px; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--static);
  cursor: pointer;
}
.form__check input {
  flex: 0 0 auto;
  margin: 2px 0 0;
  width: 15px; height: 15px;
  accent-color: var(--signal);
  cursor: pointer;
}
.form__check a { color: var(--phosphor); text-decoration: underline; text-underline-offset: 2px; }
.form__check a:hover { color: var(--signal); }

.form__error {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .04em;
  color: #FF6B57;
}
.form__error--global { margin-top: 12px; }

/* ============================================================
   BUTTON - the reference's big flooded CTA with a travelling arrow
   ============================================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  border: 0;
  border-radius: 2px;
  background: var(--signal);
  color: var(--void);
  font-family: var(--sans);
  font-variation-settings: "wdth" 80, "wght" 900;
  /* shrink the type before it can wrap - an uppercase tracked label on a
     320px viewport otherwise breaks to two lines */
  font-size: clamp(.9rem, 3.6vw, 1.05rem);
  letter-spacing: clamp(.05em, .5vw, .12em);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .15s ease, transform .08s ease;
}
.btn__arrow { transition: transform .18s ease; }
.btn:hover { filter: brightness(1.08); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: default; filter: none; }
.btn:disabled .btn__arrow { transform: none; }

/* ============================================================
   intl-tel-input v25
   ============================================================ */
.iti { width: 100%; display: block; }
/* the hidden state lives in the vendor stylesheet; until that loads the whole
   country list paints open on first render */
.iti__dropdown-content.iti__hide { display: none !important; }
.iti__country-container { z-index: 3; }
.iti--separate-dial-code .iti__selected-country {
  background: rgba(255,255,255,.06);
  border-radius: 2px 0 0 2px;
}
.iti__selected-country:hover { background: rgba(255,255,255,.10); }
.iti__selected-dial-code { color: var(--static); font-size: 14px; }
.iti__dropdown-content {
  background: #101010;
  border: 1px solid var(--wire);
  border-radius: 2px;
  color: var(--phosphor);
  box-shadow: 0 18px 40px rgba(0,0,0,.8);
}
/* Keep the vendor's horizontal padding. It is not decorative: 30px left and
   28px right reserve room for the absolutely positioned search icon and clear
   button. A `padding` shorthand wipes them and the magnifying glass lands on
   top of the word "Search". */
.iti__search-input {
  padding: 9px 30px 9px 32px;
  background: rgba(255,255,255,.06);
  border: 0;
  border-bottom: 1px solid var(--wire);
  color: var(--phosphor);
  font-family: var(--sans);
  font-size: 14px;
}
.iti__search-input::placeholder { color: #8A8782; }
.iti__search-input:focus { outline: none; background: rgba(255,255,255,.10); }
.iti__country-list { scrollbar-width: thin; }
.iti__country { padding: 9px 12px; font-size: 14px; }
.iti__country.iti__highlight,
.iti__country:hover { background: rgba(255,225,0,.14); }
.iti__dial-code { color: var(--static); }

/* ============================================================
   FOOTER - full width, the Basslayerz shape
   ============================================================ */
.foot {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 18px clamp(16px, 4vw, 40px) 26px;
  background: rgba(0,0,0,.80);
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.foot__left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot__legal {
  margin: 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  color: var(--static);
}
.foot__legal a { color: var(--static); text-decoration: none; }
.foot__legal a:hover { color: var(--signal); }
.site-built { margin: 0; }
.site-built a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  color: var(--static);
  text-decoration: none;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
}
.site-built a:hover { border-color: var(--signal); color: var(--phosphor); }
.site-built img { display: block; opacity: .9; }

/* ============================================================
   LAYOUT - aspect-ratio thresholds, not device widths, so there is
   no gap at squarish window shapes (~570-900px wide).
   ============================================================ */
@media (min-width: 768px) and (min-aspect-ratio: 7/10) {
  .stage { justify-content: flex-start; }
  .stage__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 80px);
  }
  /* The card takes a FIXED width and the billing column absorbs the
     shrinking. With two flexible bases both shrink together and the card
     gets narrow enough to wrap city names mid-word. Type can reflow; a
     form cannot. */
  .billing { flex: 1 1 0; min-width: 0; max-width: 620px; text-align: left; }
  .signup  { flex: 0 0 auto; width: 470px; min-width: 0; }
  .wordmark { margin: 0; }
  .billing__dates { justify-content: flex-start; }
}

/* Landscape phones. Wide enough to pass the two-column test but with almost
   no height, so the desktop treatment renders cropped. Placed AFTER the
   desktop block so it wins at equal specificity. */
@media (min-width: 640px) and (min-aspect-ratio: 7/10) and (max-height: 520px) {
  .stage { padding: 12px clamp(12px, 3vw, 24px); align-items: start; }
  .stage__inner { flex-direction: row; align-items: start; gap: 18px; min-height: 0; }
  .billing { flex: 0 1 auto; max-width: 300px; }
  .signup  { flex: 1 1 auto; min-width: 0; }
  .panel   { max-width: none; }
  .panel__inner { padding: 15px 17px 17px; }
  .billing__flank { font-size: 8.5px; margin-top: 7px; }
  .billing__dates { font-size: 8.5px; gap: 4px 10px; margin-top: 12px; }
  .panel__eyebrow { margin-bottom: 8px; }
  .panel__title { font-size: clamp(1.2rem, 3.2vw, 1.5rem); margin-bottom: 9px; }
  .panel__lede  { font-size: 12px; margin-bottom: 12px; }
  .shows { margin-bottom: 12px; }
  .shows__rack { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
  .show__screen { padding: 6px 9px 7px; }
  .show__city   { font-size: 11px; }
  .show__date   { font-size: 10.5px; }
  .show__venue  { font-size: 8.5px; margin-top: 3px; }
  .form__row    { margin-bottom: 9px; }
  .form__input  { padding: 9px 11px; font-size: 14px; }
  .form__check  { font-size: 10.5px; }
  .btn { margin-top: 11px; padding: 10px 16px; }
  .foot { padding: 10px clamp(12px, 3vw, 24px) 14px; }
}

/* Portrait: the photograph is behind a stacked column, so it needs a heavier
   scrim than the desktop side-carve or the card sits on a lit face. */
@media (max-aspect-ratio: 7/10) {
  /* the portrait hero is composed top-anchored, so the figure stays put as
     the phone's viewport height changes with the browser chrome */
  .bg { background-position: center top; }
  /* Open a band between the billing block and the card for the photograph to
     live in. Without it the card starts right under the tour dates and covers
     the artist completely - there is a press shot on the page that nobody can
     see. The form moving below the fold on a phone is the normal trade and
     the reference does the same. */
  .stage { align-items: flex-start; }
  .billing { padding-bottom: 30vh; }
  .bg::after {
    background:
      linear-gradient(180deg,
        rgba(0,0,0,.34)  0%,
        rgba(0,0,0,0)   22%,
        rgba(0,0,0,.30) 44%,
        rgba(0,0,0,.80) 60%,
        rgba(0,0,0,.92) 100%);
  }
}

@media (max-width: 879px) {
  .foot { justify-content: center; text-align: center; }
  .foot__left { justify-content: center; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.iti__selected-country:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .show__screen, .show__lamp, .show__city, .show__date, .show__venue,
  .form__input, .btn, .btn__arrow { transition: none; }
  * { scroll-behavior: auto; }
}
