:root {
  --bg: #FDEFE2;
  --fg: #517097;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --border: 3px;
  --gap-x: clamp(1.5rem, 4vw, 3rem);
  --max: 84rem;
}

* {
  box-sizing: border-box;
  transition: background-color 1.8s ease, color 1.8s ease, border-color 1.8s ease, -webkit-text-stroke-color 1.8s ease;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Aktiv Grotesk', sans-serif;
  overflow-x: hidden;
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1rem, 4vw, 2rem);
  background-image: url('../images/hugo-portrait.jpg');
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.mh-hero,
.mh-content {
  --bg: #000000;
  --fg: #FDEFE2;
}

.mh-hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}

.mh-content {
  background: var(--bg);
  color: var(--fg);
}

.mh-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  /* This video is 1920x1080 (16:9) with "Maybe Hugo" text baked into the
     frame. On a tall narrow phone, object-fit:cover crops down to only
     ~26% of its width to fill the screen height, cutting most of that
     text off both sides. "contain" shows the full frame uncropped; the
     letterbox bars blend into .mh-hero's already-solid-black background. */
  .mh-hero__video {
    object-fit: contain;
  }
}

.mh-hero__sound {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: var(--border) solid var(--fg);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease, background-color 200ms ease, color 200ms ease, border-color 1.8s ease, transform 250ms ease;
}

.mh-hero__sound.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: hover) {
  .mh-hero__sound:hover {
    background: var(--fg);
    color: var(--bg);
    transform: scale(1.08);
  }
}

.mh-hero__sound-wave {
  transition: opacity 200ms ease;
}

.mh-hero__sound-mute {
  opacity: 0;
  transition: opacity 200ms ease;
}

.mh-hero__sound.is-muted .mh-hero__sound-wave {
  opacity: 0;
}

.mh-hero__sound.is-muted .mh-hero__sound-mute {
  opacity: 1;
}

.hero__name {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 0;
  column-gap: 0.35em;
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 9vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #517097;
  text-align: center;
  cursor: default;
  transform: translateY(12vh);
}

.hero__word {
  display: inline-flex;
  flex-wrap: nowrap;
}

.hero__name .letter {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform;
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Shared soft-card / pull-quote / chip primitives ---------- */

.soft-card {
  border: var(--border) solid var(--fg);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 auto 1.5rem;
}

.soft-card__mark {
  display: block;
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.soft-card p {
  margin: 0;
  font-family: 'Aktiv Grotesk', sans-serif;
  line-height: 1.6;
}

.pull-quote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.5rem;
  border: var(--border) solid var(--fg);
  border-radius: var(--radius-pill);
  display: inline-block;
  font-family: 'Arthaus', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
}

.pull-quote--intro {
  display: block;
  width: fit-content;
  margin: clamp(2.5rem, 7vw, 4.5rem) auto 0;
  padding: 1.25rem 2rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-block;
  border: var(--border) solid var(--fg);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background-color 200ms ease, color 200ms ease, border-color 1.8s ease, transform 250ms ease;
}

@media (hover: hover) {
  .chip:hover {
    background: var(--fg);
    color: var(--bg);
    transform: scale(1.08) !important;
  }
}

/* ---------- Rocket intro / outro ---------- */

.rocket-intro {
  padding: clamp(3rem, 8vw, 6rem) var(--gap-x) clamp(0.25rem, 1vw, 0.5rem);
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
  overflow: visible;
}

.rocket-outro {
  padding: clamp(1rem, 3vw, 2rem) var(--gap-x) clamp(2rem, 5vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.intro-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: clamp(1rem, 3vw, 2rem);
  row-gap: 0.5rem;
  margin-bottom: clamp(0.5rem, 1.5vw, 0.85rem);
}

.rocket-intro__title {
  margin: 0;
  flex: 1 1 auto;
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.rocket-intro__subtitle {
  margin: 0;
  flex: 0 1 20rem;
  padding-bottom: 0.5em;
  font-family: 'Arthaus', serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.4rem);
  opacity: 0.85;
}

.bubble-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.bubble--challenge,
.bubble--architecture {
  flex: 1 1 20rem;
}

.bubble {
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: left;
  border: 8px solid var(--fg);
  border-radius: var(--radius-lg);
}

@media (max-width: 700px) {
  .bubble-row {
    flex-direction: column;
  }
}

@media (hover: hover) {
  .bubble {
    transition: transform 300ms ease;
  }

  .bubble:hover {
    transform: scale(1.015);
  }
}

.bubble p {
  margin: 0;
  font-family: 'Aktiv Grotesk', sans-serif;
  line-height: 1.6;
}

.role-heading {
  display: block;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.role-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 54rem;
  margin: 0 auto;
}

.role-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 9.5rem;
  padding: 1.5rem 1rem;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  animation: chip-float 3.6s ease-in-out infinite;
}

.role-tag:nth-child(4n+1) { animation-delay: 0s; }
.role-tag:nth-child(4n+2) { animation-delay: 0.3s; }
.role-tag:nth-child(4n+3) { animation-delay: 0.6s; }
.role-tag:nth-child(4n+4) { animation-delay: 0.9s; }
.role-tag:nth-child(4n+5) { animation-delay: 1.2s; }
.role-tag:nth-child(4n+6) { animation-delay: 1.5s; }
.role-tag:nth-child(4n+7) { animation-delay: 1.8s; }

.role-tag__icon {
  width: 2rem;
  height: 2rem;
  color: var(--fg);
  transition: color 200ms ease, transform 200ms ease;
}

.role-tag__label {
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  transition: color 200ms ease;
}

@media (hover: hover) {
  .role-tag {
    transition: background-color 200ms ease;
  }

  .role-tag:hover {
    background: var(--fg);
  }

  .role-tag:hover .role-tag__icon {
    color: var(--bg);
    transform: scale(1.15);
  }

  .role-tag:hover .role-tag__label {
    color: var(--bg);
  }
}

/* ---------- Rocket Bar / Rocket Rooftop, click-triggered elevator ---------- */

.elevator-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(0.25rem, 1vw, 0.5rem) var(--gap-x) clamp(2rem, 6vw, 4rem);
}

.elevator-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
}

.elevator-photo {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: min(75vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.elevator-photo__frame {
  position: relative;
  width: clamp(13rem, 28vw, 20rem);
  aspect-ratio: 4 / 5;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  background-color: var(--bg);
  overflow: hidden;
}

.elevator-photo__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 180ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .elevator-photo__image {
    transition-duration: 0.01ms;
  }
}

.elevator-rig {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  flex: 0 0 auto;
}

.elevator {
  position: relative;
  width: min(85vw, 34rem);
  aspect-ratio: 3 / 4;
  max-height: 85svh;
  border: 10px solid var(--fg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}

.elevator::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(
    to bottom,
    var(--fg) 0,
    var(--fg) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0;
  pointer-events: none;
}

.elevator.is-falling {
  animation: elevator-fall-warp 1300ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.elevator.is-falling::after {
  animation: elevator-fall-streaks 1300ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes elevator-fall-warp {
  0% { filter: blur(0) brightness(1); transform: scale(1); }
  15% { filter: blur(7px) brightness(1.1); transform: scale(1.035); }
  70% { filter: blur(7px) brightness(1.1); transform: scale(1.035); }
  100% { filter: blur(0) brightness(1); transform: scale(1); }
}

@keyframes elevator-fall-streaks {
  0% { opacity: 0; }
  15% { opacity: 0.5; }
  70% { opacity: 0.5; }
  100% { opacity: 0; }
}

.elevator-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
}

.elevator-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  min-width: 9rem;
  padding: 1rem 1.25rem;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--fg);
  font-family: 'Aktiv Grotesk', sans-serif;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 150ms ease;
}

.elevator-button:active {
  transform: scale(0.97);
}

.elevator-button__num {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.elevator-button__label {
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.elevator-button[aria-pressed="true"] {
  background: var(--fg);
  color: var(--bg);
}

.elevator-button[aria-pressed="true"] .elevator-button__num {
  opacity: 0.85;
}

@media (hover: hover) {
  .elevator-button[aria-pressed="false"]:hover {
    background: rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 700px) {
  .elevator-layout {
    flex-direction: column;
  }

  .elevator-rig {
    flex-direction: column-reverse;
  }

  .elevator-buttons {
    flex-direction: row;
    width: 100%;
  }

  .elevator-button {
    flex: 1 1 0;
    min-width: 0;
  }

  /* The photo box (208x260ish) was floating in a min(75vh,36rem) container
     sized for sitting beside the elevator in a wide desktop row — on
     mobile it stacks underneath instead, so that height just leaves a
     large empty gap and makes the whole section tall enough to break the
     door-open scroll trigger below (see main.js doorObserver). */
  .elevator-photo {
    height: 20rem;
  }
}

.elevator__display {
  flex: 0 0 auto;
  padding: clamp(1rem, 3vh, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  border-bottom: 3px solid var(--fg);
  text-align: center;
}

.elevator__level-block {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}

.elevator[data-level="1"] .elevator__level-block--bar,
.elevator[data-level="2"] .elevator__level-block--rooftop {
  display: flex;
}

.elevator__level {
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.elevator__floor-name {
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  text-transform: uppercase;
}

.elevator__car {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.elevator__content {
  display: none;
}

.elevator[data-level="1"] .elevator__content--bar,
.elevator[data-level="2"] .elevator__content--rooftop {
  display: block;
}

.elevator__content .chip-row {
  justify-content: center;
  gap: 0.9rem;
}

.elevator__content .chip {
  --bob: -11px;
  font-size: 1.05rem;
  padding: 0.75rem 1.4rem;
  border-width: 4px;
}

.elevator__doors {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
}

.elevator__door {
  flex: 1 1 50%;
  background: var(--bg);
  border: 3px solid var(--fg);
  margin: -3px;
  transition: transform 2000ms cubic-bezier(0.45, 0, 0.2, 1);
}

.elevator[data-doors="open"] .elevator__door--left {
  transform: translateX(-100%);
}

.elevator[data-doors="open"] .elevator__door--right {
  transform: translateX(100%);
}

.chip-row .chip {
  animation: chip-float 3.6s ease-in-out infinite;
}

.chip-row .chip:nth-child(4n+1) { animation-delay: 0s; }
.chip-row .chip:nth-child(4n+2) { animation-delay: 0.3s; }
.chip-row .chip:nth-child(4n+3) { animation-delay: 0.6s; }
.chip-row .chip:nth-child(4n+4) { animation-delay: 0.9s; }
.chip-row .chip:nth-child(4n+5) { animation-delay: 1.2s; }
.chip-row .chip:nth-child(4n+6) { animation-delay: 1.5s; }
.chip-row .chip:nth-child(4n+7) { animation-delay: 1.8s; }

@keyframes chip-float {
  0%, 100% { transform: rotate(var(--tilt, 0deg)) translateY(0); }
  50% { transform: rotate(var(--tilt, 0deg)) translateY(var(--bob, -6px)); }
}

@media (prefers-reduced-motion: reduce) {
  .elevator__door {
    transition-duration: 0.01ms;
  }
}

/* ---------- Diagonal banner ---------- */

.banner {
  margin: clamp(2rem, 6vw, 4rem) 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--gap-x);
  background: var(--fg);
  text-align: center;
}

.banner__line {
  margin: 0 auto;
  max-width: 54rem;
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  text-transform: uppercase;
  color: var(--bg);
}

/* ---------- Featured Events / Campaigns ---------- */

.campaigns {
  --bg: #FDEFE2;
  --fg: #517097;
  background: var(--bg);
  color: var(--fg);
}

.campaigns {
  padding: 0;
}

.campaign-screen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vh, 3rem) 0;
  scroll-snap-align: start;
}

.campaigns__intro {
  max-width: 54rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  padding: 0 var(--gap-x);
  text-align: center;
}

.campaigns__title {
  margin: 0 0 1rem;
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1;
}

.campaigns__lead {
  margin: 0;
  font-family: 'Aktiv Grotesk', sans-serif;
  line-height: 1.6;
  opacity: 0.85;
}

.campaign-block {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.campaign-block:last-child {
  margin-bottom: 0;
}

.campaign-block__title {
  margin: 0 0 1.25rem;
  padding: 0 var(--gap-x);
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  text-align: center;
}

.campaign-block__year {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  opacity: 0.75;
}

/* 20th Birthday — all 5 flyers shown at once, fit to the row */

.birthday-row {
  display: flex;
  width: 100%;
}

.birthday-row__img {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  position: relative;
  transition: transform 250ms ease;
}

@media (hover: hover) {
  .birthday-row__img:hover {
    transform: scale(1.15);
    z-index: 1;
  }
}

/* Flyer rows — three drifting marquee strips, middle row reversed */

.flyer-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee__track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}

.marquee[data-direction="right"] .marquee__track {
  animation-name: marquee-right;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee__tile {
  flex: 0 0 auto;
  width: clamp(6rem, 13vw, 9rem);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  opacity: 0.85;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (hover: hover) {
  .marquee:hover .marquee__track {
    animation-play-state: paused;
  }

  .marquee__tile:hover {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* Video */

.campaign-video {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 var(--gap-x);
}

.campaign-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Cocktails — photo wall: square tiles that reflow to any screen width,
   with the video as one larger featured tile mixed in among the photos. */

.cocktail-frame {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
  grid-auto-flow: dense;
  gap: clamp(0.35rem, 1vw, 0.6rem);
  width: 100%;
  max-width: 62rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 800ms ease, transform 800ms ease;
}

.cocktail-frame.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cocktail-frame {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  /* At the 6.5rem column size, a phone-width screen only fits 3 columns,
     so 21 photos + the video tile run to ~9 rows — much taller than one
     locked screen. Smaller columns fit 5 across, cutting it to ~5 rows. */
  .cocktail-frame {
    grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  }
}

.cocktail-frame__tile {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--fg);
  border-radius: calc(var(--radius-lg) / 2.5);
  transition: transform 200ms ease;
}

@media (hover: hover) {
  .cocktail-frame__tile {
    position: relative;
  }

  .cocktail-frame__tile:hover {
    transform: scale(1.08);
    z-index: 2;
  }
}

.cocktail-frame__video {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cocktail-frame__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cocktail-credits {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem) var(--gap-x) 0;
  text-align: center;
  font-family: 'Aktiv Grotesk', sans-serif;
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.7;
}

/* ---------- Credits ---------- */

.credits {
  margin: 0;
  text-align: center;
  font-family: 'Aktiv Grotesk', sans-serif;
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.7;
  padding: clamp(0.75rem, 2vw, 1.25rem) var(--gap-x) 0;
}

.credits + .role-heading {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

/* ---------- Outcome ---------- */

.outcome {
  padding: clamp(3rem, 8vw, 6rem) var(--gap-x) clamp(0.75rem, 2vw, 1.25rem);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.outcome__title {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Arthaus', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1;
}

.bubble--outcome {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.outcome--final {
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

/* ---------- Hero contact (bottom of first hero) ---------- */

.hero__contact {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.hero__email {
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #517097;
}

.hero__title {
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1.3vw, 0.8rem);
  letter-spacing: 0.02em;
  color: #517097;
  opacity: 0.75;
}

@media (hover: hover) {
  .hero__email:hover {
    text-decoration: underline;
  }
}

/* ---------- Maybe Hugo — challenge, role, artwork ---------- */

.mh-content__inner {
  padding: clamp(3rem, 8vw, 6rem) var(--gap-x);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.bubble--mh-challenge {
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.mh-videos {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.mh-videos__grid {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 64rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
}

.mh-video {
  flex: 1 1 0;
  min-width: 0;
}

.mh-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--fg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mh-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mh-video__title {
  display: block;
  margin-top: 0.75rem;
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 700px) {
  .mh-videos__grid {
    flex-direction: column;
  }
}

/* ---------- Maybe Hugo — results & outcome ---------- */

.mh-results {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.mh-results__lead {
  max-width: 44rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  font-family: 'Aktiv Grotesk', sans-serif;
  line-height: 1.6;
  opacity: 0.85;
}

.mh-results__stats {
  display: block;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.mh-outcome {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.bubble--mh-outcome {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

/* Vinyl sleeve ticker — song artwork scrolls continuously in a slow,
   constant loop. Hovering pauses the whole ticker and pops that cover
   out of the row; clicking plays a short audio preview (single shared
   audio instance, only one track at a time). */

.mh-ticker {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 9vw, 6rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.mh-ticker__tilt {
  transform-style: preserve-3d;
}

.mh-ticker__track {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  width: max-content;
  transform-style: preserve-3d;
  animation: mh-ticker-scroll 42s linear infinite;
}

.mh-ticker__track:has(.mh-sleeve:hover) {
  animation-play-state: paused;
}

@keyframes mh-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mh-sleeve {
  position: relative;
  flex: 0 0 auto;
  width: clamp(13rem, 26vw, 19rem);
  aspect-ratio: 1 / 1;
  display: block;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  /* Perspective lives on each sleeve individually (not up on .mh-ticker)
     so every album gets the same vanishing point on its own artwork,
     rather than one shared vanishing point that skews cards differently
     depending on where they sit in the scrolling row. */
  perspective: 900px;
  transform-style: preserve-3d;
}

.mh-sleeve--soon {
  cursor: default;
}

.mh-sleeve--soon .mh-sleeve__art {
  opacity: 0.55;
}

/* The hover/pop transform lives on the artwork itself, not on .mh-sleeve.
   .mh-sleeve is the hover hit-box and stays perfectly still (same size as
   the artwork) so the pointer can't leave it just because the art scaled
   and lifted out from under the cursor — that self-induced exit/re-entry
   was causing the hover state to flicker on and off. */
.mh-sleeve__art {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 0.4rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
  /* Upright cards fanned on the vertical axis only, like flipping through
     records in a crate face-on: right edge near/large, left edge
     receding/small. No top-down tilt. */
  transform: rotateY(-48deg);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.mh-sleeve__title {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  font-family: 'Arthaus', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 0.85rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 250ms ease, transform 250ms ease;
}

.mh-sleeve:hover,
.mh-sleeve:focus-visible {
  z-index: 20;
}

.mh-sleeve:hover .mh-sleeve__art,
.mh-sleeve:focus-visible .mh-sleeve__art {
  transform: scale(1.22) translateY(-0.9rem);
  box-shadow: 0 2rem 3.5rem rgba(0, 0, 0, 0.65), 0 0 0 3px var(--fg);
}

.mh-sleeve:hover .mh-sleeve__title,
.mh-sleeve:focus-visible .mh-sleeve__title {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Site footer ---------- */

.site-footer {
  background: #000000;
  color: #FDEFE2;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gap-x);
  text-align: center;
}

.site-footer__email {
  display: inline-block;
  font-family: 'Aktiv Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .site-footer__email:hover {
    text-decoration: underline;
  }
}

.site-footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.site-footer__icon {
  display: flex;
  color: inherit;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-footer__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

@media (hover: hover) {
  .site-footer__icon:hover {
    transform: scale(1.15);
    opacity: 0.75;
  }
}
