@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

:root {
  --ink: #111712;
  --ink-soft: #1a251d;
  --forest: #15231a;
  --forest-light: #223528;
  --paper: #eee8d6;
  --paper-light: #f7f1e1;
  --paper-dark: #d8cfb9;
  --gold: #c8a75e;
  --gold-light: #ebd28d;
  --red: #7d2e27;
  --red-dark: #4e1d1a;
  --white: #fffdf5;
  --muted-light: #aab5a9;
  --muted-dark: #625f54;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

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

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper-light);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 86px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background-color .3s ease, height .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(12, 19, 14, .92);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(calc(100% - 48px), 1480px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name i { color: var(--gold); font-style: normal; font-weight: 400; }

.site-nav {
  display: flex;
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
}

.site-nav a {
  position: relative;
  color: rgba(255,255,255,.83);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  overflow: hidden;
  align-items: center;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.06); }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8,14,10,.93) 0%, rgba(8,14,10,.66) 42%, rgba(8,14,10,.18) 75%),
    linear-gradient(0deg, rgba(10,16,12,.92) 0%, transparent 28%, rgba(10,16,12,.25) 100%);
}

.hero-ornament {
  position: absolute;
  top: 16%;
  right: -5vw;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(235,210,141,.22);
  border-radius: 50%;
}

.hero-ornament::before,
.hero-ornament::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(235,210,141,.12);
  border-radius: inherit;
  content: "";
}

.hero-ornament::after { inset: 28%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 170px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.kicker { color: var(--red); }

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8.2vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .82;
  text-wrap: balance;
}

.hero h1 em { color: var(--gold-light); font-style: italic; }

.hero-copy {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.76);
  font-family: var(--display);
  font-size: clamp(1.13rem, 1.6vw, 1.4rem);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.button {
  min-height: 52px;
  display: inline-flex;
  padding: 0 24px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.button-outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }

.text-link {
  color: var(--white);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration-color: rgba(255,255,255,.4);
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.text-link span { color: var(--gold); margin-left: 6px; }

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88px;
  display: grid;
  margin-block: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.hero-meta li {
  display: flex;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.16);
  align-items: center;
  color: rgba(255,255,255,.65);
  font-size: .67rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.hero-meta li:last-child { border: 0; color: var(--gold-light); }

.parchment-section {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(107,86,46,.03) 1px, transparent 1px),
    linear-gradient(rgba(107,86,46,.03) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--ink);
}

.dark-section { background: var(--ink); color: var(--white); }

.intro { padding: 150px 0 160px; }
.intro-grid { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 50px; }

.section-label {
  display: flex;
  gap: 14px;
  align-items: center;
  align-self: start;
  color: var(--muted-dark);
}

.section-label::before { width: 36px; height: 1px; background: currentColor; content: ""; }
.section-label span { font-family: var(--display); font-style: italic; }
.section-label p { margin: 0; font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-label-light { color: var(--muted-light); }

.intro-copy h2,
.section-heading h2,
.gallery-heading h2,
.multiplayer-copy h2,
.follow h2,
.rise h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}

.intro-columns {
  max-width: 880px;
  margin-top: 55px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.intro-columns p { margin: 0; color: var(--muted-dark); font-size: 1.04rem; line-height: 1.85; }
.intro-columns p:first-child::first-letter { float: left; margin: .11em .12em 0 0; color: var(--red); font-family: var(--display); font-size: 4.6rem; line-height: .7; }

.rise { padding: 150px 0; }
.rise-grid { display: grid; gap: clamp(50px, 8vw, 130px); grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); align-items: center; }
.rise-image { position: relative; box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.rise-image::after { position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.34); content: ""; pointer-events: none; }
.rise-image img { width: 100%; aspect-ratio: 1.1; object-fit: cover; filter: sepia(.12) saturate(.8); }
.image-note { position: absolute; z-index: 1; right: 24px; bottom: 20px; padding: 5px 9px; background: rgba(10,15,11,.74); color: rgba(255,255,255,.7); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.rise-copy > p:not(.eyebrow) { max-width: 540px; margin: 32px 0 0; color: var(--muted-light); line-height: 1.85; }

.growth-list { margin: 45px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.growth-list li { display: grid; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.14); grid-template-columns: 38px 100px 1fr; align-items: baseline; }
.growth-list span { color: var(--gold); font-family: var(--display); font-size: .85rem; font-style: italic; }
.growth-list strong { font-family: var(--display); font-size: 1.2rem; font-weight: 400; }
.growth-list small { color: var(--muted-light); font-size: .78rem; }

.features { padding: 150px 0 170px; }
.section-heading,
.gallery-heading { display: grid; margin-bottom: 75px; grid-template-columns: 290px 1fr; gap: 50px; }
.section-heading h2 { max-width: 870px; }

.feature-grid { display: grid; gap: 1px; background: rgba(31,31,24,.2); grid-template-columns: repeat(3, 1fr); }
.feature-card { position: relative; min-height: 440px; padding: 50px 42px; background: var(--paper-light); overflow: hidden; }
.feature-card-wide { grid-column: span 2; }
.feature-card-red { background: var(--red); color: var(--white); }
.feature-number { color: var(--muted-dark); font-family: var(--display); font-size: .9rem; font-style: italic; }
.feature-card-red .feature-number { color: rgba(255,255,255,.65); }
.feature-card svg { position: absolute; top: 44px; right: 40px; width: 58px; height: 58px; fill: none; stroke: var(--red); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }
.feature-card-red svg { stroke: var(--gold-light); }
.feature-card h3 { max-width: 460px; margin: 145px 0 20px; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 3.1rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.05; }
.feature-card p { max-width: 530px; margin: 0; color: var(--muted-dark); line-height: 1.8; }
.feature-card-red p { color: rgba(255,255,255,.7); }

.world-banner { position: relative; min-height: 720px; display: flex; overflow: hidden; align-items: flex-end; }
.world-banner > img,
.world-banner-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.world-banner > img { object-fit: cover; object-position: center 40%; filter: saturate(.65) contrast(1.08); }
.world-banner-shade { background: linear-gradient(0deg, rgba(10,15,11,.95), rgba(10,15,11,.05) 66%), linear-gradient(90deg, rgba(10,15,11,.36), transparent 60%); }
.world-banner-copy { position: relative; z-index: 1; padding-bottom: 90px; }
.world-banner-copy p { max-width: 920px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6.5rem); letter-spacing: -.045em; line-height: .98; text-wrap: balance; }
.world-banner-copy span { display: block; margin-top: 28px; color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

.gallery { padding: 150px 0 160px; }
.gallery-heading h2 { max-width: 850px; }
.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-item { position: relative; min-height: 400px; padding: 0; border: 0; background: var(--forest); cursor: zoom-in; overflow: hidden; text-align: left; }
.gallery-item-large { grid-column: span 2; min-height: 620px; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,12,9,.9), transparent 48%); content: ""; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-item:hover img,
.gallery-item:focus-visible img { filter: saturate(1); transform: scale(1.025); }
.gallery-item > span { position: absolute; z-index: 1; right: 30px; bottom: 26px; left: 30px; color: var(--white); font-family: var(--display); font-size: 1.35rem; }
.gallery-item small { margin-right: 16px; color: var(--gold); font-family: var(--sans); font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.gallery-note { margin: 25px 0 0; color: var(--muted-light); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

.multiplayer { padding: 150px 0; }
.multiplayer-grid { display: grid; gap: clamp(70px, 10vw, 160px); grid-template-columns: .8fr 1.2fr; align-items: center; }
.player-count { display: flex; min-height: 430px; border: 1px solid rgba(17,23,18,.25); background: var(--red); color: var(--paper-light); flex-direction: column; align-items: center; justify-content: center; box-shadow: 25px 25px 0 var(--paper-dark); }
.player-count strong { font-family: var(--display); font-size: clamp(8rem, 16vw, 13rem); font-weight: 400; letter-spacing: -.08em; line-height: .7; }
.player-count span { margin-top: 35px; font-size: .7rem; font-weight: 800; letter-spacing: .27em; text-transform: uppercase; }
.multiplayer-copy > p:not(.kicker) { max-width: 620px; margin: 32px 0 0; color: var(--muted-dark); line-height: 1.85; }
.mode-list { margin-top: 45px; display: flex; border-top: 1px solid rgba(17,23,18,.25); border-bottom: 1px solid rgba(17,23,18,.25); }
.mode-list span { flex: 1; padding: 17px 10px; border-right: 1px solid rgba(17,23,18,.25); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.mode-list span:last-child { border: 0; }

.follow { position: relative; min-height: 760px; display: flex; overflow: hidden; align-items: center; text-align: center; }
.follow::before { position: absolute; inset: 0; background: radial-gradient(circle at center, #253527 0%, var(--ink) 65%); content: ""; }
.follow-sigil { position: absolute; top: 50%; left: 50%; color: var(--gold); opacity: .09; transform: translate(-50%, -50%); }
.follow-sigil svg { width: min(75vw, 700px); fill: none; stroke: currentColor; stroke-width: 1; }
.follow-copy { position: relative; z-index: 1; }
.follow h2 { max-width: 920px; margin-inline: auto; font-size: clamp(4rem, 8.5vw, 8rem); }
.follow-copy > p:not(.eyebrow) { max-width: 590px; margin: 30px auto 0; color: var(--muted-light); }
.social-links { margin-top: 42px; display: flex; gap: 14px; justify-content: center; }

.site-footer { padding: 70px 0 26px; background: #090d0a; color: var(--white); }
.footer-top { display: flex; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.13); align-items: center; justify-content: space-between; }
.footer-top p { max-width: 330px; margin: 0; color: var(--muted-light); font-family: var(--display); font-size: 1.15rem; text-align: right; }
.brand-footer .brand-mark { width: 50px; height: 50px; }
.brand-footer .brand-name { font-size: 1.55rem; }
.footer-bottom { display: grid; padding-top: 25px; color: rgba(255,255,255,.5); font-size: .68rem; font-weight: 700; grid-template-columns: 1fr auto 1fr; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom > a { justify-self: end; text-decoration: none; }
.legal-links { display: flex; gap: 24px; }
.legal-links button { padding: 0; border: 0; background: none; color: inherit; cursor: pointer; font-size: inherit; font-weight: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-bottom a:hover,
.legal-links button:hover { color: var(--gold-light); }

.modal,
.lightbox {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.modal { width: min(calc(100% - 36px), 680px); }
.modal::backdrop,
.lightbox::backdrop { background: rgba(4,7,5,.88); backdrop-filter: blur(7px); }
.modal[open] { animation: rise-in .3s ease both; }
.modal-inner { position: relative; max-height: min(82vh, 780px); padding: 58px; background: var(--paper-light); overflow-y: auto; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.modal-inner::before { position: absolute; inset: 12px; border: 1px solid var(--paper-dark); content: ""; pointer-events: none; }
.modal-close,
.lightbox-close { position: absolute; z-index: 2; top: 18px; right: 20px; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; font-family: var(--sans); font-size: 2rem; font-weight: 200; line-height: 1; }
.modal h2 { margin: 0 0 25px; font-family: var(--display); font-size: 3.2rem; font-weight: 400; letter-spacing: -.04em; }
.modal .eyebrow { margin-bottom: 10px; color: var(--red); }
.modal p { color: var(--muted-dark); }
.modal a { text-underline-offset: 3px; }
.modal-intro { padding-bottom: 25px; border-bottom: 1px solid var(--paper-dark); }
.modal address { margin-top: 28px; font-style: normal; line-height: 1.8; }
.legal-details { margin: 30px 0 0; }
.legal-details > div { display: grid; padding: 10px 0; border-top: 1px solid var(--paper-dark); grid-template-columns: 145px 1fr; }
.legal-details dt { color: var(--muted-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-details dd { margin: 0; }

.lightbox { width: min(calc(100% - 40px), 1450px); height: min(calc(100% - 40px), 900px); color: var(--white); }
.lightbox figure { width: 100%; height: 100%; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox img { max-width: 100%; max-height: calc(100% - 65px); object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox figcaption { margin-top: 18px; color: rgba(255,255,255,.72); font-family: var(--display); font-size: 1rem; }
.lightbox-close { top: 0; right: 0; color: var(--white); }

.reveal { opacity: 1; transform: none; }
.hero .reveal { opacity: 0; animation: rise-in .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero .reveal:nth-child(2) { animation-delay: .08s; }
.hero .reveal:nth-child(3) { animation-delay: .16s; }
.hero .reveal:nth-child(4) { animation-delay: .24s; }

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

@media (max-width: 1000px) {
  .menu-toggle { display: flex; gap: 13px; align-items: center; font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
  .menu-lines { width: 25px; height: 16px; display: flex; flex-direction: column; justify-content: space-between; }
  .menu-lines i { height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-7.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: -1; top: 0; right: 0; width: min(86vw, 440px); height: 100vh; padding: 130px 50px 60px; background: var(--ink); box-shadow: -30px 0 80px rgba(0,0,0,.3); flex-direction: column; align-items: flex-start; transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .site-nav.is-open { transform: none; }
  .site-nav a { font-family: var(--display); font-size: 2.1rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .intro-grid { grid-template-columns: 130px 1fr; }
  .rise-grid { gap: 60px; grid-template-columns: 1fr; }
  .rise-image { width: 85%; }
  .section-heading,
  .gallery-heading { grid-template-columns: 190px 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 1; }
  .multiplayer-grid { gap: 70px; }
}

@media (max-width: 720px) {
  .wrap, .nav-shell { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 72px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-name { font-size: 1rem; }
  .menu-toggle > span:first-child { display: none; }
  .site-nav { width: 100vw; padding-inline: 30px; }
  .hero { min-height: max(720px, 100svh); }
  .hero-shade { background: linear-gradient(90deg, rgba(8,14,10,.86), rgba(8,14,10,.32)), linear-gradient(0deg, rgba(8,14,10,.96), transparent 58%); }
  .hero-content { padding: 115px 0 210px; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); line-height: .86; }
  .hero-copy { margin-top: 26px; font-size: 1rem; }
  .hero-actions { margin-top: 30px; flex-direction: column; align-items: flex-start; }
  .hero-meta { height: 120px; grid-template-columns: repeat(2, 1fr); }
  .hero-meta li { padding: 0 8px; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .55rem; }
  .hero-meta li:nth-child(2) { border-right: 0; }
  .intro, .rise, .features, .gallery, .multiplayer { padding: 95px 0; }
  .intro-grid,
  .section-heading,
  .gallery-heading { grid-template-columns: 1fr; gap: 40px; }
  .intro-copy h2,
  .section-heading h2,
  .gallery-heading h2,
  .multiplayer-copy h2,
  .follow h2,
  .rise h2 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .intro-columns { margin-top: 38px; gap: 20px; grid-template-columns: 1fr; }
  .rise-image { width: 100%; }
  .rise-image img { aspect-ratio: .9; }
  .growth-list li { grid-template-columns: 32px 90px 1fr; }
  .growth-list small { line-height: 1.35; }
  .section-heading,
  .gallery-heading { margin-bottom: 50px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 380px; padding: 38px 30px; }
  .feature-card h3 { margin-top: 120px; }
  .feature-card svg { top: 32px; right: 28px; width: 50px; }
  .world-banner { min-height: 600px; }
  .world-banner-copy { padding-bottom: 55px; }
  .world-banner-copy p { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item-large { min-height: 360px; grid-column: auto; }
  .gallery-item-large:first-child { min-height: 440px; }
  .multiplayer-grid { grid-template-columns: 1fr; }
  .player-count { min-height: 320px; box-shadow: 14px 14px 0 var(--paper-dark); }
  .mode-list { flex-direction: column; }
  .mode-list span { border-right: 0; border-bottom: 1px solid rgba(17,23,18,.25); }
  .mode-list span:last-child { border-bottom: 0; }
  .follow { min-height: 700px; }
  .social-links { flex-direction: column; align-items: stretch; }
  .footer-top { gap: 35px; flex-direction: column; align-items: flex-start; }
  .footer-top p { text-align: left; }
  .footer-bottom { gap: 18px; grid-template-columns: 1fr; }
  .legal-links { order: 3; }
  .footer-bottom > a { justify-self: start; }
  .modal-inner { padding: 50px 30px 34px; }
  .modal h2 { font-size: 2.5rem; }
  .legal-details > div { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
