:root {
  --brand: #202020;
  --surface: #252525;
  --paper: #ffffff;
  --project: #f6dc92;
  --accent: #e61b48;
  --ink: #111111;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--brand);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--brand);
  color: var(--paper);
  font-family: "Ubuntu", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.site-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #161616;
}

.scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 48%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(4, 5, 5, 0.62), transparent 62%),
    var(--hero-image),
    radial-gradient(circle at 72% 42%, #39403e 0, #151918 28%, #060707 72%);
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  filter: saturate(0.68) contrast(1.13);
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 32, 32, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(32, 32, 32, 0.56), transparent 28%);
  mix-blend-mode: multiply;
}

.film-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.09;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 37% 63%, transparent 0 2px, #fff 3px 4px),
    repeating-linear-gradient(87deg, transparent 0 3px, rgba(255, 255, 255, 0.22) 4px);
  background-size: 7px 7px, 11px 11px;
  animation: grain 0.24s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate3d(-1%, 1%, 0); }
  25% { transform: translate3d(2%, -1%, 0); }
  50% { transform: translate3d(-2%, 2%, 0); }
  75% { transform: translate3d(1%, -2%, 0); }
  100% { transform: translate3d(-1%, 1%, 0); }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--brand);
  backdrop-filter: blur(10px);
  cursor: auto;
}

.wordmark {
  position: relative;
  justify-self: start;
  display: flex;
  align-items: center;
  width: clamp(225px, 21vw, 360px);
  height: 80px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.wordmark.has-image .brand-logo,
.game-logo.has-image .game-logo-image {
  opacity: 1;
}

.has-image > .logo-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: clip;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  gap: clamp(24px, 4vw, 62px);
  height: 100%;
  align-items: center;
  justify-self: end;
}

.site-header nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-header nav .nav-active {
  color: var(--paper);
}

.site-header nav .nav-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
  padding: 120px clamp(24px, 3vw, 58px) 82px;
}

.project-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
}

.eyebrow span {
  color: var(--accent);
  font-weight: 700;
}

.hero-copy {
  width: min(100%, 620px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  outline: none;
}

.game-logo {
  position: relative;
  width: 100%;
  min-height: clamp(145px, 15vw, 245px);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}

h1 {
  margin: 0;
  color: var(--paper);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(72px, 8vw, 150px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.55);
}

.game-logo-image {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(1.58);
  transform-origin: center;
  transition: opacity 180ms ease;
}

.description {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  text-shadow: 0 2px 18px #000;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.steam-button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  justify-content: flex-start;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(32, 32, 32, 0.46);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.steam-button:hover,
.steam-button:focus-visible {
  border-color: var(--project);
  background: var(--project);
  color: var(--ink);
  transform: translateY(-2px);
  outline: none;
}

.steam-logo-slot {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.steam-logo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.steam-logo-slot.has-image .steam-logo-image {
  opacity: 1;
}

.button-arrow {
  margin-left: auto;
  font-size: 17px;
}

.game-meta {
  color: rgba(246, 220, 146, 0.78);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.media-library {
  width: 100%;
  margin-top: 22px;
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.media-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  max-height: clamp(310px, 38vh, 430px);
  padding: 2px 4px 2px 2px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--project) rgba(255, 255, 255, 0.08);
}

.media-thumbnails::-webkit-scrollbar {
  width: 6px;
}

.media-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.media-thumbnails::-webkit-scrollbar-thumb {
  background: var(--project);
}

.media-thumb {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 9, 9, 0.72);
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.media-thumb::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.media-thumb:hover,
.media-thumb:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  opacity: 1;
  outline: none;
  transform: translateY(-1px);
}

.media-thumb.is-selected {
  border-color: var(--project);
  box-shadow: 0 0 0 1px var(--project);
}

.media-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 160ms ease;
}

.media-thumb.is-loaded img {
  opacity: 1;
}

.media-thumb.is-loaded .thumb-fallback {
  opacity: 0;
}

.thumb-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.trailer-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ff0000;
}

.media-panel {
  min-width: 0;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(20px, 2.5vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.media-viewer {
  flex: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050505;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.media-viewer iframe,
.media-viewer > img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-viewer > img {
  object-fit: cover;
}

.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
  letter-spacing: 0.08em;
}

.media-placeholder strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.media-placeholder span {
  font-size: 10px;
}

.video-file-notice {
  max-width: 520px;
}

.media-external-link {
  margin-top: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--paper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.media-external-link:hover,
.media-external-link:focus-visible {
  border-color: var(--project);
  background: var(--project);
  color: var(--ink);
  outline: none;
}

.media-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.site-footer {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--brand);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  cursor: auto;
}

.about-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #181818;
}

.about-backdrop {
  position: absolute;
  inset: 96px 0 54px;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 74% 44%, rgba(230, 27, 72, 0.12), transparent 24%),
    radial-gradient(circle at 24% 70%, rgba(255, 255, 255, 0.05), transparent 28%),
    #181818;
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.about-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 26%, rgba(0, 0, 0, 0.68) 100%);
}

.about-stage .film-grain,
.contact-stage .film-grain {
  animation: none;
}

.about-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 132px clamp(28px, 7vw, 120px) 92px;
}

.about-shell {
  width: min(100%, 1180px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}

.about-copy {
  min-width: 0;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.about-eyebrow span {
  color: var(--accent);
}

.about-title {
  margin: 0;
  color: var(--paper);
  font-size: clamp(42px, 4.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.about-text {
  max-width: 680px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.72;
}

.about-text p {
  margin: 0 0 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong,
.about-text [data-age] {
  color: var(--paper);
  font-weight: 700;
}

.portrait-frame {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #222;
  box-shadow: 22px 22px 0 rgba(230, 27, 72, 0.12), 0 24px 80px rgba(0, 0, 0, 0.34);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 34%;
  height: 3px;
  background: var(--accent);
}

.portrait-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.76) contrast(1.06);
  transition: opacity 180ms ease;
}

.portrait-frame.is-loaded > img {
  opacity: 1;
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  letter-spacing: 0.18em;
}

.portrait-placeholder span {
  font-size: 12px;
  font-weight: 700;
}

.portrait-placeholder small {
  font-size: 8px;
}

.portrait-frame.is-loaded .portrait-placeholder {
  display: none;
}

.portrait-frame figcaption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.socials-section {
  margin-top: clamp(42px, 6vh, 68px);
}

.socials-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.socials-heading span:last-child {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.social-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(16px, 2.2vw, 28px);
  margin-top: 20px;
}

.social-link {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 180ms ease, transform 180ms ease;
}

.social-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease;
}

.social-fallback {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.social-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.social-icon.has-image img {
  opacity: 1;
}

.social-icon.has-image .social-fallback {
  opacity: 0;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--paper);
  transform: translateY(-3px);
  outline: none;
}

.social-link:hover .social-icon,
.social-link:focus-visible .social-icon {
  border-color: var(--accent);
  background: rgba(230, 27, 72, 0.13);
}

.contact-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #181818;
}

.contact-backdrop {
  position: absolute;
  inset: 96px 0 54px;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(230, 27, 72, 0.1), transparent 30%),
    #181818;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.contact-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 25%, rgba(0, 0, 0, 0.7) 100%);
}

.contact-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 132px clamp(28px, 7vw, 120px) 92px;
}

.contact-shell {
  width: min(100%, 1040px);
  text-align: center;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.contact-eyebrow span {
  color: var(--accent);
}

.contact-title {
  margin: 0;
  color: var(--paper);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-shadow: none;
}

.contact-intro {
  max-width: 760px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.72;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(38px, 6vh, 62px);
}

.contact-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-card strong {
  margin-top: 7px;
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.contact-glyph {
  position: absolute;
  inset: 0;
  display: block;
}

.contact-glyph::before,
.contact-glyph::after {
  content: "";
  position: absolute;
  display: block;
}

.contact-glyph-person::before {
  top: 1px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-glyph-person::after {
  left: 4px;
  bottom: 2px;
  width: 22px;
  height: 12px;
  border-radius: 10px 10px 3px 3px;
  background: var(--accent);
}

.contact-glyph-location::before {
  top: 1px;
  left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
}

.contact-glyph-location::after {
  top: 6px;
  left: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #181818;
}

.contact-glyph-email::before {
  top: 5px;
  left: 1px;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  background: var(--accent);
}

.contact-glyph-email::after {
  top: 5px;
  left: 4px;
  width: 22px;
  height: 13px;
  background:
    linear-gradient(35deg, transparent 44%, #181818 46% 53%, transparent 55%) left top / 50% 100% no-repeat,
    linear-gradient(-35deg, transparent 44%, #181818 46% 53%, transparent 55%) right top / 50% 100% no-repeat;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--accent);
  background: rgba(230, 27, 72, 0.08);
  transform: translateY(-3px);
  outline: none;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    padding-inline: 24px;
  }

  .media-panel {
    padding-left: 18px;
  }

  .game-logo {
    min-height: 145px;
  }

  .game-logo-image {
    transform: scale(1.1);
  }

  .description {
    font-size: 14px;
  }

  .media-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 310px;
  }
}

@media (max-width: 900px) {
  .site-stage {
    overflow: visible;
  }

  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .wordmark {
    width: clamp(155px, 39vw, 210px);
    height: 60px;
    font-size: 10px;
  }

  .brand-logo {
    max-height: 52px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding: 94px 20px 86px;
  }

  .eyebrow {
    position: static;
    margin-bottom: 4px;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .game-logo {
    min-height: clamp(125px, 28vw, 195px);
    margin-bottom: 6px;
  }

  .game-logo-image {
    transform: scale(1.4);
  }

  h1 {
    margin-bottom: 15px;
    font-size: clamp(64px, 21vw, 105px);
  }

  .description {
    max-width: 600px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: center;
    gap: 14px;
    margin-top: 25px;
  }

  .steam-button {
    width: min(100%, 280px);
  }

  .media-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 320px;
  }

  .media-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .media-viewer {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .site-footer {
    height: 48px;
    padding: 0 20px;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .scene {
    background-position: 60% center;
    transform: none;
  }

  .about-stage {
    overflow: visible;
  }

  .contact-stage {
    overflow: visible;
  }

  .about-backdrop {
    inset: 72px 0 48px;
  }

  .contact-backdrop {
    inset: 72px 0 48px;
  }

  .about-page {
    min-height: auto;
    padding: 108px 20px 82px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-eyebrow {
    margin-bottom: 18px;
  }

  .about-title {
    font-size: clamp(38px, 10.5vw, 62px);
  }

  .about-text {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.65;
  }

  .portrait-frame {
    width: min(88vw, 340px);
    justify-self: center;
    box-shadow: 14px 14px 0 rgba(230, 27, 72, 0.12), 0 20px 60px rgba(0, 0, 0, 0.32);
  }

  .socials-section {
    margin-top: 52px;
  }

  .contact-page {
    min-height: auto;
    padding: 118px 20px 88px;
  }

  .contact-title {
    font-size: clamp(52px, 15vw, 76px);
  }

  .contact-intro {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 42px auto 0;
  }

  .contact-card {
    min-height: 154px;
  }
}

@media (max-width: 480px) {
  .site-footer span:last-child {
    display: none;
  }

  .site-header nav {
    gap: 13px;
  }

  .site-header nav a {
    font-size: 7px;
  }

  .gallery-heading span:last-child {
    display: none;
  }

  .media-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-title br {
    display: none;
  }

  .social-links {
    justify-content: space-between;
    gap: 14px 8px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-name {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
