:root {
  --ink: #f8f1dc;
  --paper: #ead8ad;
  --gold: #f2bf3f;
  --gold-dark: #b77a24;
  --ember: #de6f37;
  --green: #9dbf78;
  --night: #11100d;
  --panel: #201813;
  --panel-deep: #130f0c;
  --line: rgba(244, 208, 137, 0.28);
  --shadow: rgba(0, 0, 0, 0.68);
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--gold);
  color: #1b130b;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(104px, 150px) 1fr minmax(150px, 220px);
  align-items: center;
  gap: 28px;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 24px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: calc(100% + 30px);
  transform: translateX(-50%);
  background: url("assets/navbar-bg.png") center bottom / cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  width: clamp(92px, 11vw, 142px);
  filter: drop-shadow(0 8px 12px var(--shadow));
}

.brand img,
.site-footer img {
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  text-shadow: 0 2px 8px #000;
}

.nav-links a::after {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 3px;
  content: "";
  transform: translateX(-50%);
  background: var(--gold);
  box-shadow: 0 0 16px rgba(242, 191, 63, 0.7);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(650px, 78svh, 850px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  background-image: url("assets/press-kit/page-background.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 34% 46%, rgba(249, 183, 62, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(5, 6, 5, 0.9) 0%, rgba(8, 7, 6, 0.58) 38%, rgba(8, 7, 6, 0.08) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 28%, #120e0b 100%);
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 7, 0.94));
}

.hero__content {
  width: min(610px, 100%);
  min-width: 0;
  padding-top: 14px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.moo-logo {
  width: min(520px, 100%);
  margin: 0 0 20px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.48));
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

h2,
h3 {
  font-family: "Boldonse", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

#about-title {
  line-height: 1.5;
}

.hero__tagline {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.32rem, 2.8vw, 1.95rem);
  font-weight: 800;
  overflow-wrap: anywhere;
  transform: scaleX(1.1);
  transform-origin: left center;
  text-transform: uppercase;
  text-shadow: 0 3px 9px #000;
}

.hero__copy {
  max-width: 42rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 8px #000;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 28px;
}

.steam-button {
  display: inline-grid;
  position: relative;
  place-items: center;
  width: min(300px, 100%);
  min-height: 66px;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.45));
}

.steam-button img {
  width: 100%;
}

.steam-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.steam-button:hover,
.steam-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.55)) brightness(1.08);
}

.steam-button--small {
  justify-self: end;
  width: clamp(150px, 15vw, 220px);
  min-height: 45px;
}

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

.steam-button--card {
  width: min(244px, 100%);
  min-height: 52px;
  margin-top: auto;
}

.trailer-button {
  display: inline-grid;
  position: relative;
  place-items: center;
  width: min(224px, 100%);
  min-height: 71px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.45));
  transition: transform 160ms ease, filter 160ms ease;
}

.trailer-button img {
  width: 100%;
}

.trailer-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.trailer-button:hover,
.trailer-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.55)) brightness(1.08);
}

.text-link,
.card-link {
  color: var(--paper);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.fly {
  position: absolute;
  z-index: 2;
  width: clamp(34px, 4vw, 58px);
  pointer-events: none;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.42));
}

.fly--one {
  top: 23%;
  left: 34%;
  animation: drift-one 8s ease-in-out infinite;
}

.fly--two {
  top: 39%;
  left: 29%;
  width: clamp(24px, 3vw, 42px);
  animation: drift-two 7s ease-in-out infinite;
}

.fly--three {
  top: 19%;
  left: 46%;
  width: clamp(28px, 3.4vw, 48px);
  animation: drift-three 9s ease-in-out infinite;
}

.fly--four {
  top: 31%;
  left: 22%;
  width: clamp(22px, 2.8vw, 38px);
  animation: drift-two 10s ease-in-out infinite;
}

.fly--five {
  top: 15%;
  left: 38%;
  width: clamp(26px, 3.2vw, 44px);
  animation: drift-three 7.5s ease-in-out infinite;
}

.fly--six {
  top: 42%;
  left: 41%;
  width: clamp(20px, 2.6vw, 36px);
  animation: drift-one 8.5s ease-in-out infinite;
}

.wood-section {
  position: relative;
  padding: 38px max(16px, calc((100vw - 1240px) / 2)) 54px;
  background:
    linear-gradient(180deg, rgba(8, 7, 5, 0.76), rgba(8, 7, 5, 0.56)),
    url("assets/section-2-background.png") center / cover no-repeat,
    #17120f;
}

.section-inner {
  width: min(100%, var(--max));
  min-width: 0;
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 940px;
}

.section-heading {
  text-align: center;
}

.section-heading img {
  width: min(290px, 60vw);
  margin: 0 auto;
}

.section-title-heading {
  margin-bottom: 24px;
}

.section-heading .section-title-art {
  width: min(460px, 70vw);
  height: auto;
}

.section-heading h2 {
  margin-bottom: 8px;
  color: #fff8e8;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.9;
  text-shadow: 0 5px 0 #5c4225, 0 10px 18px rgba(0, 0, 0, 0.62);
}

.section-heading p {
  width: min(650px, 100%);
  margin: 0 auto 26px;
  max-width: 650px;
  color: #ecddbd;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1070px);
  min-width: 0;
  margin: 0 auto;
}

.game-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 2px solid rgba(168, 108, 48, 0.62);
  border-radius: 6px;
  background: #080807;
  box-shadow:
    inset 0 0 0 1px rgba(246, 205, 126, 0.1),
    0 14px 24px rgba(0, 0, 0, 0.42);
}

.game-card--feature {
  min-height: 486px;
}

.game-card__link {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.game-card__link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.game-card__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 250px;
  border-bottom: 2px solid rgba(168, 108, 48, 0.62);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.035);
}

.game-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 150px;
  padding: 26px 34px 22px;
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.98), rgba(4, 4, 4, 0.98)),
    #070707;
}

.game-card__body--text {
  justify-content: center;
  min-height: 410px;
  background:
    linear-gradient(180deg, rgba(24, 20, 16, 0.16), rgba(9, 8, 7, 0.62)),
    url("assets/section-2-background.png") center / cover;
}

.game-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 0.96;
}

.game-card p {
  margin-bottom: 18px;
  color: #f0e4c9;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.game-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: #f4e0ae;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 100;
  letter-spacing: 0.1rem;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 6px #000;
}

.game-card__cta-icon {
  width: 28px;
  height: 28px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.38);
  transition: transform 160ms ease, filter 160ms ease;
}

.game-card__link:hover .game-card__cta-icon,
.game-card__link:focus-visible .game-card__cta-icon {
  transform: translateX(2px);
  filter: brightness(1.12);
}

.moo-feature {
  background: #0c0a0d;
}

.moo-feature__hero {
  position: relative;
  min-height: clamp(440px, 42vw, 660px);
  background-image:
    linear-gradient(180deg, rgba(9, 7, 13, 0.5) 0%, rgba(9, 7, 13, 0.12) 45%, transparent 65%),
    url("assets/moo-who-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.moo-feature__intro {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding: clamp(28px, 5vw, 56px) max(24px, calc((100vw - var(--max)) / 2));
}

.moo-feature__foreground {
  position: absolute;
  z-index: 1;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  width: min(1200px, 46vw);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
}

.moo-feature__logo {
  width: min(320px, 42%);
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.5));
}

.moo-feature__copy {
  width: min(430px, 54%);
  min-width: 0;
}

.moo-feature__copy p {
  color: #f3e7cd;
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.moo-feature__copy .steam-button {
  margin-top: clamp(10px, 2vw, 22px);
  width: min(240px, 100%);
  min-height: 56px;
}

.moo-feature__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  list-style: none;
  border-top: 2px solid rgba(168, 108, 48, 0.62);
  background: #130f17;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
}

.moo-feature__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.moo-feature__grid img {
  width: clamp(60px, 7vw, 90px);
  height: auto;
  margin-bottom: 14px;
}

.moo-feature__grid h3 {
  margin-bottom: 8px;
  color: #f6cf5c;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: calc(clamp(0.95rem, 1.5vw, 1.15rem) + 3px);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.moo-feature__grid p {
  color: #cabfc9;
  font-size: calc(clamp(0.82rem, 1.2vw, 0.94rem) + 3px);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 12%, rgba(157, 191, 120, 0.16), transparent 28%),
    linear-gradient(135deg, #10120f, #1b1511 58%, #24130d);
}

.about-band__content h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.15;
}

.about-band__content p {
  color: #efe2c2;
  font-size: 1.05rem;
  line-height: 1.7;
}

.stats {
  display: grid;
  gap: 14px;
  margin: 0;
}

.stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.stats dt {
  color: var(--gold);
  font-family: "Boldonse", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.stats dd {
  margin: 8px 0 0;
  color: #e7d6b5;
  line-height: 1.45;
}

.journey-band {
  padding: 64px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--night);
}

.journey-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 46vw, 460px);
  border-radius: 20px;
  padding: 40px clamp(24px, 6vw, 64px);
  background-image: url("assets/join-journey-bg.png");
  background-position: center 42%;
  background-size: cover;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.journey-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 6, 0.6) 42%, rgba(8, 7, 6, 0.08) 74%);
}

.journey-card__content {
  max-width: 420px;
}

.journey-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  text-shadow: 0 3px 10px #000;
}

.journey-card p {
  margin-bottom: 28px;
  color: #efe2c2;
  font-size: 1.02rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px #000;
}

.journey-cta {
  display: inline-grid;
  position: relative;
  place-items: center;
  width: min(280px, 100%);
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.45));
}

.journey-cta img {
  width: 100%;
}

.journey-cta span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.journey-cta:hover,
.journey-cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.55)) brightness(1.08);
}

.news-band {
  padding: 76px 24px;
  background: #0d0d0f;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list article {
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
  background: linear-gradient(90deg, rgba(242, 191, 63, 0.12), rgba(255, 255, 255, 0.035));
}

.news-list time {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-list h3 {
  margin: 8px 0;
  font-size: 1.55rem;
}

.news-list p {
  margin-bottom: 0;
  color: #e4d6bd;
  line-height: 1.55;
}

.press-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(157, 191, 120, 0.14), transparent 24%),
    linear-gradient(180deg, #100d0a, #070706 58%);
}

.press-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 76svh, 820px);
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  overflow: hidden;
  background-image: url("assets/bg-with-cow-hunter.png");
  background-position: center;
  background-size: cover;
}

.press-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.92), rgba(10, 8, 6, 0.62) 42%, rgba(10, 8, 6, 0.1) 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 34%, rgba(8, 7, 5, 0.98));
}

.press-hero__content {
  width: min(650px, 100%);
  min-width: 0;
  max-width: 100%;
}

.press-hero__logo {
  width: min(430px, 100%);
  margin-bottom: 20px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.54));
}

.press-hero h1 {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  margin: 0 0 20px;
  color: #fff8e8;
  font-family: "Boldonse", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.25rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 0 #5c4225, 0 12px 22px rgba(0, 0, 0, 0.72);
  overflow-wrap: anywhere;
}

.press-hero p:not(.eyebrow) {
  max-width: 42rem;
  color: #fff4d8;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
  text-shadow: 0 2px 8px #000;
  overflow-wrap: anywhere;
}

.press-actions,
.press-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.press-button,
.press-link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(242, 191, 63, 0.54);
  border-radius: 6px;
  padding: 11px 16px;
  background: rgba(16, 13, 9, 0.72);
  color: #f8edcf;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.press-button--primary,
.press-button:hover,
.press-button:focus-visible,
.press-link-row a:hover,
.press-link-row a:focus-visible {
  background: var(--gold);
  color: #1b130b;
  transform: translateY(-1px);
}

.press-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 76px 0;
}

.press-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 46px;
}

.press-copy h2,
.fact-sheet h2,
.press-story h2,
.press-section__heading h2 {
  margin-bottom: 18px;
  color: #fff8e8;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  text-shadow: 0 4px 0 #5c4225, 0 9px 18px rgba(0, 0, 0, 0.5);
}

.press-copy p,
.press-story p,
.press-section__heading p {
  color: #eadfc5;
  font-size: 1.04rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.press-callout {
  margin: 26px 0 0;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  background: rgba(242, 191, 63, 0.12);
  color: #fff4d8;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.fact-sheet {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #14100d;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.fact-sheet dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.fact-sheet div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(244, 208, 137, 0.18);
}

.fact-sheet div:first-child {
  border-top: 0;
}

.fact-sheet dt {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.fact-sheet dd {
  min-width: 0;
  margin: 0;
  color: #f2e4c3;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.press-image-band {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid rgba(168, 108, 48, 0.62);
  border-radius: 8px;
  background: #080807;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.44);
}

.press-image-band img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.press-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.press-feature-list {
  padding-bottom: 42px;
}

.feature-grid,
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.requirements-grid article {
  min-width: 0;
  border: 1px solid rgba(168, 108, 48, 0.62);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.feature-grid h3,
.requirements-grid h3 {
  margin-bottom: 10px;
  color: #f6cf5c;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.18;
}

.feature-grid p,
.requirements-grid dd,
.press-disclosure p,
.press-list,
.quote-list {
  color: #eadfc5;
  line-height: 1.62;
}

.press-list,
.quote-list {
  margin: 0;
  padding-left: 20px;
}

.press-list li,
.quote-list li {
  margin-bottom: 10px;
}

.requirements-grid dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.requirements-grid dl div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(244, 208, 137, 0.16);
}

.requirements-grid dl div:first-child {
  border-top: 0;
}

.requirements-grid dt {
  color: var(--gold);
  font-weight: 900;
}

.requirements-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.press-disclosure {
  padding-top: 34px;
}

.press-disclosure h2 {
  margin-bottom: 18px;
  color: #fff8e8;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  text-shadow: 0 4px 0 #5c4225, 0 9px 18px rgba(0, 0, 0, 0.5);
}

.press-disclosure p {
  max-width: 850px;
}

.press-assets {
  padding-top: 28px;
}

.press-section__heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.asset-card {
  display: grid;
  grid-template-rows: minmax(170px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 108, 48, 0.62);
  border-radius: 8px;
  background: #0f0d0b;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.32);
  transition: transform 160ms ease, border-color 160ms ease;
}

.asset-card:hover,
.asset-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.asset-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  padding: 16px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #17120f;
}

.asset-card[href$=".jpg"] img,
.asset-card[href$="page-background.png"] img {
  object-fit: cover;
  padding: 0;
}

.asset-card[href$="library-hero.png"] {
  grid-column: span 2;
}

.asset-card[href$="library-hero.png"] img {
  aspect-ratio: 16 / 6;
  object-fit: cover;
  padding: 0;
}

.asset-card span {
  padding: 15px 16px;
  color: #f6cf5c;
  font-family: "PT Sans Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer {
  padding: 56px max(24px, calc((100vw - var(--max)) / 2)) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #070706;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.footer-brand img {
  width: 86px;
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 0;
  max-width: 26ch;
  color: #cab995;
  line-height: 1.55;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cab995;
  font-weight: 600;
  text-underline-offset: 5px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social .footer-email {
  color: #cab995;
  font-weight: 600;
  text-underline-offset: 5px;
}

.footer-social .footer-email:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  color: var(--gold);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:not(.social-icon--disabled):hover {
  background: var(--gold);
  color: var(--night);
}

.social-icon--disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.footer-bottom {
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
  margin: 0 calc(-1 * max(24px, calc((100vw - var(--max)) / 2)));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #8a7c63;
  font-size: 0.9rem;
}

@keyframes drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
  50% {
    transform: translate3d(18px, -14px, 0) rotate(8deg);
  }
}

@keyframes drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  50% {
    transform: translate3d(-14px, 16px, 0) rotate(-7deg);
  }
}

@keyframes drift-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(12deg);
  }
  50% {
    transform: translate3d(16px, 12px, 0) rotate(-6deg);
  }
}

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

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto 1fr;
    width: min(100% - 32px, 720px);
    gap: 16px;
    padding-top: 16px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    font-size: 0.78rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .steam-button--small {
    width: 164px;
  }

  .hero {
    min-height: 720px;
    align-items: end;
    padding-top: 150px;
    background-position: 63% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.14) 38%, #100d0a 100%),
      linear-gradient(90deg, rgba(5, 6, 5, 0.9), rgba(5, 6, 5, 0.35));
  }

  .game-grid,
  .about-band {
    grid-template-columns: 1fr;
  }

  .game-card__body--text {
    min-height: 280px;
  }

  .moo-feature__hero {
    min-height: clamp(480px, 70vw, 600px);
  }

  .moo-feature__intro {
    flex-direction: column;
    gap: 18px;
    padding: 28px 26px;
  }

  .moo-feature__foreground {
    width: min(320px, 36vw);
  }

  .moo-feature__logo {
    width: min(240px, 62%);
  }

  .moo-feature__copy {
    width: 100%;
  }

  .moo-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .press-overview,
  .press-story,
  .feature-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .journey-card {
    align-items: end;
    background-position: 66% center;
  }

  .journey-card::before {
    background: linear-gradient(0deg, rgba(8, 7, 5, 0.94), rgba(8, 7, 5, 0.4) 55%, rgba(8, 7, 6, 0.12));
  }

  .journey-card__content {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 420px;
    padding: 28px 22px;
    border-radius: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 92px;
  }

  .steam-button--small {
    justify-self: start;
    width: 172px;
  }

  .nav-links {
    gap: 15px;
  }

  .hero {
    min-height: 760px;
    padding-top: 210px;
    padding-inline: 18px;
    background-position: 68% center;
  }

  .hero__content {
    width: min(100%, 330px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero__actions .steam-button {
    width: 286px;
  }

  .trailer-button {
    width: 224px;
  }

  .moo-logo {
    max-width: 330px;
  }

  .hero__tagline {
    max-width: 318px;
    font-size: 1.24rem;
    line-height: 1.2;
    transform: scaleX(1.04);
  }

  .hero__copy {
    max-width: 318px;
    font-size: 0.96rem;
  }

  .fly--one {
    left: 20%;
  }

  .fly--two {
    top: 34%;
    left: 72%;
  }

  .fly--three,
  .fly--four,
  .fly--five,
  .fly--six {
    display: none;
  }

  .wood-section {
    padding-inline: 10px;
    background-size: cover;
  }

  .section-heading .section-title-art {
    width: min(225px, calc(100vw - 52px));
  }

  .game-grid {
    width: 100%;
    max-width: min(340px, calc(100vw - 36px));
    grid-template-columns: minmax(0, 1fr);
  }

  .game-card {
    width: 100%;
    max-width: 100%;
  }

  .section-heading p {
    width: min(300px, calc(100vw - 44px));
    max-width: 300px;
  }

  .game-card--feature {
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .game-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .game-card__body {
    min-height: 190px;
    padding: 24px 28px 22px;
  }

  .game-card p {
    font-size: 1rem;
  }

  .moo-feature__hero {
    min-height: clamp(480px, 90vw, 520px);
  }

  .moo-feature__intro {
    padding: 22px 20px;
  }

  .moo-feature__foreground {
    width: min(220px, 30vw);
  }

  .moo-feature__copy .steam-button {
    margin-top: 16px;
  }

  .moo-feature__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 26px 24px;
  }

  .about-band,
  .news-band {
    padding-inline: 18px;
  }

  .press-hero {
    min-height: 720px;
    align-items: end;
    padding: 190px 18px 56px;
    background-position: 68% center;
  }

  .press-hero__content {
    width: calc(100vw - 36px);
    max-width: 330px;
    padding-right: 0;
  }

  .press-hero__logo {
    width: min(320px, 100%);
  }

  .press-hero h1 {
    font-size: clamp(1.95rem, 13vw, 2.75rem);
    line-height: 1.08;
  }

  .press-actions,
  .press-link-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .press-button,
  .press-link-row a {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    text-align: center;
  }

  .press-hero p:not(.eyebrow),
  .press-copy p,
  .press-story p,
  .press-section__heading p {
    width: 100%;
    max-width: 100%;
  }

  .press-section {
    width: min(calc(100vw - 36px), var(--max));
    max-width: calc(100vw - 36px);
    margin-left: 18px;
    margin-right: 0;
    padding: 54px 0;
    padding-right: 0;
  }

  .press-overview {
    gap: 28px;
  }

  .press-copy,
  .press-overview,
  .press-story,
  .press-section__heading,
  .asset-grid,
  .fact-sheet {
    width: 100%;
    max-width: 100%;
  }

  .press-section.press-overview,
  .press-section.press-story,
  .press-section.press-feature-list,
  .press-section.press-requirements,
  .press-section.press-assets,
  .press-section.press-disclosure {
    width: min(330px, calc(100vw - 36px));
    max-width: min(330px, calc(100vw - 36px));
  }

  .fact-sheet {
    padding: 20px;
  }

  .fact-sheet div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .press-image-band {
    width: calc(100% - 36px);
  }

  .press-image-band img {
    aspect-ratio: 4 / 3;
  }

  .asset-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .asset-card[href$="library-hero.png"] {
    grid-column: auto;
  }

  .requirements-grid dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
