:root {
  --bg: #f4ece0;
  --bg-deep: #ebe0cf;
  --ink: #1a1410;
  --ink-soft: #4a3f36;
  --ink-mute: #8a7d6f;
  --rule: #d9cdb8;
  --paper: #fbf6ec;
  --cream: #fbf6ec;

  --red: #c8321f;
  --yellow: #f0b524;
  --ocean: #0f3a5c;

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMjAnIGhlaWdodD0nMjIwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDAuMSAgMCAwIDAgMCAwLjA4ICAwIDAgMCAwIDAuMDYgIDAgMCAwIDAuMTggMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
  opacity: 0.45;
  mix-blend-mode: multiply;
}

/* topbar */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fbf6ec;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  font-style: italic;
  font-variation-settings: "opsz" 24;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wordmark-logo {
  height: 1.6em;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.55));
}
.wordmark .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
  margin: 0 2px 0 1px;
  transform: translateY(-2px);
}
.topnav {
  display: flex;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.topnav a { text-decoration: none; opacity: 0.9; transition: opacity 0.2s, color 0.2s; }
.topnav a:hover { opacity: 1; color: var(--yellow); }
.topnav .num { font-family: var(--mono); opacity: 0.55; margin-right: 6px; }

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #1a1208;
  display: flex;
  align-items: flex-end;
}
.hero-art {
  position: absolute; inset: 0;
  background-image: url("../assets/hero.png");
  background-size: cover;
  background-position: 28% 42%;
  transform: scale(1.12);
  transform-origin: 30% 50%;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.12) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-0.8%, -0.6%, 0); }
}
.hero-mask {
  position: absolute;
  right: 0; bottom: 0;
  width: 22%;
  height: 36%;
  background: linear-gradient(to top left, rgba(12,8,4,0.92) 0%, rgba(12,8,4,0.55) 50%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,8,4,0.92) 0%, rgba(12,8,4,0.78) 18%, rgba(12,8,4,0.4) 38%, rgba(12,8,4,0.05) 58%, transparent 72%),
    linear-gradient(to right, rgba(12,8,4,0.65) 0%, rgba(12,8,4,0.25) 32%, transparent 60%);
}
.hero-scrim {
  position: absolute;
  left: 0; bottom: 0;
  width: min(820px, 80%);
  height: 75%;
  background: radial-gradient(ellipse at 22% 88%, rgba(8,5,2,0.85) 0%, rgba(8,5,2,0.45) 38%, transparent 70%);
  pointer-events: none;
}
.hero-topscrim {
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, rgba(12,8,4,0.65), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}
.hero-left { color: #fbf6ec; max-width: 720px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f6ecd8;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 38px; height: 1px;
  background: rgba(246, 236, 216, 0.7);
}
.hero-eyebrow .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 181, 36, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(240, 181, 36, 0); }
}

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 22px;
}
.wt-logo {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  flex: none;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.55));
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fbf6ec;
  margin: 0;
  font-variation-settings: "opsz" 60;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}

.hero-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(251, 246, 236, 0.92);
  max-width: 46ch;
  margin: 0 0 38px;
  text-wrap: pretty;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px 16px 30px;
  background: var(--ink);
  color: #fbf6ec;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(246, 236, 216, 0.15);
  transition: transform 0.25s ease;
  position: relative;
}
.cta::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--red);
  transform: translate(6px, 6px);
  z-index: 0;
  transition: transform 0.25s ease;
}
.cta > * { position: relative; z-index: 1; }
.cta:hover { transform: translate(-2px, -2px); }
.cta:hover::after { transform: translate(8px, 8px); }
.cta .arrow { width: 18px; height: 10px; position: relative; }
.cta .arrow::before, .cta .arrow::after { content: ""; position: absolute; }
.cta .arrow::before {
  top: 50%; left: 0; right: 0; height: 1px;
  background: currentColor; transform: translateY(-50%);
}
.cta .arrow::after {
  top: 50%; right: 0; width: 8px; height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.platform {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 236, 216, 0.78);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.platform b { color: #fbf6ec; font-weight: 500; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(246, 236, 216, 0.65);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(246, 236, 216, 0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-12px); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* sections */
section {
  position: relative;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
}
.container { max-width: var(--maxw); margin: 0 auto; }
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content: ""; width: 28px; height: 1px;
  background: var(--ink-mute);
}
.label .num { font-weight: 500; color: var(--red); }

/* what it is */
.about-game { border-top: 1px solid var(--rule); }
.about-game-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.ag-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 32px;
  text-wrap: balance;
  font-variation-settings: "opsz" 60;
}
.ag-text h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.ag-text p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 1.1em;
  font-variation-settings: "opsz" 18;
  text-wrap: pretty;
}

.ag-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(rgba(40,20,10,0.05), rgba(40,20,10,0.05)),
    url("../assets/mio-kitsune.png") center/cover;
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -30px rgba(40,20,10,0.4);
}
.ag-art::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(251, 246, 236, 0.4);
  pointer-events: none;
}
.ag-art .caption {
  position: absolute;
  left: 18px; bottom: 16px;
  color: #fbf6ec;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  z-index: 2;
}
.ag-art .caption span { color: var(--yellow); }
.ag-art .stamp {
  position: absolute;
  top: 18px; right: 16px;
  color: var(--yellow);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  z-index: 2;
}

/* riders strip */
.game-cta {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.game-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.game-cta-link:hover { color: var(--ink-soft); border-color: var(--ink-soft); }
.game-cta-link .arrow { transition: transform 0.3s ease; }
.game-cta-link:hover .arrow { transform: translateY(3px); }

.riders {
  position: relative;
  background: #1a1410;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 0;
}
.riders-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 28px var(--gutter) 14px;
  color: #f4ece0;
  border-bottom: 1px dashed rgba(244, 236, 224, 0.15);
}
.riders-head .label {
  color: rgba(244, 236, 224, 0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.riders-head .label::before { background: rgba(244, 236, 224, 0.4); }
.riders-head .label .num {
  background: var(--ink);
  color: var(--cream);
  padding: 3px 7px;
  margin-right: 8px;
  border: 1px solid rgba(244,236,224,0.4);
}
.riders-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 500;
  font-variation-settings: "opsz" 32;
  color: #f4ece0;
  max-width: 18ch;
}
.riders-head h2 em { font-style: italic; color: var(--yellow); }
.riders-art {
  position: relative;
  height: clamp(360px, 48vw, 560px);
  background: url("../assets/characters.png") center 30%/cover;
  filter: saturate(0.95) contrast(1.02);
}
.riders-art::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 30%, rgba(26,20,16,0.55) 95%),
    linear-gradient(to bottom, rgba(26,20,16,0.4) 0%, transparent 18%, transparent 75%, rgba(26,20,16,0.65) 100%);
  pointer-events: none;
}
.riders-labels {
  position: absolute;
  inset: auto 0 18px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 var(--gutter);
  gap: 1rem;
  color: rgba(244, 236, 224, 0.7);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
}
.riders-labels span {
  border-top: 1px solid rgba(244, 236, 224, 0.25);
  padding-top: 8px;
}
.riders-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--gutter) 22px;
  color: rgba(244, 236, 224, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-top: 1px dashed rgba(244, 236, 224, 0.15);
}

/* rides poster */
.rides {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
}
.rides-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 0 var(--gutter);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.rides-head .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.rides-head .label .num {
  background: var(--ink); color: var(--paper);
  padding: 3px 7px; margin-right: 8px;
}
.rides-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.0;
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.01em;
  max-width: none;
  white-space: nowrap;
}
.rides-head h2 em { font-style: italic; color: var(--red); }
.rides-head .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 30ch;
  border-left: 2px solid var(--ink);
  padding-left: 14px;
}
.rides-poster-wrap {
  position: relative;
  margin: 0 var(--gutter);
}
.rides-poster-frame {
  position: relative;
  border: 1px solid var(--ink);
  background: #f1e7d6;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -30px rgba(40, 18, 10, 0.35),
    0 8px 22px -12px rgba(40, 18, 10, 0.2);
  overflow: hidden;
}
.rides-poster-frame::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed rgba(40, 18, 10, 0.18);
  pointer-events: none;
  z-index: 3;
}
.rides-poster-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.rides-poster-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.rides-poster-tag .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  margin-right: 6px;
  transform: translateY(-1px);
}
.rides-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 16px var(--gutter) 0;
  margin-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.rides-meta b { color: var(--ink); font-weight: 600; }

/* interlude */
.interlude {
  position: relative;
  height: clamp(280px, 45vh, 480px);
  padding: 0;
  background: url("../assets/shonan-street.png") center 60%/cover;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.interlude::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,10,5,0.55) 0%, rgba(20,10,5,0.0) 50%),
    linear-gradient(to top, rgba(20,10,5,0.45), transparent 50%);
}
.interlude-text {
  position: absolute;
  left: var(--gutter);
  bottom: 38px;
  color: #f6ecd8;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  max-width: 30ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 32;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0;
}
.interlude-coord {
  position: absolute;
  top: 24px; right: var(--gutter);
  color: rgba(246, 236, 216, 0.85);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* about studio */
.about-studio {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.about-studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.as-meta { position: sticky; top: 40px; }
.as-meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 24px 0 0;
  letter-spacing: -0.015em;
}
.as-meta h3 em { color: var(--red); font-style: italic; }
.as-data {
  margin-top: 36px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11.5px;
}
.as-data .row {
  display: grid;
  grid-template-columns: 96px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  gap: 16px;
}
.as-data .k {
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
}
.as-data .v { color: var(--ink); }
.as-data .v b { font-weight: 500; }

.as-prose {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
  font-variation-settings: "opsz" 22;
  text-wrap: pretty;
}
.as-prose p { margin: 0 0 1.1em; }
.as-prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  padding: 0.06em 0.12em 0 0;
  font-weight: 500;
  color: var(--red);
  font-variation-settings: "opsz" 72;
}
.as-prose h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 2.4em 0 0.8em;
  font-weight: 500;
}
.as-prose h4:first-child { margin-top: 0; }
.as-prose .pull {
  display: block;
  margin: 1.4em 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--red);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95em;
}
.as-prose a.lnk {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* footer */
footer {
  background: var(--ink);
  color: #d8ccb8;
  padding: clamp(60px, 8vh, 100px) var(--gutter) 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(216, 204, 184, 0.25), transparent);
}
.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.foot-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fbf6ec;
  font-variation-settings: "opsz" 72;
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}
.foot-mark-logo {
  height: 1em;
  width: auto;
  display: block;
}
.foot-mark .dot {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 4px;
  transform: translateY(-12px);
}
.foot-tag {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: #a8997f;
  max-width: 32ch;
  line-height: 1.4;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7d6f;
  margin: 8px 0 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  color: #d8ccb8;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--yellow); }
.foot-col a .ext {
  font-family: var(--mono);
  font-size: 11px;
  color: #6b5f53;
  letter-spacing: 0.1em;
}

.foot-bottom {
  max-width: var(--maxw);
  margin: 80px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(216, 204, 184, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #6b5f53;
  text-transform: uppercase;
}

/* responsive */
@media (max-width: 880px) {
  .topnav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-logo-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-game-grid { grid-template-columns: 1fr; gap: 56px; }
  .ag-art { aspect-ratio: 5/4; }
  .about-studio-grid { grid-template-columns: 1fr; gap: 40px; }
  .as-meta { position: static; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .riders-head { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .riders-labels { grid-template-columns: repeat(3, 1fr); font-size: 9px; }
  .riders-labels span:nth-child(n+4) { display: none; }
  .rides-head { grid-template-columns: 1fr; }
  .rides-meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .hero-eyebrow::before { display: none; }
  .hero-headline { font-size: 34px; }
  .foot-mark { font-size: 56px; }
}
