/* ===================================================================
   SPARKLE TALENT HUNT — design system

   The whole page floats over one WebGL canvas, so almost everything here
   is transparent by design. Backgrounds are the exception, not the rule:
   any panel that gets a fill is deliberately taking the stage away from
   the microphone, and there are only a few of those.

   PALETTE
   Deep black, champagne gold and white carry the brand. Controlled purple
   and deep blue exist only as atmosphere — they never become a surface,
   never become type, and never appear at full saturation. That restraint
   is what separates "premium entertainment" from "neon".
   =================================================================== */

:root {
  /* --- brand ------------------------------------------------------- */
  --black:        #000000;
  --ink:          #050506;
  --ink-2:        #0b0b0e;
  --ink-3:        #131318;

  --gold:         #d8b981;   /* champagne — the primary accent */
  --gold-bright:  #f2d9a8;
  --gold-deep:    #a8874f;

  --white:        #ffffff;
  --paper:        #f4f1ea;

  /* atmosphere only */
  --purple:       #6a4a9e;
  --blue:         #2a4a86;
  --stage:        #ffcb8a;

  /* --- text -------------------------------------------------------- */
  --t-hi:         rgba(255,255,255,0.96);
  --t-mid:        rgba(255,255,255,0.64);
  --t-low:        rgba(255,255,255,0.42);
  --t-faint:      rgba(255,255,255,0.16);

  --line:         rgba(255,255,255,0.12);
  --line-soft:    rgba(255,255,255,0.07);

  /* --- type -------------------------------------------------------- */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
          Helvetica, Arial, sans-serif;

  /* --- rhythm ------------------------------------------------------ */
  --gut:   clamp(1.25rem, 4vw, 3.5rem);
  --sect:  clamp(6rem, 14vh, 11rem);
  --maxw:  1320px;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;      /* Lenis owns scrolling */
}

body {
  margin: 0;
  background: var(--black);
  color: var(--t-hi);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/*
  THE HIDDEN RESET — do not remove.

  The user agent hides `[hidden]` elements with `display: none`, but that is a
  bare attribute selector and ANY class that sets `display` outranks it. This
  site has three such classes — `.menu` (flex), `.reg__done` (flex) and
  `.btn` (inline-flex, used by the gallery's "show more") — and every one of
  them silently defeated the attribute.

  The consequence was not cosmetic. `.menu` is `position: fixed; inset: 0` at
  z-index 55, so the closed menu sat invisibly on top of the whole document
  and swallowed every click on the page: gallery filters, photographs,
  journey buttons, the registration form. Nothing below the header worked,
  and there was nothing to see because the overlay was transparent.

  `!important` is deliberate. `hidden` means hidden, and no component style
  should be able to argue with it.
*/
[hidden] { display: none !important; }

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

/* Honeypot. Moved off-screen rather than display:none — a bot that skips
   hidden inputs will still fill this one, which is the entire point. It is
   also tabindex="-1" and aria-hidden in the markup, so no real visitor,
   keyboard or screen reader ever reaches it. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

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

::selection { background: var(--gold); color: #000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ------------------------------------------------------------------ */
/* THE CANVAS AND ITS ATMOSPHERE                                       */
/* ------------------------------------------------------------------ */
.stage-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.stage-canvas.ready { opacity: 1; }

/* No WebGL: a static composed field so the page still has a stage. */
body.no-webgl::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 45% at 50% 32%, rgba(216,185,129,0.16), transparent 70%),
    radial-gradient(40% 30% at 18% 70%, rgba(106,74,158,0.14), transparent 70%),
    radial-gradient(45% 35% at 82% 62%, rgba(42,74,134,0.12), transparent 70%),
    var(--black);
}

/* Film grain. Very low opacity — it is there to kill banding in the big
   black gradients, not to be seen. */
.grain {
  position: fixed; inset: -50%; z-index: 2; pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
  will-change: transform;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); }
  60% { transform: translate(-3%,-3%); }
  80% { transform: translate(4%,4%); }
}

.vignette {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(72% 62% at 50% 46%,
              transparent 42%, rgba(0,0,0,0.55) 100%);
}

/* ------------------------------------------------------------------ */
/* TYPOGRAPHY                                                          */
/* ------------------------------------------------------------------ */
/* Editorial scale. The negative tracking at large sizes is not optional:
   Inter at 900 set at 12vw with default tracking reads as a UI label
   scaled up. Tight tracking is what makes it read as a headline. */
.display {
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.display--xl { font-size: clamp(2.9rem, 11.5vw, 10.5rem); }
.display--lg { font-size: clamp(2.3rem, 7.6vw, 6.6rem); }
.display--md { font-size: clamp(1.7rem, 4.4vw, 3.6rem); letter-spacing: -0.035em; line-height: 0.95; }
.display--sm { font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: -0.03em; line-height: 1; }

.display.stack { line-height: 0.82; }
.gold { color: var(--gold); }

.eyebrow {
  font-size: clamp(0.66rem, 0.9vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--t-mid);
  max-width: 46ch;
  margin-top: 1.8rem;
}
.lead--center { margin-inline: auto; text-align: center; }

/* Masked line reveal. The mask is on the outer span and the inner span
   moves — a single element animating its own transform cannot be clipped
   by itself. */
.line { display: block; overflow: hidden; }
.line > span { display: block; will-change: transform; }

/* ------------------------------------------------------------------ */
/* LAYOUT                                                              */
/* ------------------------------------------------------------------ */
main { position: relative; z-index: 1; }

.section {
  position: relative;
  z-index: 1;
  padding: var(--sect) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--tall { min-height: 190vh; }
.section--journey { min-height: 260vh; }

/* The nav is fixed, so an anchored jump would otherwise park a section's
   first line underneath it. Kept slightly larger than the bar itself. */
section[id], footer[id] { scroll-margin-top: 88px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--center { text-align: center; }
.wrap--center .lead { margin-inline: auto; }
.wrap--form { max-width: 1080px; }

/* Sections that are mostly a statement pin their type at mid-viewport so
   the 3D behind them has room to play. */
.sticky-mid {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

/* ------------------------------------------------------------------ */
/* BUTTONS                                                             */
/* ------------------------------------------------------------------ */
.btn {
  --pad: 1.05rem 2.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: var(--pad);
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
              background 0.4s var(--ease), color 0.4s var(--ease);
}
.btn::after {
  /* A gold bloom that lifts on hover — the button behaving like a lamp. */
  content: '';
  position: absolute; inset: -60%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.55), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px -12px rgba(216,185,129,0.75);
}
.btn:hover::after { opacity: 0.35; }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--t-hi);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: none;
}
.btn--sm { --pad: 0.7rem 1.4rem; font-size: 0.68rem; letter-spacing: 0.14em; }
.btn--lg { --pad: 1.25rem 3rem; font-size: 0.84rem; }

/* ------------------------------------------------------------------ */
/* LOADER                                                              */
/* ------------------------------------------------------------------ */
.loader {
  position: fixed; inset: 0; z-index: 90;
  background: var(--black);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; }
.loader__logo {
  width: min(340px, 68vw);
  height: auto;
  margin-inline: auto;
}
.loader__line {
  display: block;
  width: min(240px, 46vw);
  height: 1px;
  margin: 1.9rem auto 1.1rem;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}
.loader__line i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}
.loader__hint {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--t-low);
}
.loader.is-done { pointer-events: none; }

/* ------------------------------------------------------------------ */
/* NAVIGATION                                                          */
/* ------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: var(--gut);
  padding: 1.4rem var(--gut);
  /* The hero opens with no navigation — it is faded in by Navigation.js
     once the microphone has emerged. */
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease),
              background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.nav.is-shown { opacity: 1; transform: none; }
.nav.is-stuck {
  background: linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0));
  backdrop-filter: blur(10px);
}

/* The real Sparkle mark. It is gold artwork on transparency, so it needs no
   plate behind it — but it does need a height cap: the source is 460x250 and
   `height: auto` on a flex child would let it set the whole header's height. */
.nav__logo {
  display: flex; align-items: center;
  margin-right: auto;
  flex: none;
}
.nav__logo img {
  height: clamp(34px, 4.4vw, 52px);
  width: auto;
  /* A faint lift so the gold reads against the darkest part of the hero. */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.55));
}

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--t-mid);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.35s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover { color: var(--t-hi); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 9px; right: 9px; height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* full-screen cinematic menu */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gut) 3rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

/* `[hidden]` is enforced globally in the reset — see the note there; this
   menu is the element that made it necessary. The pointer-events guard
   covers the half-second it spends at opacity 0 while fading closed, after
   the `hidden` attribute has already been removed. */
.menu:not(.is-open) { pointer-events: none; }
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__list a {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 0.5rem 0;
  font-size: clamp(2rem, 10vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(28px);
}
.menu.is-open .menu__list a { opacity: 1; transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.menu__list a i {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.menu__cta { margin-top: 2.5rem; align-self: flex-start; }

/* ------------------------------------------------------------------ */
/* HERO                                                                */
/* ------------------------------------------------------------------ */
/* 500vh of scroll drives the eight-beat opening in ScrollController. */
.hero {
  position: relative;
  height: 500vh;
  z-index: 1;
}
.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding-inline: var(--gut);
}

/* Every beat occupies the same cell; only opacity and offset change. */
.beat {
  grid-area: 1 / 1;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.beat.is-live { pointer-events: auto; }

.beat__brand .eyebrow { margin-bottom: 1.8rem; }
.beat__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

/* The subtitle under the opening headline. Held back hard — the headline is
   the landing view and this only qualifies it. */
.beat__sub {
  margin-top: 1.6rem;
  font-size: clamp(0.92rem, 1.5vw, 1.15rem);
  letter-spacing: 0.02em;
  color: var(--t-mid);
}

.scrollcue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--t-low);
  transition: opacity 0.6s var(--ease);
}
.scrollcue i {
  display: block; width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scrollcue.is-hidden { opacity: 0; }

/* The "What's your spark?" category grid lived here. Removed with the
   section: Sparkle is a singing competition, so there is nothing to choose
   between. */

/* ------------------------------------------------------------------ */
/* NIGERIA                                                             */
/* ------------------------------------------------------------------ */
#nigeria .lead { margin-bottom: 2.4rem; }
.cities { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.cities span {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--t-mid);
}

/* ------------------------------------------------------------------ */
/* THE JOURNEY                                                         */
/* ------------------------------------------------------------------ */
.journey {
  max-width: var(--maxw);
  margin: clamp(3rem, 8vw, 7rem) auto 0;
  padding-inline: var(--gut);
  width: 100%;
}
.journey__step {
  display: grid;
  grid-template-columns: minmax(80px, 0.5fr) 1.6fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(3.2rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line-soft);
}
.journey__step:last-child { border-bottom: 1px solid var(--line-soft); }
.journey__no {
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216,185,129,0.55);
  transition: color 0.7s var(--ease);
}
.journey__step.is-active .journey__no { color: rgba(216,185,129,0.16); }
.journey__title {
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  font-weight: 900; letter-spacing: -0.035em; text-transform: uppercase;
}
.journey__line { color: var(--gold); font-weight: 600; margin-top: 0.7rem; }
.journey__copy { color: var(--t-mid); margin-top: 1rem; max-width: 46ch; }
.journey__step .btn { margin-top: 1.8rem; }

/* ------------------------------------------------------------------ */
/* REGISTRATION                                                        */
/* ------------------------------------------------------------------ */
.reg { margin-top: clamp(2.5rem, 5vw, 4rem); position: relative; }

/* The one heavily-treated surface on the site. A form needs a readable
   field of its own, and this is the only place where taking the stage
   from the 3D is the right call. */
.reg__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem clamp(1.2rem, 2.5vw, 2.2rem);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(18,18,22,0.86), rgba(6,6,8,0.92));
  backdrop-filter: blur(22px);
  box-shadow: 0 40px 120px -50px rgba(0,0,0,0.9);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reg__form.is-gone { opacity: 0; transform: scale(0.98); pointer-events: none; }

.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field--wide { grid-column: 1 / -1; }

.field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-low);
}
.field label em {
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--t-faint);
  text-transform: none;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--t-hi);
  font-size: 0.95rem;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.24); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  outline: none;
}
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1.35rem), calc(100% - 14px) calc(1.35rem);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select option { background: #111114; color: #fff; }

.field.has-error input, .field.has-error select { border-color: #e2645a; }
.field__err {
  font-size: 0.74rem;
  color: #e2645a;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.field__err.is-shown { opacity: 1; }

.check {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.88rem; color: var(--t-mid); cursor: pointer;
}
.check input {
  appearance: none;
  width: 19px; height: 19px; flex: none; margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.check input:checked {
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  border-color: var(--gold);
}

.reg__submit { grid-column: 1 / -1; justify-self: start; margin-top: 0.6rem; }
.reg__submit[disabled] { opacity: 0.55; pointer-events: none; }
.reg__note { font-size: 0.8rem; color: var(--t-low); }
.reg__note.is-error { color: #e2645a; }

/* the confirmation */
.reg__done {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 1.4rem;
  padding: var(--gut);
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
/* Same story as the menu: this panel is absolutely positioned over the form,
   so while it is not shown it must not be able to receive a click. */
.reg__done { pointer-events: none; }
.reg__done.is-shown { opacity: 1; pointer-events: auto; }
.reg__star {
  width: 54px; height: 54px; fill: var(--gold);
  filter: drop-shadow(0 0 26px rgba(216,185,129,0.75));
  animation: starpulse 3.4s var(--ease) infinite;
}
@keyframes starpulse {
  0%,100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.13) rotate(45deg); opacity: 1; }
}
.reg__done .lead { margin-top: 0; }

/* ------------------------------------------------------------------ */
/* FIRST PERSON                                                        */
/* ------------------------------------------------------------------ */
.firstperson { max-width: 620px; }
.firstperson li {
  padding: clamp(1.4rem, 3.4vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--t-low);
  transition: color 0.6s var(--ease), padding-left 0.6s var(--ease);
}
.firstperson li.is-active { color: var(--t-hi); padding-left: 1.2rem; }
.firstperson__end { margin-top: clamp(5rem, 14vw, 12rem); }

/* ------------------------------------------------------------------ */
/* WHY                                                                 */
/* ------------------------------------------------------------------ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 7vw, 6rem);
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.why__cell {
  padding: clamp(2rem, 3.2vw, 3rem);
  background: rgba(4,4,6,0.6);
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: background 0.6s var(--ease);
  position: relative;
  overflow: hidden;
}
.why__cell::after {
  content: '';
  position: absolute; left: 0; top: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.why__cell:hover { background: rgba(10,10,13,0.8); }
.why__cell:hover::after { transform: scaleX(1); }
.why__no { font-size: 0.66rem; letter-spacing: 0.24em; color: var(--gold); }
.why__title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase;
  margin: auto 0 0.7rem;
}
.why__copy { color: var(--t-mid); font-size: 0.94rem; }

/* ------------------------------------------------------------------ */
/* PRIZES — floating typography around the pedestal                    */
/* ------------------------------------------------------------------ */
.prizes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem);
  max-width: var(--maxw);
  margin: clamp(3.5rem, 9vw, 8rem) auto 0;
  padding-inline: var(--gut);
  width: 100%;
}
.prize {
  text-align: center;
  padding: clamp(1.6rem, 2.6vw, 2.4rem) 1rem;
}
.prize__title {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase;
}
.prize__value {
  display: block;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.prize__copy { color: var(--t-mid); font-size: 0.9rem; margin-top: 0.6rem; }

/* ------------------------------------------------------------------ */
/* VOTING + CONTESTANTS                                                */
/* ------------------------------------------------------------------ */
.vote__status {
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t-mid);
}
.vote__status i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--t-low);
  flex: none;
}
.vote__status.is-open i {
  background: #58d68d;
  box-shadow: 0 0 0 0 rgba(88,214,141,0.7);
  animation: pip 2s infinite;
}
@keyframes pip {
  70% { box-shadow: 0 0 0 9px rgba(88,214,141,0); }
  100% { box-shadow: 0 0 0 0 rgba(88,214,141,0); }
}

.contestants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 5rem) auto 0;
  padding-inline: var(--gut);
  width: 100%;
}
/* Portrait performance compositions, never rectangular cards. */
.contestant {
  position: relative;
  aspect-ratio: 3 / 4.4;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(20,20,26,0.9), rgba(5,5,7,0.95));
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  transition: transform 0.7s var(--ease), border-color 0.5s var(--ease);
}
.contestant:hover { transform: translateY(-8px); border-color: rgba(216,185,129,0.5); }
.contestant__media { position: absolute; inset: 0; z-index: -1; }
.contestant__media img, .contestant__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.contestant__media video { opacity: 0; transition: opacity 0.6s var(--ease); }
.contestant:hover .contestant__media video { opacity: 1; }
.contestant::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.88));
}
.contestant > * { position: relative; }
.contestant__name {
  font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.contestant__meta {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.35rem;
}
.contestant__sub { font-size: 0.8rem; color: var(--t-mid); margin-top: 0.5rem; }
.contestant .btn { margin-top: 1.1rem; }

/* the empty state — honest, not a fake roster */
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gut);
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--t-low);
}
.empty strong {
  display: block;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-weight: 900; letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--t-hi);
  margin-bottom: 0.7rem;
}

/* ------------------------------------------------------------------ */
/* GALLERY + VIDEO                                                     */
/* ------------------------------------------------------------------ */
.gallery__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.gallery__filters button {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t-low);
  cursor: pointer;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.gallery__filters button:hover,
.gallery__filters button[aria-pressed="true"] {
  color: var(--gold); border-color: var(--gold);
}

.gallery {
  display: grid;
  /* 200, not 220. At a 768px tablet the content box is exactly 692px, which
     is precisely what three 220px columns plus two 16px gaps need — and
     auto-fill rounds against you at the boundary and drops to two very wide
     columns. 200 clears it with room to spare. */
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-inline: var(--gut);
  width: 100%;
}
.gallery figure {
  margin: 0; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--ink-3);
  cursor: pointer;
}
.gallery img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }

/* Spans the grid so it sits under the photographs rather than becoming a
   cell of its own and inheriting the 4/5 aspect ratio. */
.gallery__more {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 1.4rem;
}

/* ------------------------------------------------------------------ */
/* LIGHTBOX                                                            */
/* ------------------------------------------------------------------ */
/* Above everything, including the loader and the custom cursor — a modal
   that something else can paint over is not a modal. */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.26s var(--ease);
}
.lightbox.is-open { opacity: 1; }

.lightbox__stage {
  grid-column: 2;
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  min-width: 0; min-height: 0;
  height: 100%;
  justify-content: center;
}
.lightbox__stage img {
  max-width: 100%;
  /* Leave room for the caption; `max-height: 100%` alone would let a tall
     photograph push the caption off the bottom of the viewport. */
  max-height: calc(100% - 3rem);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 90px -30px rgba(0,0,0,0.9);
  transition: opacity 0.25s var(--ease);
}
.lightbox.is-loading .lightbox__stage img { opacity: 0.55; }

.lightbox__caption {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-low);
  text-align: center;
}

.lightbox__close, .lightbox__nav {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--t-hi);
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  line-height: 1;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(216,185,129,0.18);
  border-color: var(--gold);
  transform: scale(1.06);
}

.lightbox__nav {
  width: clamp(42px, 6vw, 58px);
  height: clamp(42px, 6vw, 58px);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  /* Optical centring: the chevron glyphs sit low in their em box. */
  padding-bottom: 0.18em;
}
.lightbox__nav--prev { grid-column: 1; }
.lightbox__nav--next { grid-column: 3; }

.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 44px; height: 44px;
  font-size: 1.7rem;
  padding-bottom: 0.1em;
}

@media (max-width: 640px) {
  /* On a phone the arrows would eat the width the photograph needs, so they
     move on top of it, at the bottom, where a thumb can reach them. */
  .lightbox { grid-template-columns: 1fr; }
  .lightbox__stage { grid-column: 1; }
  .lightbox__nav {
    position: absolute;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
  .lightbox__nav--prev { left: 1.25rem; }
  .lightbox__nav--next { right: 1.25rem; }
  .lightbox__stage img { max-height: calc(100% - 6rem); }
}

.video { margin-top: 2.5rem; }
.video__player {
  position: relative;
  border-radius: 22px; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
}
.video__player video, .video__player iframe {
  width: 100%; height: 100%; border: 0; object-fit: cover;
}
.video__live {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #c0392b;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em;
}
.video__live i { width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pip 1.6s infinite; }

/* ------------------------------------------------------------------ */
/* THE WINNER                                                          */
/* ------------------------------------------------------------------ */
.countdown {
  display: grid;
  place-items: center;
  height: clamp(6rem, 22vw, 16rem);
  margin-bottom: 1.5rem;
}
.countdown span {
  grid-area: 1 / 1;
  font-size: clamp(5rem, 22vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(216,185,129,0.7);
  opacity: 0;
}
.winner__title { opacity: 0; }
.winner__card { margin-top: 2.6rem; }

/* ------------------------------------------------------------------ */
/* FINALE                                                              */
/* ------------------------------------------------------------------ */
.finale__logo {
  width: min(420px, 76vw);
  height: auto;
  margin: 2.6rem auto;
  filter: drop-shadow(0 0 40px rgba(216,185,129,0.35));
}
#finale .beat__actions { margin-top: 0; }

/* ------------------------------------------------------------------ */
/* FOOTER                                                              */
/* ------------------------------------------------------------------ */
.footer {
  position: relative; z-index: 1;
  padding: clamp(4rem, 10vw, 8rem) 0 2.5rem;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(0,0,0,0.6), var(--black) 40%);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer__logo { width: min(280px, 70%); height: auto; margin-bottom: 1.4rem; }
.footer__desc { color: var(--t-mid); font-size: 0.92rem; margin-top: 1.2rem; max-width: 34ch; }
.footer__strap { color: var(--gold); font-size: 0.82rem; margin-top: 1rem; letter-spacing: 0.04em; }

.footer__col h3 {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--t-low); margin-bottom: 1.1rem;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 0.9rem; color: var(--t-mid);
  margin-bottom: 0.6rem;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__notify { margin-top: 2rem; }

.notify { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.notify input {
  flex: 1 1 150px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.notify input:focus { border-color: var(--gold); outline: none; }
.notify__note { font-size: 0.76rem; color: var(--t-low); margin-top: 0.7rem; min-height: 1em; }

.footer__spon {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem;
  align-items: center;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-block: 2rem;
  border-top: 1px solid var(--line-soft);
}
.footer__spon span {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t-faint);
  transition: color 0.4s var(--ease);
}
.footer__spon span:hover { color: var(--t-mid); }
.footer__spon .footer__sponlabel {
  color: var(--gold); letter-spacing: 0.24em; font-size: 0.66rem;
}

.footer__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--t-low);
}

/* ------------------------------------------------------------------ */
/* CURSOR                                                              */
/* ------------------------------------------------------------------ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 80;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cursor.is-on { opacity: 1; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot { width: 6px; height: 6px; background: var(--gold-bright); }
.cursor__ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.35s var(--ease);
}
.cursor.is-hot .cursor__ring { width: 60px; height: 60px; border-color: var(--gold); }
.cursor__label {
  position: absolute; top: 34px; left: 0;
  transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cursor.is-hot .cursor__label { opacity: 1; }

/* Only on real pointers — a touch device has no cursor to replace, and
   the tracking work is pure cost there. */
@media (pointer: coarse), (hover: none) {
  .cursor { display: none; }
}

/* ------------------------------------------------------------------ */
/* NOSCRIPT                                                            */
/* ------------------------------------------------------------------ */
.noscript {
  position: relative; z-index: 70;
  max-width: 640px; margin: 22vh auto; padding: var(--gut);
  text-align: center;
}
.noscript h2 { font-size: 2rem; font-weight: 900; letter-spacing: 0.2em; }
.noscript p { color: var(--t-mid); margin-top: 1rem; }
.noscript a { color: var(--gold); }

/* ------------------------------------------------------------------ */
/* RESPONSIVE — a mobile composition, not a squeezed desktop           */
/* ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav { padding: 1rem var(--gut); }

  /* Shorter narrative sections: the same story, fewer scroll metres, so
     the journey does not become a chore on a phone. At the desktop figures
     the page came to 29 phone-screens of scrolling; these bring it down
     without cutting a single beat. */
  .hero { height: 340vh; }
  .section--tall { min-height: 115vh; }
  .section--journey { min-height: 165vh; }

  /* Sections whose content is short do not need a full screen of minimum
     height on top of their padding — that is a screenful of empty black
     between one section and the next. */
  .section { min-height: auto; }

  .reg__form { grid-template-columns: 1fr; }
  .journey__step { grid-template-columns: 1fr; gap: 0.8rem; }
  .journey__no { font-size: clamp(2rem, 12vw, 3.4rem); }

  .footer__top { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }

  /* Registration and voting are the conversion paths, so they get the
     most generous treatment on the smallest screens. */
  #register, #vote { padding-block: clamp(4rem, 12vh, 7rem); }
}

@media (max-width: 640px) {
  /* ---- the hero composition on a phone ----
     A phone viewport is tall and narrow, so a vertically-centred headline
     and a vertically-centred microphone land on top of each other. Moving
     the type into the upper third gives the object the lower half to itself
     and the headline clean space — the same relationship the desktop
     composition gets from being wide. */
  .hero__stage {
    align-items: start;
    padding-top: 16vh;
  }

  /* ---- the gallery filter rail ----
     Fourteen day filters wrap to five rows on a phone: 212px of chrome
     before a single photograph. One swipeable row is the standard mobile
     pattern and costs ~44px. The negative margin lets it bleed to both
     screen edges, which is what signals that it scrolls. */
  .gallery__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--gut) * -1);
    padding-inline: var(--gut);
    padding-bottom: 0.4rem;
  }
  .gallery__filters::-webkit-scrollbar { display: none; }
  .gallery__filters button { flex: none; }
}

/* ---- small-label floor on phones ----
   Several labels are sized with a clamp whose vw term contributes almost
   nothing at 375px, so they collapsed to their ~10.6px minimum. That is
   passable for a decorative eyebrow and genuinely bad for the labels on a
   form someone has to complete. Uppercase and wide tracking do not rescue
   11px on a phone held at arm's length. */
@media (max-width: 640px) {
  .field label,
  .eyebrow,
  .footer__col h3,
  .gallery__filters button,
  .vote__status { font-size: 0.8rem; }

  .check span { font-size: 0.95rem; }

  /* 16px is a hard floor, not a preference: iOS Safari zooms the whole page
     when a focused input's text is smaller than 16px, and it does not zoom
     back out. At the previous 0.95rem every tap into the registration form
     threw the layout sideways. */
  .field input, .field select, .field textarea { font-size: 1rem; }
  .notify input { font-size: 1rem; }
}

@media (max-width: 520px) {
  .display--xl { font-size: clamp(2.5rem, 13.5vw, 4.4rem); }
  .beat__actions { flex-direction: column; align-items: stretch; }
  .beat__actions .btn { justify-content: center; }
  .contestants { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------------ */
/* TOUCH TARGETS                                                       */
/* ------------------------------------------------------------------ */
/* 44px is the figure both Apple and Google publish, and several controls here
   were well under it: the gallery filters at 36px, the footer links at 22px,
   and the rules checkbox at 19px — the one that actually stops someone
   completing the form.

   Two conditions, not one. `pointer: coarse` is the correct signal, but it is
   not reliable on its own: hybrid laptops and some tablets report `fine`
   while being operated by a finger, and they would miss out entirely. The
   width clause catches those; the pointer clause catches a large touchscreen
   that is wider than the breakpoint. A small laptop with a mouse gets the
   larger targets too, which costs nothing. */
@media (pointer: coarse), (max-width: 900px) {
  .gallery__filters button,
  .vote__status { min-height: 44px; }

  .footer__col a {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 0.2rem;
  }

  /* The whole label is the hit area, not just the box. */
  .check { padding-block: 0.5rem; min-height: 44px; align-items: center; }
  .check input { width: 26px; height: 26px; background-size: 17px; margin-top: 0; }

  /* --pad keeps the horizontal padding the size variant asked for; only the
     height floor changes. */
  .btn { min-height: 44px; }

  .nav__burger { width: 48px; height: 48px; }
  .nav__burger span { left: 13px; right: 13px; }
  .nav__burger span:nth-child(1) { top: 21px; }
  .nav__burger span:nth-child(2) { top: 27px; }

  .lightbox__nav { width: 50px; height: 50px; }

  /* The logo is the way back to the top; give it a real hit area. */
  .nav__logo { min-height: 44px; }
}

/* ------------------------------------------------------------------ */
/* REDUCED MOTION                                                      */
/* ------------------------------------------------------------------ */
/* Everything still reads; nothing moves on its own. The scroll narrative
   is replaced by a single composed frame in ScrollController. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .grain { display: none; }
  .hero { height: auto; min-height: 100vh; }
  .hero__stage { position: relative; height: auto; padding-block: 18vh; }
  .beat {
    position: relative;
    grid-area: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    margin-bottom: 5rem;
  }
  .sticky-mid { position: relative; top: auto; transform: none; }
  .section--tall, .section--journey { min-height: auto; }
  .scrollcue { display: none; }
}
