:root {
  --paper: #f5dfb7;
  --paper-light: #ffe9c4;
  --ink: #17191a;
  --muted: #524b43;
  --gold: #b8732d;
  --gold-bright: #d39a54;
  --gold-dark: #7b481d;
  --dark: #151616;
  --dark-2: #20201e;
  --white: #fff8ea;
  --max: 1420px;
  --header-height: 82px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 231, 186, .8), transparent 32rem),
    linear-gradient(135deg, #211f1c, #0f1010);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.06) 25%, transparent 25%);
  background-size: 6px 6px;
}

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-frame {
  position: relative;
  width: min(100%, 1640px);
  margin: 0 auto;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 249, 225, .82), transparent 34rem),
    linear-gradient(90deg, rgba(118, 76, 30, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(118, 76, 30, .028) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .45);
}

main > section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(118px, 164px) 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(100%, 1640px);
  min-height: var(--header-height);
  padding: 10px clamp(22px, 5vw, 84px);
  background:
    linear-gradient(rgba(255, 238, 204, .96), rgba(255, 231, 190, .92)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .7), transparent 34rem);
  border-bottom: 1px solid rgba(95, 61, 26, .18);
  box-shadow: 0 10px 24px rgba(54, 35, 14, .12);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.brand img,
.footer-logo img {
  width: 100%;
  max-height: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 2px rgba(89, 55, 24, .16));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4.8vw, 64px);
  align-items: center;
  color: #2b2d2d;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: clamp(.78rem, .95vw, .95rem);
}

.site-nav a::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 4px;
  content: "";
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  background: var(--gold);
}

.nav-toggle {
  display: none;
}

.steam-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, #252320 0%, #151515 58%, #0d0e0e 100%),
    #121313;
  border: 2px solid var(--gold);
  outline: 1px solid rgba(65, 37, 15, .92);
  outline-offset: 3px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 224, 169, .13),
    inset 0 0 22px rgba(0, 0, 0, .58),
    0 10px 18px rgba(42, 26, 11, .2);
  line-height: 0;
}

.steam-button:hover,
.steam-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold-bright);
}

.steam-button__image {
  width: min(100%, 292px);
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.steam-button--small {
  min-height: 42px;
  padding: 7px 16px;
}

.steam-button--small .steam-button__image {
  width: 174px;
  max-height: 23px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.35fr);
  align-items: center;
  min-height: clamp(690px, 76vh, 860px);
  padding: clamp(42px, 6vw, 84px) clamp(22px, 5vw, 98px) clamp(36px, 5vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 29% 44%, rgba(255, 249, 223, .94), transparent 24rem),
    linear-gradient(90deg, rgba(251, 228, 188, 1) 0%, rgba(251, 228, 188, .95) 30%, rgba(251, 228, 188, .62) 46%, rgba(251, 228, 188, .16) 68%, rgba(251, 228, 188, 0) 82%),
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(116, 75, 28, .18) 1px, transparent 1px),
    radial-gradient(circle at 30% 22%, rgba(72, 43, 18, .08) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(103, 69, 28, .08), transparent 25%, rgba(255,255,255,.08) 65%, transparent);
  background-size: 14px 14px, 42px 42px, 100% 100%;
  mix-blend-mode: multiply;
  opacity: .48;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 22% 56%, rgba(255, 244, 216, .78) 0%, rgba(255, 238, 202, .58) 28rem, transparent 44rem),
    linear-gradient(90deg, rgba(245, 223, 183, .92) 0%, rgba(245, 223, 183, .78) 22%, rgba(245, 223, 183, .36) 42%, transparent 62%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: clamp(0px, 3vw, 54px);
}

.hero__logo {
  width: min(100%, 500px);
  margin: 0 0 20px;
  filter: drop-shadow(0 8px 4px rgba(65, 44, 21, .22));
}

.hero__logo--capsule {
  width: min(72%, 380px);
  margin: 0 auto 34px 8px;
  filter: drop-shadow(0 14px 10px rgba(65, 44, 21, .26));
}

.hero h1 {
  max-width: 480px;
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-size: clamp(1.65rem, 3.2vw, 2.58rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero p {
  max-width: 420px;
  margin: 0 0 36px;
  color: #3d3d3a;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.hero__art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -2px;
  width: min(86%, 1320px);
  overflow: hidden;
}

.hero__arena {
  position: absolute;
  top: 54px;
  right: -16%;
  width: 132%;
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: 42% 50%;
  opacity: .9;
  clip-path: polygon(16% 10%, 100% 0, 100% 100%, 3% 100%, 0 32%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 12%, #000 30%);
}

.section-dark {
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 30%, rgba(196, 124, 55, .14), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(255, 222, 150, .055), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25%) 0 0 / 5px 5px,
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(0,0,0,.18), transparent 38%, rgba(0,0,0,.22)),
    var(--dark);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 238, 196, .055) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 0, 0, .42) 0 1px, transparent 2px);
  background-position: 0 0, 11px 9px;
  background-size: 22px 22px, 37px 37px;
  mix-blend-mode: screen;
  opacity: .38;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.home-trailer {
  padding: clamp(36px, 4.5vw, 58px) clamp(22px, 6vw, 96px) clamp(44px, 5.5vw, 70px);
}

.home-trailer__media {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 2px solid rgba(184, 115, 45, .78);
  background: rgba(255, 248, 234, .035);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .32),
    inset 0 0 0 1px rgba(255, 236, 190, .2);
}

.home-trailer__media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.features {
  padding: clamp(36px, 4vw, 58px) clamp(22px, 5vw, 90px) clamp(42px, 4.8vw, 64px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
  gap: 26px;
  align-items: center;
  width: min(700px, 100%);
  margin: 0 auto 32px;
  color: var(--gold);
  text-align: center;
}

.section-title span {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(179, 112, 47, .85));
}

.section-title span:last-child {
  background: linear-gradient(90deg, rgba(179, 112, 47, .85), transparent);
}

.section-title span::after,
.wishlist__line::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.section-title span:first-child::after {
  right: -5px;
}

.section-title span:last-child::after {
  left: -5px;
}

.section-title h2,
.wishlist h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section-title--dark {
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 8px 0;
  row-gap: 0;
  border-top: 1px solid rgba(197, 146, 88, .28);
  border-bottom: 1px solid rgba(197, 146, 88, .28);
}

.feature {
  display: grid;
  justify-items: center;
  padding: 18px clamp(18px, 2.7vw, 42px);
  text-align: center;
  border-right: 1px solid rgba(197, 146, 88, .54);
}

.feature:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(197, 146, 88, .34);
}

.feature:last-child {
  border-right: 0;
}

.feature:nth-child(3n) {
  border-right: 0;
}

.feature__icon {
  --feature-icon: none;
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
}

.feature__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffd78a 0%, var(--gold-bright) 52%, var(--gold) 100%);
  filter: drop-shadow(0 6px 10px rgba(211, 154, 84, .22));
  -webkit-mask-image: var(--feature-icon);
  mask-image: var(--feature-icon);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.feature__icon--impact {
  --feature-icon: url("assets/feature-icons/impact.svg");
}

.feature__icon--controller {
  --feature-icon: url("assets/feature-icons/controller.svg");
}

.feature__icon--upgrade {
  --feature-icon: url("assets/feature-icons/upgrade.svg");
}

.feature__icon--choice {
  --feature-icon: url("assets/feature-icons/choice.svg");
}

.feature__icon--objective {
  --feature-icon: url("assets/feature-icons/objective.svg");
}

.feature__icon--progression {
  --feature-icon: url("assets/feature-icons/progression.svg");
}

.feature h3 {
  margin: 0 0 10px;
  max-width: 330px;
  font-size: clamp(.95rem, 1.25vw, 1.1rem);
  letter-spacing: .02em;
  line-height: 1.25;
}

.feature p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 248, 234, .82);
  font-size: clamp(.9rem, 1.03vw, .98rem);
  font-weight: 700;
  line-height: 1.45;
}

.screenshots {
  padding: clamp(36px, 4vw, 56px) clamp(18px, 5vw, 78px) clamp(42px, 5vw, 62px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 249, 224, .95), transparent 24rem),
    radial-gradient(circle, rgba(116, 75, 28, .14) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(118, 76, 30, .05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(#f7e2bc, #f3dbaf);
}

.gallery {
  position: relative;
  width: min(1470px, 100%);
  margin: 0 auto;
  padding: 0 48px;
}

.gallery__viewport {
  overflow: hidden;
}

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  transition: transform .45s ease;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid rgba(184, 115, 45, .82);
  box-shadow:
    0 8px 16px rgba(91, 54, 20, .16),
    inset 0 0 0 1px rgba(255, 236, 190, .28);
}

.gallery__arrow {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 64px;
  color: #fff3dd;
  cursor: pointer;
  background: rgba(33, 30, 25, .75);
  border: 2px solid rgba(177, 109, 45, .75);
}

.gallery__arrow svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.gallery__arrow--prev {
  left: 0;
}

.gallery__arrow--next {
  right: 0;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.gallery__dots button {
  width: 15px;
  height: 15px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.gallery__dots button.active {
  background: var(--gold);
}

.wishlist {
  padding: clamp(36px, 4.5vw, 58px) clamp(28px, 8vw, 150px);
  text-align: center;
}

.wishlist__content {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.wishlist__cta-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  width: min(1320px, 100%);
}

.wishlist h2 {
  color: var(--gold);
}

.wishlist__line {
  position: relative;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.wishlist__line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.wishlist__line:first-child::after {
  right: -9px;
}

.wishlist__line:last-child::after {
  left: -9px;
}

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

.steam-button--large .steam-button__image {
  width: min(100%, 330px);
  max-height: 38px;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 88px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .65), transparent 22rem),
    radial-gradient(circle, rgba(116, 75, 28, .1) 1px, transparent 1px) 0 0 / 18px 18px,
    #f6e1bb;
  border-top: 1px solid rgba(184, 115, 45, .28);
}

.footer-logo {
  width: 150px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 70px);
  color: #3c3d3b;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  margin: -10px 0 0;
  color: #72706a;
  font-size: .86rem;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #292c2c;
}

.socials svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.page-frame--presskit {
  background: #050505;
  color: var(--white);
}

.presskit {
  padding: clamp(44px, 6vw, 86px) clamp(22px, 6vw, 96px) clamp(70px, 8vw, 118px);
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 115, 45, .15), transparent 34rem),
    linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25%) 0 0 / 5px 5px,
    #050505;
}

.presskit section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.presskit-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 38px;
}

.presskit-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--white);
  border: 2px solid rgba(255, 248, 234, .82);
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.presskit-tabs a:hover,
.presskit-tabs a:focus-visible {
  color: #050505;
  background: var(--white);
}

.presskit-hero,
.presskit-section {
  width: min(980px, 100%);
  margin: 0 auto;
}

.presskit-section--wide {
  width: min(1280px, 100%);
}

.presskit-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 520px);
  margin-bottom: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 234, .14);
}

.presskit-hero__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.presskit-section {
  padding: 30px 0 18px;
}

.presskit-section + .presskit-section {
  margin-top: 22px;
}

.presskit-section h1,
.presskit-section h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .98;
  text-transform: uppercase;
}

.presskit-section h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.presskit-overview {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(320px, 1.28fr);
  gap: clamp(34px, 7vw, 92px);
}

.presskit-facts dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.presskit-facts dt {
  color: var(--white);
  font-weight: 900;
}

.presskit-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 248, 234, .72);
}

.presskit-facts a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.presskit-copy p,
.presskit-media-card p {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 248, 234, .78);
  font-size: 1.02rem;
  line-height: 1.58;
}

.presskit-feature-list {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 6px 0 0;
  padding-left: 20px;
  color: rgba(255, 248, 234, .78);
  font-size: 1.02rem;
  line-height: 1.52;
}

.presskit-feature-list li::marker {
  color: var(--gold-bright);
}

.presskit-media-card {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(240px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 248, 234, .16);
  background: rgba(255, 248, 234, .035);
}

.presskit-media-card--trailer {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.presskit-media-card--trailer video {
  max-height: 552px;
}

.presskit-media-card img,
.presskit-media-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.presskit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.presskit-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  border: 2px solid rgba(255, 248, 234, .82);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.presskit-actions a:hover,
.presskit-actions a:focus-visible {
  color: #050505;
  background: var(--white);
}

.presskit-actions--section {
  margin: 0 0 22px;
}

.presskit-grid {
  display: grid;
  gap: 18px;
}

.presskit-grid--screens {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.presskit-grid--screens a {
  display: block;
}

.presskit-grid--screens img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 234, .16);
}

.presskit-grid--assets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.presskit-grid--assets article {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 250px;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(255, 248, 234, .16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25%) 0 0 / 5px 5px,
    rgba(255, 248, 234, .035);
}

.presskit-grid--assets a {
  display: grid;
  gap: 14px;
  align-content: center;
  color: inherit;
}

.presskit-grid--assets img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.site-footer--presskit {
  background: #050505;
  border-top: 1px solid rgba(255, 248, 234, .14);
}

.site-footer--presskit nav,
.site-footer--presskit p {
  color: rgba(255, 248, 234, .74);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 142px auto auto;
  }

  .site-nav {
    gap: 28px;
  }

  .steam-button--small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 720px;
    padding-top: clamp(44px, 6vw, 68px);
    background:
      radial-gradient(circle at 34% 35%, rgba(255, 249, 223, .92), transparent 22rem),
      linear-gradient(90deg, rgba(251, 228, 188, 1) 0%, rgba(251, 228, 188, .9) 36%, rgba(251, 228, 188, .4) 68%, rgba(251, 228, 188, .08) 100%),
      var(--paper);
  }

  .hero::after {
    display: none;
  }

  .hero__copy {
    max-width: 560px;
    margin-left: clamp(18px, 6vw, 70px);
    text-align: center;
  }

  .hero h1,
  .hero p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero .steam-button {
    justify-self: center;
  }

  .hero__art {
    width: 100%;
    opacity: .58;
  }

  .hero__arena {
    top: 0;
    right: -36%;
    width: 152%;
    height: 100%;
    object-position: 42% 46%;
    clip-path: none;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.26) 24%, #000 48%);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: 40px minmax(92px, 126px) minmax(132px, 1fr);
    gap: 12px;
    min-height: var(--header-height);
    padding: 10px 18px;
  }

  .brand {
    grid-column: 2;
    justify-self: start;
  }

  .brand img {
    max-height: 48px;
  }

  .nav-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px;
    cursor: pointer;
    background: #1a1b1b;
    border: 2px solid var(--gold);
  }

  .nav-toggle__bar {
    width: 100%;
    height: 3px;
    background: var(--white);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px 0 0;
  }

  .site-nav.open {
    display: flex;
  }

  .steam-button--small {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    min-height: 42px;
    width: auto;
    padding: 8px 12px;
  }

  .steam-button--small .steam-button__image {
    width: clamp(142px, 30vw, 174px);
    max-height: 24px;
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(106, 68, 28, .24);
  }

  .hero {
    min-height: 0;
    padding: clamp(28px, 4vh, 42px) 28px clamp(38px, 5vh, 54px);
    background:
      radial-gradient(circle at 44% 32%, rgba(255, 249, 223, .9), transparent 22rem),
      linear-gradient(180deg, rgba(251, 228, 188, .52) 0%, rgba(251, 228, 188, .92) 52%, rgba(251, 228, 188, 1) 100%),
      var(--paper);
  }

  .hero__copy {
    max-width: 620px;
    margin-left: 0;
    justify-self: center;
    text-align: center;
  }

  .hero__logo {
    width: min(94vw, 430px);
    margin-bottom: 16px;
  }

  .hero__logo--capsule {
    width: min(58vw, 270px);
    margin: 0 auto 26px;
  }

  .hero__art {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    opacity: .54;
  }

  .hero__arena {
    top: 0;
    right: -46%;
    width: 164%;
    height: 100%;
    object-position: 44% 42%;
    clip-path: none;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.8) 32%, rgba(0,0,0,.3) 68%, transparent 100%);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .feature {
    padding: 24px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 146, 88, .54);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .gallery {
    padding: 0;
  }

  .gallery__track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .gallery__arrow {
    top: calc(50% - 46px);
    width: 38px;
    height: 58px;
  }

  .wishlist__cta-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wishlist__cta-row .wishlist__line {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .presskit {
    padding: 34px 22px 64px;
  }

  .presskit-tabs {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 28px;
  }

  .presskit-tabs a {
    min-height: 40px;
    padding: 0 12px;
    font-size: .82rem;
  }

  .presskit-hero {
    min-height: 260px;
    margin-bottom: 32px;
  }

  .presskit-overview,
  .presskit-media-card,
  .presskit-grid--screens,
  .presskit-grid--assets {
    grid-template-columns: 1fr;
  }

  .presskit-overview {
    gap: 30px;
  }

  .presskit-grid--assets article {
    min-height: 210px;
  }
}

@media (max-width: 520px) {
  .steam-button {
    width: min(100%, 430px);
    min-height: 58px;
    padding: 10px 16px;
  }

  .site-header .steam-button--small {
    width: auto;
    min-height: 40px;
    padding: 8px 10px;
  }

  .site-header .steam-button--small .steam-button__image {
    width: clamp(122px, 36vw, 150px);
    max-height: 22px;
  }

  .steam-button__image,
  .steam-button--large .steam-button__image {
    width: min(100%, 300px);
    max-height: 34px;
  }

  .section-title {
    gap: 14px;
  }

  .section-title h2,
  .wishlist h2 {
    font-size: 1.25rem;
  }
}
