@font-face {
  font-family: "Inter Variable";
  src: url("/assets/fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Jaro Variable";
  src: url("/assets/fonts/jaro-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #08090b;
  --ink-soft: #0d0f12;
  --panel: #111318;
  --paper: #f1ede5;
  --paper-muted: #aaa59d;
  --red: #d7272d;
  --red-bright: #f23a3f;
  --amber: #f0a34a;
  --line: rgba(241, 237, 229, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Jaro Variable", Impact, sans-serif;
  --body: "Inter Variable", Inter, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--red);
  color: white;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.page-grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(96px, 12vw, 180px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3.4rem, 8.5vw, 8.4rem);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.52));
}

.brand span,
.footer-brand span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.primary-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-steam)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-steam {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-steam:hover,
.nav-steam:focus-visible {
  border-color: var(--red-bright);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.72);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  align-items: end;
}

.hero-media,
.hero-shade,
.hero-rule {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(calc(1.025 + var(--hero-shift, 0) * 0.00003));
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.92) 0%, rgba(6, 7, 9, 0.7) 32%, rgba(6, 7, 9, 0.08) 68%, rgba(6, 7, 9, 0.3) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(8, 9, 11, 0.12) 36%, rgba(8, 9, 11, 0.42) 100%);
}

.hero-rule {
  z-index: -1;
  left: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  width: 1px;
  background: linear-gradient(transparent 12%, rgba(255, 255, 255, 0.25) 28%, rgba(255, 255, 255, 0.08) 86%, transparent);
}

.hero-content {
  padding-top: 190px;
  padding-bottom: clamp(150px, 18vh, 210px);
}

.hero-content .eyebrow {
  color: #ff575c;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(4.2rem, 10vw, 10.5rem);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(241, 237, 229, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 16px 36px rgba(171, 18, 23, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(6, 7, 9, 0.28);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: white;
  background: var(--paper);
  color: var(--ink);
}

.steam-mark {
  position: relative;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.steam-mark::before,
.steam-mark::after {
  position: absolute;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.steam-mark::before {
  top: 2px;
  right: 2px;
  width: 5px;
  height: 5px;
}

.steam-mark::after {
  bottom: 1px;
  left: 0;
  width: 6px;
  height: 6px;
}

.hero-meta {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 42px;
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  margin-right: 24px;
  color: var(--red-bright);
  content: "/";
}

.scroll-cue {
  position: absolute;
  bottom: 31px;
  left: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 55px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  display: block;
  width: 24px;
  height: 1px;
  animation: scroll-line 1.8s ease-in-out infinite;
  background: white;
  content: "";
}

@keyframes scroll-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(250%); }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding-block: 17px;
  animation: ticker 28s linear infinite;
}

.ticker i {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--red);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.story-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.section-number {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.story-heading h2 {
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.story-copy {
  padding-top: 48px;
  color: var(--paper-muted);
}

.story-copy .lead {
  color: var(--paper);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 620;
  line-height: 1.45;
}

.story-poster {
  position: relative;
  grid-column: 1 / -1;
  min-height: min(62vw, 680px);
  margin-top: 50px;
  overflow: hidden;
  background: #151619;
  clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 4% 100%, 0 92%);
}

.story-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.82), transparent 50%);
  content: "";
}

.story-poster img {
  width: 100%;
  height: 100%;
  min-height: min(62vw, 680px);
  object-fit: cover;
}

.poster-caption {
  position: absolute;
  z-index: 1;
  bottom: clamp(28px, 5vw, 62px);
  left: clamp(28px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.2vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.poster-caption strong {
  color: var(--red-bright);
  font-weight: 400;
}

.journey-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(215, 39, 45, 0.08), transparent 35%),
    var(--ink-soft);
}

.journey-intro {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 40px;
  align-items: end;
}

.journey-intro h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.journey-grid {
  display: grid;
  padding: 0;
  margin: clamp(70px, 9vw, 120px) 0 0;
  counter-reset: journey;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.journey-card {
  position: relative;
  min-height: 340px;
  padding: 34px clamp(24px, 3vw, 42px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 1px solid var(--line);
  transition: background 200ms ease, transform 200ms ease;
}

.journey-card:first-child {
  border-left: 1px solid var(--line);
}

.journey-card::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transition: width 260ms ease;
}

.journey-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.035);
}

.journey-card:hover::before {
  width: 100%;
}

.journey-index {
  color: var(--red-bright);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.journey-card h3 {
  margin: 72px 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.journey-card p {
  margin-bottom: 0;
  color: var(--paper-muted);
}

.city-section {
  display: grid;
  min-height: min(90vw, 980px);
  overflow: hidden;
  isolation: isolate;
  align-items: center;
}

.city-media,
.city-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.city-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.city-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.9) 0%, rgba(8, 9, 11, 0.48) 48%, rgba(8, 9, 11, 0.1) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 28%, transparent 76%, var(--ink-soft) 100%);
}

.city-content {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 40px;
  align-items: end;
}

.city-content .eyebrow,
.city-content h2 {
  grid-column: 1;
}

.city-content h2 {
  max-width: 760px;
}

.city-content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(241, 237, 229, 0.8);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.city-stamp {
  display: grid;
  width: 250px;
  height: 250px;
  place-content: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.city-stamp::before,
.city-stamp::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
}

.city-stamp span {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.city-stamp strong {
  margin-block: 5px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.arrival-section {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.arrival-copy {
  position: relative;
  z-index: 2;
}

.arrival-copy h2 {
  min-width: 600px;
  margin-right: -180px;
  font-size: clamp(4rem, 7.4vw, 7.3rem);
}

.arrival-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 30px;
  color: var(--paper-muted);
}

.arrival-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 92%, 93% 100%, 0 100%, 0 8%);
}

.arrival-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.36), transparent 42%);
  content: "";
}

.arrival-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.arrival-label {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  padding: 8px 12px;
  background: rgba(8, 9, 11, 0.78);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heat-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(215, 39, 45, 0.2), transparent 30%),
    linear-gradient(110deg, #151113, #090a0c 56%);
}

.heat-section::before {
  position: absolute;
  top: -25%;
  right: 4%;
  width: min(60vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 39, 45, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(215, 39, 45, 0.025), 0 0 0 170px rgba(215, 39, 45, 0.018);
  content: "";
}

.heat-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(42px, 7vw, 100px);
}

.heat-title h2 {
  font-size: clamp(4rem, 7.8vw, 8.2rem);
}

.heat-copy {
  align-self: end;
  color: var(--paper-muted);
}

.heat-copy p:first-child {
  color: var(--paper);
  font-size: 1.22rem;
}

.heat-quote {
  position: relative;
  grid-column: 1 / -1;
  margin-top: 60px;
  padding: 54px clamp(28px, 6vw, 80px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.heat-quote > span {
  position: absolute;
  top: 5px;
  right: 38px;
  color: rgba(215, 39, 45, 0.28);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.heat-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.heat-quote small {
  display: block;
  margin-top: 20px;
  color: var(--red-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scenes-heading {
  display: grid;
  margin-bottom: clamp(48px, 7vw, 90px);
  grid-template-columns: 1.4fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.scenes-heading h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.scenes-heading > p {
  margin: 0;
  color: var(--paper-muted);
}

.scenes-heading em {
  color: var(--paper);
  font-style: normal;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.scene-card {
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #15171a;
  text-align: left;
}

button.scene-card {
  cursor: zoom-in;
}

.scene-card-wide {
  grid-row: span 2;
  min-height: 638px;
}

.scene-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.9), transparent 48%);
  content: "";
  transition: background 220ms ease;
}

.scene-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}

.scene-card:hover img,
.scene-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.scene-card > span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.scene-card strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.scene-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.steam-section {
  position: relative;
  display: grid;
  min-height: 780px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
  place-items: center;
  text-align: center;
}

.steam-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(8, 9, 11, 0.58), rgba(8, 9, 11, 0.9)),
    image-set(url("/assets/images/art/dam.avif") type("image/avif"), url("/assets/images/art/dam.webp") type("image/webp")) center 57% / cover;
  filter: saturate(0.72);
}

.steam-section::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at center, rgba(215, 39, 45, 0.18), transparent 44%);
  content: "";
}

.steam-content {
  display: flex;
  max-width: 830px;
  flex-direction: column;
  align-items: center;
  padding-block: 100px;
}

.steam-content .eyebrow::before {
  display: none;
}

.steam-content h2 {
  font-size: clamp(4.2rem, 9vw, 9rem);
}

.steam-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 35px;
  color: rgba(241, 237, 229, 0.8);
  font-size: 1.12rem;
}

.steam-content > small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button-large {
  min-height: 64px;
  padding-inline: 34px;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.steam-icon {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  border: 3px solid var(--paper);
  border-radius: 50%;
}

.steam-icon i,
.steam-icon b {
  position: absolute;
  border: 3px solid var(--paper);
  border-radius: 50%;
}

.steam-icon i {
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
}

.steam-icon b {
  bottom: 8px;
  left: 6px;
  width: 22px;
  height: 22px;
}

.steam-icon::after {
  position: absolute;
  top: 35px;
  left: 22px;
  width: 31px;
  height: 3px;
  transform: rotate(-35deg);
  transform-origin: left;
  background: var(--paper);
  content: "";
}

.site-footer {
  padding-block: 72px 48px;
  border-top: 1px solid var(--line);
  background: #060709;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-meta p,
.footer-legal p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-meta a {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--red-bright);
}

.footer-legal {
  text-align: right;
}

.lightbox {
  width: min(1400px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #07080a;
  color: white;
}

.lightbox::backdrop {
  background: rgba(3, 4, 5, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 40px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
}

.error-page {
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  place-items: center;
}

.error-media {
  position: fixed;
  z-index: -2;
  inset: 0;
}

.error-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-page::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.5)), linear-gradient(0deg, rgba(7, 8, 10, 0.8), transparent);
  content: "";
}

.error-content {
  width: min(760px, calc(100% - 40px));
  padding-block: 70px;
}

.error-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(70px, 12vh, 130px);
}

.error-brand img {
  width: 150px;
  height: auto;
}

.error-brand span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.error-content h1 {
  max-width: 720px;
  font-size: clamp(4rem, 11vw, 8rem);
}

.error-content > p:not(.eyebrow) {
  margin: 26px 0 34px;
  color: rgba(241, 237, 229, 0.72);
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .nav-toggle {
    z-index: 2;
    display: grid;
  }

  .nav-open .nav-toggle span:not(.sr-only):first-of-type {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:not(.sr-only):last-of-type {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 96px 32px 50px;
    opacity: 0;
    background: rgba(8, 9, 11, 0.98);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .nav-open .primary-nav {
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    font-family: var(--display);
    font-size: clamp(2.5rem, 11vw, 5rem);
    font-weight: 400;
    line-height: 1;
  }

  .primary-nav .nav-steam {
    margin-top: 20px;
    padding: 16px 20px;
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 850;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 7, 9, 0.88), rgba(6, 7, 9, 0.18)),
      linear-gradient(0deg, var(--ink) 0%, rgba(8, 9, 11, 0.26) 52%, rgba(8, 9, 11, 0.55) 100%);
  }

  .hero-meta {
    display: none;
  }

  .story-section,
  .journey-intro,
  .city-content,
  .arrival-section,
  .heat-grid,
  .scenes-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-heading {
    grid-column: 1;
  }

  .story-copy {
    padding-top: 0;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card,
  .journey-card:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .journey-card h3 {
    margin-top: 38px;
  }

  .city-section {
    min-height: 920px;
    align-items: end;
  }

  .city-content {
    gap: 54px;
  }

  .city-stamp {
    justify-self: start;
  }

  .arrival-copy h2 {
    min-width: 0;
    margin-right: 0;
  }

  .arrival-visual,
  .arrival-visual img {
    min-height: 520px;
  }

  .heat-quote {
    grid-column: 1;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .scene-card,
  .scene-card-wide {
    min-height: min(64vw, 460px);
    grid-row: auto;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding-block: 92px;
  }

  .brand img {
    width: 92px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .story-section {
    gap: 24px;
  }

  .section-number {
    display: none;
  }

  h2,
  .story-heading h2,
  .journey-intro h2,
  .arrival-copy h2,
  .heat-title h2,
  .scenes-heading h2 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

  .story-poster,
  .story-poster img {
    min-height: 540px;
  }

  .story-poster img {
    object-position: 64% center;
  }

  .poster-caption {
    font-size: 2.6rem;
  }

  .city-media img {
    object-position: 58% center;
  }

  .city-stamp {
    width: 190px;
    height: 190px;
  }

  .city-stamp strong {
    font-size: 1.8rem;
  }

  .arrival-visual,
  .arrival-visual img {
    min-height: 460px;
  }

  .arrival-visual img {
    object-position: 58% center;
  }

  .heat-quote {
    padding: 38px 22px;
  }

  .heat-quote > span {
    right: 14px;
    font-size: 7rem;
  }

  .scene-card > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .scene-card small {
    text-align: left;
  }

  .steam-section {
    min-height: 720px;
  }

  .footer-grid {
    gap: 34px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
