:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #c7c0b2;
  --accent: #D69B2F;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  --hero-scroll-y: 0px;
  margin: 0;
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #171717;
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

body.page-intro .site-header {
  opacity: 0;
  animation: navbarIntroFade 1600ms ease forwards;
}

body.page-intro .brand-link,
body.page-intro .content-flow {
  visibility: hidden;
  opacity: 0;
}

body.page-intro .hero {
  opacity: 1;
  transform: translate(-120vw, var(--hero-scroll-y));
}

@keyframes navbarIntroFade {
  to {
    opacity: 1;
  }
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.76), rgba(8, 8, 8, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.site-nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(20px, 4vw, 48px);
}

.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  text-decoration: none;
  transition:
    opacity 1000ms ease,
    visibility 0s linear 1000ms;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.42));
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.nav-links a {
  color: var(--accent);
  background: linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
}

.nav-links a:hover {
  filter: brightness(1.18);
}

.language-select {
  justify-self: end;
}

.language-select select {
  min-width: 64px;
  height: 36px;
  border: 1px solid rgba(214, 155, 47, 0.82);
  color: var(--accent);
  background: rgba(12, 12, 12, 0.58);
  padding: 0 10px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  outline: none;
}

.language-select select:focus-visible,
.menu-toggle:focus-visible,
.brand-link:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(245, 241, 232, 0.82);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
}

.metal-stage {
  --stage-pad: clamp(20px, 4vw, 48px);
  --stage-gap: clamp(20px, 4vw, 48px);
  --layout-width: min(calc(100vw - (2 * var(--stage-pad))), 1200px);
  --hero-column: min(35vw, 520px);
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, var(--hero-column))
    minmax(0, calc(var(--layout-width) - var(--hero-column) - var(--stage-gap)));
  justify-content: center;
  gap: var(--stage-gap);
  min-height: 100vh;
  padding: 0 var(--stage-pad);
  isolation: isolate;
  overflow: clip;
  cursor: url("../assets/crosshair-cursor.91d9cda851ba.png") 19 19, crosshair;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.38), transparent 16rem),
    radial-gradient(circle at 78% 78%, rgba(0, 0, 0, 0.33), transparent 18rem),
    linear-gradient(117deg, rgba(255, 255, 255, 0.13), transparent 22% 52%, rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(
      91deg,
      #8f9292 0,
      #b6b9b8 1px,
      #7d8080 2px,
      #c8cbc9 5px,
      #737675 7px
    );
}

.metal-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 7% 12%, rgba(0, 0, 0, 0.11) 19%, transparent 27%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.62;
}

.metal-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 0 45%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.16), rgba(7, 7, 7, 0.52));
  pointer-events: none;
}

#impactCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero {
  position: sticky;
  top: 76px;
  z-index: 3;
  display: grid;
  place-items: center;
  align-self: start;
  justify-self: start;
  height: calc(100vh - 76px);
  min-height: 520px;
  width: var(--hero-column);
  margin-left: 0;
  padding: clamp(24px, 5vh, 48px) 0;
  pointer-events: none;
  color: rgba(57, 36, 17, 0.88);
  text-shadow: none;
  transition:
    transform 1000ms cubic-bezier(0.1, 0.86, 0.18, 1),
    opacity 420ms ease;
}

body:not(.page-intro) .hero {
  transform: translateY(var(--hero-scroll-y));
  transition: none;
}

body.page-intro.hero-enter .hero {
  transform: translate(0, var(--hero-scroll-y));
}

.hero-poster {
  --poster-safe-top: 20%;
  --poster-safe-right: 15%;
  --poster-safe-bottom: 18%;
  --poster-safe-left: 15%;
  position: relative;
  container-type: inline-size;
  display: grid;
  width: min(100%, calc((100vh - 76px - clamp(48px, 10vh, 96px)) * 0.8), 520px);
  aspect-ratio: 720 / 900;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../assets/hero-western-poster.2d9dc8cb47f7.webp") center / 100% 100% no-repeat;
  opacity: 0.96;
  pointer-events: none;
}

.hero-poster-content {
  position: absolute;
  inset:
    var(--poster-safe-top)
    var(--poster-safe-right)
    var(--poster-safe-bottom)
    var(--poster-safe-left);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(10px, 3cqw, 24px);
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: rgba(94, 55, 17, 0.9);
  background: none;
  font-family: "Rye", Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 5.1cqw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 0 rgba(255, 232, 168, 0.28);
  text-transform: uppercase;
  mix-blend-mode: multiply;
}

h1 {
  margin: 0;
  font-family: "Rye", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 20cqw, 6rem);
  line-height: 0.83;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(52, 31, 13, 0.9);
  text-shadow: 0 1px 0 rgba(255, 229, 168, 0.18);
  mix-blend-mode: multiply;
}

.intro {
  max-width: 100%;
  margin: clamp(10px, 3.2cqw, 24px) 0 0;
  color: rgba(59, 39, 20, 0.8);
  font-size: clamp(0.82rem, 4.1cqw, 1.45rem);
  line-height: 1.45;
  font-weight: 650;
  text-shadow: 0 1px 0 rgba(255, 236, 186, 0.18);
  mix-blend-mode: multiply;
}

.hero-link {
  pointer-events: auto;
  display: inline-flex;
  max-width: 100%;
  width: fit-content;
  margin-top: clamp(8px, 3.8cqw, 28px);
  padding: clamp(10px, 3.1cqw, 14px) clamp(14px, 4.8cqw, 22px);
  border: 2px solid rgba(69, 42, 18, 0.78);
  color: rgba(40, 24, 9, 0.94);
  background: linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%);
  text-decoration: none;
  font-size: clamp(0.72rem, 3cqw, 0.95rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 197, 0.55),
    inset 0 -2px 0 rgba(75, 44, 12, 0.28);
  backdrop-filter: none;
  mix-blend-mode: normal;
  white-space: nowrap;
}

.hero-link:hover {
  border-color: rgba(74, 31, 13, 0.92);
  background: linear-gradient(135deg, #fff7bd 0%, #e3aa3c 42%, #8b5919 100%);
}

.back-to-top {
  position: fixed;
  left: clamp(20px, 4vw, 48px);
  bottom: 28px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 241, 232, 0.32);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(10, 10, 10, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.back-to-top:hover {
  border-color: rgba(186, 38, 54, 0.82);
  background: rgba(186, 38, 54, 0.36);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(245, 241, 232, 0.82);
  outline-offset: 4px;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top[hidden] {
  display: none;
}

.content-flow {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 72px;
  padding: 126px 0 80px;
  transition:
    opacity 1000ms ease,
    transform 1000ms cubic-bezier(0.1, 0.86, 0.18, 1),
    visibility 0s linear 1000ms;
}

body.page-intro .content-flow {
  transform: translateX(120vw);
}

body.page-intro.hero-enter .content-flow,
body.page-intro.reveal-rest .brand-link,
body.page-intro.reveal-rest .content-flow {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 1000ms ease,
    transform 1000ms cubic-bezier(0.1, 0.86, 0.18, 1),
    visibility 0s;
}

body.intro-complete .brand-link,
body.intro-complete .content-flow {
  visibility: visible;
  opacity: 1;
}

.content-section {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(12, 12, 12, 0.3);
  border: 1px solid rgba(245, 241, 232, 0.12);
  backdrop-filter: blur(8px);
}

.content-flow > .content-section:not(.final-cta):nth-of-type(even) {
  background:
    radial-gradient(circle at center, rgba(186, 38, 54, 0.2), transparent 54%),
    rgba(8, 8, 8, 0.42);
}

.content-section > h3 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(2.15rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.content-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section p {
  max-width: 660px;
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
}

.intro-section p,
.section-intro p {
  max-width: none;
}

.section-kicker {
  color: var(--accent) !important;
  background: linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 18px !important;
  font-weight: 900;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.18em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.feature-image,
.host-image {
  margin: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
}

.feature-image {
  aspect-ratio: 16 / 10;
}

.feature-image img,
.host-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.08);
  transform: scale(1.02);
}

.host-image img {
  object-position: center top;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 8px;
  width: 2px;
  background: #D69B2F;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 8px;
}

.timeline-item span {
  position: absolute;
  top: 0;
  left: -38px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(245, 241, 232, 0.2);
  color: var(--accent);
  background:
    linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%),
    linear-gradient(rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.82));
  -webkit-background-clip: text, border-box;
  background-clip: text, border-box;
  font-weight: 900;
  font-size: 0.74rem;
  -webkit-text-fill-color: transparent;
}

.card-grid,
.format-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reason-card,
.format-grid article,
.testimonial-grid blockquote {
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(245, 241, 232, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.reason-card:hover,
.format-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(186, 38, 54, 0.55);
}

.experience-section {
  width: var(--layout-width);
  margin-left: calc(-1 * (var(--hero-column) + var(--stage-gap)));
}

.experience-gallery {
  --gallery-progress: 0;
  --gallery-width: 100%;
  --gallery-height: auto;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.tile-slider {
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
  justify-self: center;
  width: var(--gallery-width);
  max-width: 100%;
}

.tile-gallery {
  --pos: 0;
  position: relative;
  display: block;
  justify-self: center;
  width: var(--gallery-width);
  height: var(--gallery-height);
  max-width: 100%;
  overflow: hidden;
  background: #050505;
  outline: 1px solid rgba(245, 241, 232, 0.16);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.tile-gallery canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-autoplay-toggle {
  position: absolute;
  right: clamp(10px, 1.5vw, 16px);
  bottom: clamp(10px, 1.5vw, 16px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.gallery-autoplay-toggle:hover {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.gallery-autoplay-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.gallery-autoplay-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.gallery-autoplay-icon--play {
  display: none;
}

.gallery-autoplay-toggle[aria-pressed="true"] .gallery-autoplay-icon--pause {
  display: none;
}

.gallery-autoplay-toggle[aria-pressed="true"] .gallery-autoplay-icon--play {
  display: block;
}

.tile-slider figcaption {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 56px;
  height: var(--gallery-caption-height, auto);
  padding: 16px 18px;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.4;
}

.tile-slider figcaption::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%);
  transform: scaleX(var(--gallery-progress));
  transform-origin: left center;
}

.caption-morph {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 1.4em;
  filter: contrast(25);
}

@media (min-width: 641px) and (orientation: landscape) {
  .experience-section {
    align-content: center;
  }

  .content-section > h3 {
    font-size: 2.5rem;
  }

  .experience-section > h3 {
    font-size: 2.5rem;
  }

  .experience-gallery {
    gap: clamp(8px, 1.2vh, 16px);
  }

  .tile-slider {
    gap: clamp(6px, 1vh, 12px);
  }

  .gallery-controls {
    gap: 6px clamp(4px, 0.9vw, 10px);
  }
}

.caption-morph__text {
  grid-area: 1 / 1;
  opacity: 0;
  filter: blur(1em);
  transition:
    opacity 1000ms ease,
    filter 1000ms ease;
}

.caption-morph__text.is-active {
  opacity: 1;
  filter: blur(0);
}

.gallery-controls {
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  justify-content: center;
  justify-items: center;
  gap: 10px clamp(4px, 1.2vw, 12px);
  width: min(100%, var(--gallery-width), 430px);
  justify-self: center;
}

.gallery-control {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  height: 22px;
}

.gallery-control .control {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 10px 13px;
  border: 1px solid rgba(245, 241, 232, 0.16);
  color: rgba(245, 241, 232, 0.86);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

.testimonial-grid blockquote p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial-grid cite {
  color: var(--accent);
  background: linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(0, 0, 0, 0.24);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.faq-list details p {
  padding: 0 20px 20px;
}

.host-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "kicker kicker"
    "title title"
    "copy image";
  align-items: start;
  column-gap: clamp(22px, 4vw, 44px);
}

.host-section .section-kicker {
  grid-area: kicker;
  white-space: nowrap;
}

.host-section > h3 {
  grid-area: title;
  white-space: nowrap;
}

.host-copy {
  grid-area: copy;
}

.host-image {
  grid-area: image;
  aspect-ratio: 4 / 5;
}

.final-cta {
  min-height: 420px;
  align-content: center;
  background:
    radial-gradient(circle at center, rgba(186, 38, 54, 0.2), transparent 54%),
    rgba(8, 8, 8, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 640px) {
  .site-nav {
    grid-template-columns: 52px 1fr 72px;
    min-height: 68px;
    padding: 8px 14px;
  }

  .menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(214, 155, 47, 0.82);
    background: rgba(12, 12, 12, 0.48);
    padding: 0;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: linear-gradient(135deg, #fff3a6 0%, #d69b2f 42%, #7c4d13 100%);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span + span {
    margin-top: 0;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .brand-link {
    position: absolute;
    left: 50%;
    justify-self: auto;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
  }

  .language-select {
    grid-column: 3;
    justify-self: end;
  }

  .language-select select {
    min-width: 58px;
    height: 34px;
    padding: 0 8px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    justify-self: stretch;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 10px 14px 16px;
    background: rgba(9, 9, 9, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 16px 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
  }

  .hero {
    position: relative;
    top: auto;
    width: auto;
    margin: 0;
    min-height: calc(100vh - 68px);
    padding: clamp(56px, 14vh, 112px) 20px clamp(44px, 10vh, 84px);
  }

  .hero-poster {
    --poster-safe-top: 20%;
    --poster-safe-right: 16%;
    --poster-safe-bottom: 18%;
    --poster-safe-left: 16%;
    width: min(calc(100vw - 40px), 430px);
  }

  .intro {
    max-width: 100%;
  }

  .eyebrow {
    font-size: clamp(0.9rem, 5vw, 1.25rem);
  }

  .metal-stage {
    --layout-width: auto;
    display: block;
    padding: 0;
  }

  .content-flow {
    gap: 36px;
    padding: 0 20px 64px;
  }

  .content-section {
    padding: 26px 20px;
  }

  .experience-section {
    width: auto;
    margin-left: 0;
  }

  .content-section > h3 {
    font-size: clamp(2rem, 9.9vw, 3.15rem);
  }

  .back-to-top {
    right: 20px;
    left: auto;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }

  .card-grid,
  .format-grid,
  .testimonial-grid,
  .host-section {
    grid-template-columns: 1fr;
  }

  .host-section {
    grid-template-areas:
      "kicker"
      "title"
      "copy"
      "image";
  }

  .host-section .section-kicker,
  .host-section > h3 {
    white-space: normal;
  }

}

@media (max-width: 640px) and (orientation: portrait) {
  .hero {
    padding: clamp(72px, 18vh, 156px) 20px clamp(56px, 12vh, 108px);
  }

  .hero-poster {
    --poster-safe-top: 19%;
    --poster-safe-right: 16%;
    --poster-safe-bottom: 18%;
    --poster-safe-left: 16%;
    width: min(calc(100vw - 40px), 410px);
  }

  h1 {
    font-size: clamp(2.75rem, 20.5cqw, 4.45rem);
  }

  .intro {
    margin-top: clamp(8px, 3cqw, 18px);
    font-size: clamp(0.82rem, 3.8cqw, 1.1rem);
  }

  .hero-link {
    margin-top: clamp(8px, 3.4cqw, 22px);
    padding: clamp(9px, 2.8cqw, 12px) clamp(12px, 4.4cqw, 20px);
    font-size: clamp(0.68rem, 2.9cqw, 0.88rem);
  }

  .content-section > h3 {
    font-size: clamp(1.7rem, 8.4vw, 2.68rem);
  }

  .tile-slider figcaption {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  .gallery-controls {
    gap: 8px 4px;
  }

  .gallery-control .control {
    width: 13px;
    height: 13px;
  }

  .gallery-autoplay-toggle {
    width: 36px;
    height: 36px;
  }

  .gallery-autoplay-icon {
    width: 17px;
    height: 17px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .site-nav {
    min-height: 68px;
    padding: 8px clamp(18px, 3vw, 28px);
  }

  .brand-link {
    width: 54px;
    height: 54px;
  }

  .nav-links {
    gap: clamp(18px, 3vw, 30px);
  }

  .nav-links a {
    font-size: 0.76rem;
  }

  .metal-stage {
    --stage-pad: clamp(18px, 3vw, 28px);
    --stage-gap: clamp(18px, 3vw, 28px);
    gap: var(--stage-gap);
    padding: 0 var(--stage-pad);
  }

  .hero {
    top: 68px;
    height: calc(100vh - 68px);
    min-height: 420px;
    padding: clamp(18px, 4vh, 34px) 0;
  }

  .hero-poster {
    --poster-safe-top: 19%;
    --poster-safe-right: 15%;
    --poster-safe-bottom: 18%;
    --poster-safe-left: 15%;
    width: min(100%, calc((100vh - 68px - clamp(36px, 8vh, 68px)) * 0.8), 430px);
  }

  h1 {
    font-size: clamp(2.4rem, 21cqw, 5.4rem);
  }

  .eyebrow {
    font-size: clamp(0.82rem, 4.4cqw, 1.35rem);
  }

  .intro {
    margin-top: clamp(8px, 2.6cqw, 16px);
    font-size: clamp(0.76rem, 3.1cqw, 1.05rem);
  }

  .hero-link {
    margin-top: clamp(8px, 3cqw, 18px);
    padding: clamp(8px, 2.5cqw, 12px) clamp(12px, 4cqw, 16px);
    font-size: clamp(0.64rem, 2.7cqw, 0.78rem);
  }

  .content-flow {
    gap: 44px;
    padding: 96px 0 64px;
  }

  .content-section {
    padding: clamp(24px, 3vw, 34px);
  }

  .experience-section {
    width: var(--layout-width);
    margin-left: calc(-1 * (var(--hero-column) + var(--stage-gap)));
  }

  .content-section > h3 {
    font-size: 2.5rem;
  }
}

@media (min-width: 641px) and (max-height: 500px) and (orientation: landscape) {
  .site-nav {
    min-height: 58px;
    padding-block: 6px;
  }

  .brand-link {
    width: 46px;
    height: 46px;
  }

  .language-select select {
    height: 32px;
  }

  .hero {
    top: 58px;
    height: calc(100vh - 58px);
    min-height: 0;
    padding: 12px 0;
  }

  .hero-poster {
    --poster-safe-top: 18%;
    --poster-safe-right: 15%;
    --poster-safe-bottom: 18%;
    --poster-safe-left: 15%;
    width: min(100%, calc((100vh - 58px - 24px) * 0.8), 320px);
  }

  h1 {
    font-size: clamp(1.9rem, 18cqw, 4rem);
  }

  .eyebrow {
    font-size: clamp(0.66rem, 3.8cqw, 1rem);
  }

  .intro {
    max-width: 100%;
    margin-top: clamp(6px, 2cqw, 12px);
    font-size: clamp(0.62rem, 2.8cqw, 0.86rem);
    line-height: 1.38;
  }

  .hero-link {
    margin-top: clamp(6px, 2.4cqw, 12px);
    padding: clamp(7px, 2.1cqw, 10px) clamp(10px, 3.3cqw, 14px);
    font-size: clamp(0.58rem, 2.4cqw, 0.72rem);
  }

  .content-flow {
    gap: 32px;
    padding: 76px 0 48px;
  }

  .content-section {
    gap: 16px;
    padding: 22px;
  }

  .content-section > h3 {
    font-size: 2.5rem;
  }

  .content-section p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .feature-image {
    aspect-ratio: 16 / 8;
  }
}

/* Temporary construction-page layout. */
.construction-page .hero {
  top: 0;
  height: 100vh;
}

.construction-page .content-flow {
  align-content: center;
  min-height: 100vh;
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(48px, 8vh, 96px);
}

.construction-page .intro-section {
  align-content: center;
}

@media (max-width: 980px) {
  .construction-page .hero {
    min-height: 100svh;
  }

  .construction-page .content-flow {
    min-height: 100svh;
    padding-top: clamp(56px, 10vh, 96px);
    padding-bottom: clamp(56px, 10vh, 96px);
  }
}
