:root {
  --ink: #080909;
  --ink-soft: #0d0e0f;
  --panel: #111214;
  --paper: #f0eee8;
  --paper-muted: #a8a6a0;
  --gold: #c5a360;
  --gold-light: #e0c78e;
  --silver: #d8d9d8;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.075);
  --page: min(91vw, 1480px);
  --header-height: 96px;
  --display: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.006) 1px, transparent 1px),
    var(--ink);
  background-size: 120px 120px;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.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;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  height: var(--header-height);
  padding: 0 4.5vw;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    height 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 76px;
  background: rgba(8, 9, 9, 0.88);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  width: 30px;
  height: 38px;
}

.brand-ring {
  position: absolute;
  top: 10px;
  width: 14px;
  height: 22px;
  border: 2px solid;
}

.brand-ring--silver {
  left: 1px;
  border-color: var(--silver);
  border-right: 0;
  border-radius: 20px 0 0 20px;
}

.brand-ring--gold {
  right: 1px;
  border-color: var(--gold);
  border-left: 0;
  border-radius: 0 20px 20px 0;
}

.brand-blade {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 38px;
  background: linear-gradient(90deg, #80642f, var(--gold-light), #7b5e2c);
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.brand-blade::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -5px;
  width: 12px;
  height: 1px;
  background: var(--gold-light);
}

.brand-name {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.brand-name em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 58px);
}

.site-nav a {
  position: relative;
  color: rgba(240, 238, 232, 0.73);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover {
  color: var(--paper);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  padding: 13px 18px;
  align-items: center;
  gap: 16px;
  color: var(--paper) !important;
  border: 1px solid var(--line);
}

.nav-cta span {
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--paper);
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 70px) max(4.5vw, calc((100vw - 1480px) / 2)) 100px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(20px, 4vw, 90px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: 4.5vw;
  bottom: 0;
  left: 4.5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -12%;
  z-index: -3;
  width: min(70vw, 1000px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(195, 159, 91, 0.11), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(210, 220, 226, 0.045), transparent 67%);
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(197, 163, 96, 0.8);
}

.hero-orbit--one {
  top: -25%;
  right: -15%;
  width: min(75vw, 1120px);
  aspect-ratio: 1;
}

.hero-orbit--two {
  top: 7%;
  right: -6%;
  width: min(55vw, 820px);
  aspect-ratio: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.hero-eyebrow {
  margin-bottom: clamp(28px, 4vh, 55px);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: #f3f1ec;
  font-family: var(--display);
  font-size: clamp(3.75rem, 7.2vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.062em;
  line-height: 0.87;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #f2f0eb 5%, var(--gold-light) 45%, #8d6a31 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-intro {
  max-width: 590px;
  margin: clamp(32px, 5vh, 62px) 0 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 350;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: clamp(30px, 5vh, 58px);
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button--primary {
  min-width: 230px;
  color: var(--ink);
  background: var(--paper);
}

.button--primary:hover {
  background: var(--gold-light);
}

.button-arrow {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translateY(4px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 238, 232, 0.44);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.hero-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-identity {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  --mx: 0px;
  --my: 0px;
}

.hero-identity-frame {
  position: relative;
  width: min(34vw, 500px);
  min-width: 340px;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.008);
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-identity-frame::before,
.hero-identity-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.hero-identity-frame::before {
  inset: 5%;
  border: 1px solid rgba(197, 163, 96, 0.12);
}

.hero-identity-frame::after {
  top: 50%;
  left: -16%;
  width: 132%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 163, 96, 0.27), transparent);
}

.hero-identity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(0.88) contrast(1.05);
}

.frame-corner {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
}

.frame-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.frame-corner--br {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 4.5vw;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(240, 238, 232, 0.35);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scan 2.2s ease-in-out infinite;
}

@keyframes scan {
  0% { transform: translateX(-105%); }
  45%, 55% { transform: translateX(0); }
  100% { transform: translateX(105%); }
}

.games {
  width: var(--page);
  padding: clamp(110px, 12vw, 190px) 0;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(70px, 8vw, 120px);
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 8vw;
}

.section-heading .eyebrow {
  margin-bottom: 27px;
}

.section-heading h2,
.studio h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 3px;
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.game-card {
  display: grid;
  min-height: min(58vw, 860px);
  margin-bottom: clamp(90px, 11vw, 180px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.game-card:last-child {
  margin-bottom: 0;
}

.game-card--wildacre {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
}

.game-card--wildacre .game-art {
  grid-column: 2;
}

.game-card--wildacre .game-copy {
  grid-row: 1;
  grid-column: 1;
}

.game-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.game-art--vast img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.game-art-shade {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.1), transparent 35%, rgba(8, 9, 9, 0.58)),
    linear-gradient(90deg, transparent 70%, rgba(8, 9, 9, 0.14));
  pointer-events: none;
}

.game-number {
  position: absolute;
  top: 27px;
  left: 30px;
  z-index: 7;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.game-status {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 7;
  display: flex;
  padding: 10px 13px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 9, 9, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.game-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold);
}

.game-copy {
  display: flex;
  padding: clamp(50px, 6.4vw, 105px);
  flex-direction: column;
  justify-content: center;
}

.game-kicker {
  margin: 0 0 37px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.game-kicker span {
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.28);
}

.game-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 5.1rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.game-description {
  max-width: 520px;
  margin: 38px 0 0;
  color: var(--paper-muted);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.game-tags {
  display: flex;
  padding: 0;
  margin: 35px 0 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.game-tags li {
  padding: 9px 12px;
  color: rgba(240, 238, 232, 0.58);
  border: 1px solid var(--line);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 55px;
  padding-bottom: 9px;
  align-items: center;
  gap: 22px;
  color: var(--paper);
  border-bottom: 1px solid var(--gold);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold-light);
  transition: transform 180ms ease;
}

a.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link--muted {
  color: rgba(240, 238, 232, 0.48);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.game-art--wildacre {
  background: #070b0b;
}

.game-art--wildacre::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.55), transparent 28%, transparent 70%, rgba(3, 5, 5, 0.62)),
    linear-gradient(180deg, rgba(3, 5, 5, 0.08), rgba(3, 5, 5, 0.15) 36%, rgba(3, 5, 5, 0.58) 100%),
    radial-gradient(ellipse at 50% 48%, transparent 0 18%, rgba(2, 4, 4, 0.14) 48%, rgba(2, 4, 4, 0.52) 100%);
}

.game-art--wildacre::after {
  content: "";
  position: absolute;
  top: 24%;
  right: -15%;
  left: -15%;
  z-index: 6;
  height: 30%;
  pointer-events: none;
  opacity: 0.52;
  background:
    radial-gradient(ellipse at 16% 55%, rgba(192, 203, 184, 0.18), transparent 37%),
    radial-gradient(ellipse at 58% 35%, rgba(174, 188, 175, 0.15), transparent 42%),
    radial-gradient(ellipse at 88% 65%, rgba(210, 209, 184, 0.12), transparent 32%);
  filter: blur(17px);
}

.wildacre-sky {
  position: absolute;
  inset: 0 0 47%;
  background:
    radial-gradient(circle at 80% 18%, rgba(205, 205, 173, 0.16), transparent 24%),
    linear-gradient(180deg, #354347 0%, #253632 55%, #17241f 100%);
}

.wildacre-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(115deg, transparent 0 36px, rgba(230, 232, 219, 0.22) 37px, transparent 38px 70px);
}

.wildacre-sun {
  position: absolute;
  top: 13%;
  right: 15%;
  z-index: 1;
  width: clamp(54px, 7vw, 105px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.38;
  background: #d8d6b4;
  box-shadow: 0 0 60px rgba(218, 217, 183, 0.24);
}

.wildacre-hill {
  position: absolute;
  z-index: 2;
  border-radius: 50% 50% 0 0;
}

.wildacre-hill--back {
  top: 22%;
  left: -20%;
  width: 92%;
  height: 37%;
  background: #23352e;
  transform: rotate(7deg);
}

.wildacre-hill--front {
  top: 31%;
  right: -32%;
  width: 112%;
  height: 32%;
  background: #14261f;
  transform: rotate(-8deg);
}

.wildacre-farm {
  position: absolute;
  inset: 34% 0 46%;
  z-index: 4;
  background: linear-gradient(165deg, #233a2e, #13251e);
}

.wildacre-farm::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: -15%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  border-top: 8px solid rgba(200, 190, 145, 0.11);
  transform: rotate(10deg);
}

.farm-house {
  position: absolute;
  bottom: 15%;
  left: 17%;
  z-index: 4;
  width: 11%;
  height: 29%;
  background: #2a2923;
  box-shadow: inset -12px 0 rgba(0, 0, 0, 0.24);
}

.farm-house::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 17%;
  width: 22%;
  aspect-ratio: 1;
  background: #d1ae62;
  box-shadow: 0 0 18px rgba(209, 174, 98, 0.48);
}

.farm-house::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 24%;
  height: 48%;
  background: #11130f;
}

.farm-roof {
  position: absolute;
  bottom: 39%;
  left: 14.5%;
  z-index: 5;
  width: 16%;
  height: 21%;
  background: #171b17;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.farm-field {
  position: absolute;
  z-index: 3;
  opacity: 0.2;
  border: 1px solid rgba(214, 202, 160, 0.18);
  background: repeating-linear-gradient(90deg, #4d4935 0 8px, #6c6344 8px 10px);
  transform: skewX(-17deg);
}

.farm-field--one {
  right: 18%;
  bottom: 19%;
  width: 24%;
  height: 21%;
}

.farm-field--two {
  right: 9%;
  bottom: 43%;
  width: 17%;
  height: 15%;
}

.farm-tree {
  position: absolute;
  z-index: 5;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 44% 55% 46% 58%;
  background: #0c1a14;
  box-shadow: inset -10px -7px #08110d, 0 9px 0 -5px #251f18;
}

.farm-tree--one { left: 39%; bottom: 24%; }
.farm-tree--two { left: 48%; bottom: 41%; transform: scale(0.75); }
.farm-tree--three { left: 6%; bottom: 34%; transform: scale(0.85); }

.wildacre-earth {
  position: absolute;
  inset: 54% 0 0;
  z-index: 4;
  background:
    linear-gradient(110deg, transparent 47%, rgba(194, 168, 108, 0.035) 48%, transparent 49%),
    radial-gradient(ellipse at 50% 0, #27231c 0%, #141512 52%, #070908 100%);
  border-top: 1px solid rgba(215, 204, 164, 0.11);
}

.wildacre-earth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(180deg, #183023, #0d1c15);
  clip-path: polygon(0 0, 5% 70%, 12% 15%, 20% 70%, 27% 10%, 37% 65%, 49% 10%, 57% 80%, 67% 20%, 78% 75%, 88% 15%, 100% 75%, 100% 100%, 0 100%);
}

.root {
  position: absolute;
  top: 0;
  width: 2px;
  opacity: 0.35;
  background: linear-gradient(#745f3e, transparent);
  transform-origin: top;
}

.root--one { left: 22%; height: 42%; transform: rotate(-18deg); }
.root--two { left: 73%; height: 35%; transform: rotate(22deg); }
.root--three { left: 46%; height: 25%; transform: rotate(8deg); }

.delve-gate {
  position: absolute;
  bottom: 9%;
  left: 50%;
  z-index: 2;
  width: 22%;
  height: 43%;
  border: clamp(8px, 1vw, 15px) solid #3c3d33;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: #020403;
  transform: translateX(-50%);
  box-shadow:
    inset 0 0 34px rgba(195, 158, 82, 0.24),
    0 0 0 3px rgba(8, 9, 7, 0.65);
}

.delve-gate::before,
.delve-gate::after {
  content: "";
  position: absolute;
  top: 31%;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #c9a45d;
  box-shadow: 0 0 15px rgba(201, 164, 93, 0.75);
}

.delve-gate::before { left: -11px; }
.delve-gate::after { right: -11px; }

.delve-glow {
  position: absolute;
  bottom: -15%;
  left: 50%;
  width: 48%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(210, 163, 79, 0.23), transparent 64%);
  transform: translateX(-50%);
}

.wildacre-title {
  position: absolute;
  bottom: 7%;
  left: 7%;
  z-index: 7;
  color: rgba(232, 218, 176, 0.83);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.75);
}

.studio {
  position: relative;
  padding: clamp(110px, 12vw, 190px) max(4.5vw, calc((100vw - 1480px) / 2));
  background: #eeece6;
  color: #111214;
}

.studio-rule {
  position: absolute;
  top: 0;
  left: 4.5vw;
  width: 1px;
  height: 100%;
  background: rgba(17, 18, 20, 0.08);
}

.studio-rule span {
  position: sticky;
  top: 18vh;
  display: block;
  width: 1px;
  height: 90px;
  background: var(--gold);
}

.studio .eyebrow {
  color: #8d6d33;
  margin-bottom: 30px;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
}

.studio h2 span {
  color: #9b7b42;
}

.studio-copy {
  padding-top: 57px;
}

.studio-copy p {
  max-width: 570px;
  margin: 0 0 26px;
  color: #555652;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.studio-copy p:first-child {
  color: #242522;
}

.principles {
  display: grid;
  padding: clamp(90px, 10vw, 155px) 0 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
}

.principles li {
  min-height: 260px;
  padding: 29px clamp(28px, 3vw, 50px) 30px;
  border-top: 1px solid rgba(17, 18, 20, 0.17);
  border-right: 1px solid rgba(17, 18, 20, 0.1);
}

.principles li:first-child {
  padding-left: 0;
}

.principles li:last-child {
  border-right: 0;
}

.principles li > span {
  color: #9b7b42;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.principles h3 {
  margin: 72px 0 15px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 450;
  letter-spacing: -0.035em;
}

.principles p {
  max-width: 320px;
  margin: 0;
  color: #6a6b67;
  font-size: 0.9rem;
  line-height: 1.65;
}

.closing {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: min(82vh, 900px);
  padding: clamp(100px, 10vw, 160px) 0;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 9vw, 145px);
  text-align: left;
}

.closing::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  background:
    radial-gradient(circle at 23% 50%, rgba(197, 163, 96, 0.055), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.008), transparent);
  transform: translateX(-50%);
}

.closing .eyebrow {
  margin-bottom: 33px;
}

.closing h2 {
  font-size: clamp(3.5rem, 6.3vw, 7.3rem);
}

.button--outline {
  min-width: 230px;
  margin-top: 60px;
  color: var(--paper);
  border: 1px solid var(--line);
}

.button--outline:hover {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.closing-mark {
  position: relative;
  width: min(34vw, 480px);
  aspect-ratio: 1;
  justify-self: center;
}

.closing-mark::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border: 1px solid rgba(197, 163, 96, 0.11);
  box-shadow: 0 0 100px rgba(197, 163, 96, 0.07);
}

.closing-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(0.88) contrast(1.04);
}

.closing-content {
  position: relative;
}

.site-footer {
  display: grid;
  width: var(--page);
  min-height: 220px;
  padding: 45px 0;
  margin: 0 auto;
  grid-template-columns: 180px 1fr auto;
  align-items: end;
  gap: 45px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 140px;
  height: 86px;
  overflow: hidden;
}

.footer-brand img {
  width: 140px;
  height: 140px;
  margin-top: -27px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.footer-meta p,
.footer-legal p {
  margin: 0;
}

.footer-meta p:first-child {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-meta p:last-child,
.footer-legal {
  color: rgba(240, 238, 232, 0.38);
  font-size: 0.7rem;
  line-height: 1.65;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

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

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero-identity-frame {
    width: 390px;
    min-width: 0;
  }

  .game-card,
  .game-card--wildacre {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .game-card--wildacre .game-art,
  .game-card--wildacre .game-copy {
    grid-row: auto;
    grid-column: 1;
  }

  .game-card--wildacre .game-art {
    grid-row: 1;
  }

  .game-art {
    min-height: min(80vw, 820px);
  }

  .game-copy {
    min-height: 580px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
    --page: calc(100vw - 36px);
  }

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

  .site-header.is-open {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  .brand-name {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: 110px 25px 50px;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    visibility: hidden;
    background: rgba(8, 9, 9, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 200ms ease;
  }

  .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 25px 0;
    font-size: 1.5rem;
    font-weight: 350;
    letter-spacing: -0.02em;
    text-transform: none;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    padding: 25px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding: 135px 20px 90px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

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

  .hero h1 {
    font-size: clamp(3.4rem, 14.3vw, 6.6rem);
    line-height: 0.92;
  }

  .hero-identity {
    grid-row: 2;
  }

  .hero-identity-frame {
    width: min(82vw, 470px);
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading h2,
  .studio h2,
  .closing h2 {
    font-size: clamp(2.8rem, 13vw, 5.4rem);
  }

  .closing {
    min-height: auto;
    padding: 95px 0 110px;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .closing-mark {
    width: min(72vw, 390px);
  }

  .closing-content {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .game-art {
    min-height: max(520px, 110vw);
  }

  .game-copy {
    min-height: 0;
    padding: 55px 28px 64px;
  }

  .game-copy h3 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .game-description {
    margin-top: 29px;
  }

  .text-link {
    margin-top: 43px;
  }

  .studio {
    padding-right: 24px;
    padding-left: 24px;
  }

  .studio-rule {
    display: none;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .principles li,
  .principles li:first-child {
    min-height: auto;
    padding: 28px 0 45px;
    border-right: 0;
  }

  .principles h3 {
    margin-top: 42px;
  }

  .site-footer {
    padding: 45px 0 55px;
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }

  .footer-brand {
    width: 100px;
  }

  .footer-brand img {
    width: 100px;
    height: 100px;
    margin-top: -7px;
  }

  .footer-legal {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .brand-name em {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .button--primary {
    width: 100%;
  }

  .game-art {
    min-height: 500px;
  }

  .game-number {
    top: 21px;
    left: 22px;
  }

  .game-status {
    right: 18px;
    bottom: 18px;
  }

  .wildacre-title {
    bottom: 14%;
  }

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

  .footer-meta,
  .footer-legal {
    grid-column: 1;
  }
}

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

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

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