:root {
  --bg: #000;
  --text: #fff;
  --muted: #a4a4a4;
  --soft: #151515;
  --line: rgba(255, 255, 255, 0.14);
  --panel: #0b0b0b;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(var(--max), calc(100vw - 160px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 50%;
  width: min(var(--max), calc(100vw - 80px));
  height: 71px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: #2e2e2e;
  background: transparent;
  color: #fff;
}

.button-small {
  min-height: 40px;
  padding: 8px 16px;
}

.home-header {
  display: none;
}

.home-page {
  --game-bg: #111;
  --game-band: #171717;
  --game-panel: #0d0d0d;
  --game-line: rgba(255, 255, 255, 0.12);
  --game-muted: rgba(255, 255, 255, 0.62);
  --game-gold: #d8b86b;
  background: var(--game-bg);
  color: #f6f2ea;
  font-family: Georgia, "Times New Roman", serif;
}

.home-page p,
.home-page a,
.home-page span,
.home-page cite,
.home-page strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.game-container {
  width: min(1120px, calc(100vw - 220px));
  margin: 0 auto;
}

.game-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 64px;
  padding: 0 max(88px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(16px);
}

.game-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.game-brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}

.game-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.game-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.game-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: #d8b86b;
  opacity: 0;
  transition:
    left 220ms ease,
    right 220ms ease,
    opacity 220ms ease;
}

.game-nav a:hover,
.game-nav a:focus-visible,
.game-nav a.is-active,
.game-nav a[aria-current="page"] {
  color: #f6e4b4;
}

.game-nav a:hover::after,
.game-nav a:focus-visible::after,
.game-nav a.is-active::after,
.game-nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.game-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.game-hero-image {
  position: absolute;
  inset: 58px 70px 52px;
  width: calc(100% - 140px);
  height: calc(100% - 110px);
  object-fit: contain;
  object-position: center top;
  border: 0;
  border-radius: 0;
  opacity: 0.88;
}

.game-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 48%, rgba(17, 17, 17, 0.04) 0, rgba(17, 17, 17, 0.4) 52%, rgba(17, 17, 17, 0.92) 86%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.06) 72%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0) 52%, var(--game-bg) 100%);
}

.game-hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100vw - 80px));
  padding-top: 346px;
  margin-left: max(150px, calc((100vw - 1120px) / 2));
}

.game-hero-copy h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.game-hero-copy h1 span {
  display: block;
  font-family: inherit;
  white-space: nowrap;
}

.game-hero-copy p {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.game-hero-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin-top: 44px;
  padding: 0 34px;
  border-radius: 999px;
  background: #e7c673;
  color: #201807;
  font-size: 15px;
  font-weight: 800;
}

.game-section {
  padding: 88px 0;
  background: var(--game-bg);
}

.game-featured {
  background: #141414;
}

.game-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.game-eyebrow {
  color: var(--game-gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-section-head h2,
.game-values h2,
.intent-copy h2,
.footer-about h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.game-section-head a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

.experience-card {
  overflow: hidden;
  border: 1px solid var(--game-line);
  border-radius: 7px;
  background: #101010;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.experience-card:hover,
.experience-card:focus-within {
  border-color: var(--game-gold);
  box-shadow:
    0 0 0 1px rgba(216, 184, 107, 0.18),
    0 18px 54px rgba(216, 184, 107, 0.11);
  transform: translateY(-4px);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.line-art-card img {
  filter: contrast(1.22) brightness(1.04);
}

.experience-card div {
  min-height: 126px;
  padding: 24px 26px 28px;
}

.experience-card h3 {
  color: #fff;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 700;
}

.experience-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.game-values {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #1a1a1a;
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 82px;
  align-items: start;
}

.values-copy {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 22px;
  padding-top: 8px;
}

.game-values h2 {
  margin-top: 0;
  max-width: 520px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.values-intro {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 154px;
  align-items: start;
  padding: 26px 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 184, 107, 0.1), rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0.035)),
    #111;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--game-gold), rgba(216, 184, 107, 0));
}

.value-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 184, 107, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 234, 174, 0.24), rgba(216, 184, 107, 0.08) 42%, rgba(17, 17, 17, 0.88) 70%),
    #111;
  color: var(--game-gold);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 22px rgba(216, 184, 107, 0.08);
}

.value-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(216, 184, 107, 0.24);
  border-radius: 50%;
}

.value-icon svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item p {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.value-item small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.intent-section {
  padding-top: 128px;
}

.intent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 112px;
  align-items: center;
}

.intent-copy h2 {
  max-width: 560px;
  font-family: "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-style: normal;
  font-weight: 500;
}

.intent-panel {
  max-width: 560px;
  margin-top: 38px;
  padding: 26px 30px 26px 36px;
  border-left: 5px solid var(--game-gold);
  background: rgba(255, 255, 255, 0.035);
}

.intent-panel p,
.intent-body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.62;
}

.intent-body {
  max-width: 590px;
  margin-top: 34px;
}

.intent-image,
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--game-line);
  border-radius: 8px;
  background: #0d0d0d;
}

.gallery-grid figure {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.intent-image {
  padding: 14px;
}

.intent-image img {
  width: 100%;
  aspect-ratio: 0.88;
  border-radius: 4px;
  object-fit: cover;
}

.gallery-section {
  padding-top: 72px;
  padding-bottom: 128px;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(0.92);
}

.quote-section {
  padding: 56px 0 88px;
  background: var(--game-bg);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  padding-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-grid blockquote {
  margin: 0;
}

.quote-grid p {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
}

.quote-grid cite {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-footer {
  padding: 88px 0 64px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 220px;
  align-items: start;
  padding-bottom: 72px;
}

.footer-mark {
  display: grid;
  gap: 16px;
  justify-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-mark .game-brand-logo {
  width: 58px;
  height: 58px;
}

.footer-about h2 {
  margin-top: 0;
  font-size: clamp(26px, 3vw, 40px);
}

.footer-about p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-nav strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a,
.footer-nav p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.footer-legal-copy {
  display: grid;
  gap: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 850ms ease,
      transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

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

.footer-nav a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 612px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 52px;
  border-radius: 64px;
  background: #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 34%, rgba(0, 0, 0, 0.18) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, calc(100% - 96px));
  gap: 34px;
  padding: 86px 0 70px;
  margin-left: 60px;
}

.hero-card-brand {
  position: absolute;
  z-index: 2;
  top: 48px;
  left: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 500px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1.03;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

h3 {
  max-width: 520px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  font-size: 24px;
  line-height: 1.4;
}

.lead {
  max-width: 500px;
}

.hero .lead {
  max-width: 420px;
  font-size: 18px;
}

.hero .bilingual p {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

.hero .lead + .bilingual p {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
}

.bilingual {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.bilingual p {
  flex: 1;
}

.accent-line {
  flex: 0 0 8px;
  align-self: stretch;
  min-height: 34px;
  background: url("assets/accent.jpg") center / cover no-repeat;
}

.hero-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.section {
  padding: 100px 0 40px;
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
}

.section-title.narrow {
  max-width: 900px;
}

.copy-pair {
  display: grid;
  gap: 10px;
  margin-bottom: 80px;
}

.copy-pair > p,
.copy-pair .bilingual p {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
}

.feature-image {
  height: 550px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.culture-grid article {
  display: grid;
  align-content: start;
  gap: 24px;
}

.culture-grid article > p,
.culture-grid .bilingual p {
  font-size: 24px;
}

.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: start;
}

.footer-inner > div:first-child {
  display: grid;
  gap: 24px;
  max-width: 880px;
}

.footer-inner p {
  font-size: 24px;
}

.footer-bottom {
  width: min(var(--max), calc(100vw - 160px));
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--text);
}

.page-hero {
  padding: 220px 0 80px;
}

.contact-hero {
  padding: 190px 0 70px;
}

.contact-hero-inner {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.contact-hero h1 {
  font-size: clamp(64px, 8vw, 112px);
}

.contact-hero .bilingual {
  max-width: 820px;
}

.contact-hero .bilingual p {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
}

.contact-intro {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-intro p {
  font-size: 20px;
  line-height: 1.45;
}

.contact-section {
  padding: 20px 0 90px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-layout h2 {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
}

.contact-list {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-item {
  display: grid;
  min-height: 176px;
  align-content: space-between;
  gap: 18px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.contact-item strong {
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.16;
  font-weight: 500;
  word-break: break-word;
}

.contact-item[href^="mailto:"] strong {
  font-size: clamp(22px, 1.55vw, 28px);
}

.contact-item p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.contact-page {
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-page .container,
.contact-page .footer-bottom {
  width: min(1120px, calc(100vw - 220px));
}

.contact-page .site-header {
  top: 18px;
  width: min(var(--max), calc(100vw - 320px));
  height: 90px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.contact-page .brand {
  gap: 24px;
  font-size: 24px;
  font-weight: 400;
}

.contact-page .brand-logo {
  width: 88px;
  height: 88px;
}

.contact-page .button-small {
  min-height: 54px;
  padding: 12px 24px;
  font-size: 24px;
}

.contact-screen {
  flex: 1;
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: clamp(42px, 6vh, 72px);
  padding: clamp(34px, 5vh, 58px) 0 clamp(26px, 4vh, 42px);
}

.contact-simple {
  display: grid;
  gap: clamp(34px, 4.8vh, 48px);
}

.contact-email {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(42px, 5.1vw, 74px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-address {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-style: normal;
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.16;
}

.contact-city {
  position: relative;
  color: var(--text);
}

.contact-city::before {
  content: "📍";
  margin-right: 8px;
  font-size: 22px;
  vertical-align: 4px;
}

.contact-brand-block {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 80px;
  align-items: end;
  margin-top: 0;
}

.contact-brand-copy {
  display: grid;
  gap: 28px;
}

.contact-brand-copy > p {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.36;
}

.contact-brand-copy .bilingual p {
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.42;
}

.contact-logo-mark {
  justify-self: end;
}

.contact-logo-mark img {
  width: clamp(136px, 12vw, 190px);
  height: clamp(136px, 12vw, 190px);
  border-radius: 50%;
}

.contact-bottom {
  flex: 0 0 auto;
  padding: 0 0 28px;
}

.contact-bottom .footer-bottom {
  margin-top: 0;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 160px 0 80px;
}

.not-found .container {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.eyebrow {
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 1099px) {
  .container,
  .footer-bottom {
    width: calc(100vw - 80px);
  }

  .contact-page .container,
  .contact-page .footer-bottom {
    width: calc(100vw - 80px);
  }

  .game-container {
    width: calc(100vw - 80px);
  }

  .game-header {
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 0 40px;
  }

  .game-nav {
    gap: 24px;
  }

  .game-hero {
    min-height: 780px;
  }

  .game-hero-image {
    inset: 40px 32px 50px;
    width: calc(100% - 64px);
    height: calc(100% - 90px);
  }

  .game-hero-copy {
    padding-top: 300px;
    margin-left: 72px;
  }

  .intent-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .intent-image {
    width: min(520px, 100%);
  }

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

  .footer-top {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 80px;
  }

  .hero {
    min-height: 660px;
  }

  h1,
  h2 {
    font-size: 64px;
  }

  .copy-pair > p,
  .copy-pair .bilingual p {
    font-size: 32px;
  }

  .feature-image {
    height: 347px;
  }

  .footer-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 12px;
    width: calc(100vw - 32px);
    height: 64px;
    padding: 0 16px;
  }

  .container,
  .footer-bottom {
    width: calc(100vw - 40px);
  }

  .contact-page {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  .contact-page .container,
  .contact-page .footer-bottom {
    width: calc(100vw - 40px);
  }

  .game-container {
    width: calc(100vw - 40px);
  }

  .game-header {
    min-height: 78px;
    height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 20px;
    align-content: center;
  }

  .game-brand {
    gap: 10px;
    font-size: 15px;
  }

  .game-brand-logo {
    width: 24px;
    height: 24px;
  }

  .game-nav {
    justify-self: start;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .game-nav a {
    font-size: 11px;
  }

  .game-hero {
    min-height: 640px;
  }

  .game-hero-image {
    inset: 22px 14px 40px;
    width: calc(100% - 28px);
    height: calc(100% - 62px);
    border-radius: 18px;
  }

  .game-hero-copy {
    width: calc(100vw - 56px);
    padding-top: 246px;
    margin-left: 28px;
  }

  .game-hero-copy h1 {
    font-size: 40px;
    line-height: 1.03;
  }

  .game-hero-copy p {
    margin-top: 18px;
    font-size: 15px;
  }

  .game-hero-action {
    min-height: 48px;
    margin-top: 28px;
    padding: 0 24px;
    font-size: 13px;
  }

  .game-section {
    padding: 64px 0;
  }

  .game-section-head {
    display: grid;
    align-items: start;
    margin-bottom: 30px;
  }

  .experience-grid,
  .gallery-grid,
  .quote-grid,
  .footer-nav,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .experience-card img {
    aspect-ratio: 1 / 1;
  }

  .game-values {
    padding: 72px 0;
  }

  .values-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .values-copy {
    position: static;
  }

  .game-values h2 {
    font-size: 40px;
  }

  .values-intro {
    font-size: 16px;
  }

  .value-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-item {
    min-height: auto;
    padding: 22px;
  }

  .intent-section {
    padding-top: 72px;
  }

  .intent-grid {
    gap: 38px;
  }

  .intent-copy h2 {
    font-size: 40px;
  }

  .intent-panel {
    margin-top: 28px;
    padding: 22px 22px 22px 26px;
  }

  .intent-panel p,
  .intent-body {
    font-size: 15px;
  }

  .gallery-section {
    padding-bottom: 72px;
  }

  .quote-section {
    padding: 34px 0 68px;
  }

  .quote-grid {
    gap: 34px;
  }

  .game-footer {
    padding: 64px 0 48px;
  }

  .footer-top {
    gap: 36px;
    padding-bottom: 48px;
  }

  .footer-nav {
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    gap: 64px;
    padding: 180px 0 80px;
  }

  h1,
  h2 {
    font-size: 40px;
  }

  .contact-hero {
    padding: 140px 0 56px;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-hero .bilingual p {
    font-size: 32px;
  }

  .contact-intro p {
    font-size: 18px;
  }

  .contact-section {
    padding-bottom: 70px;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-layout h2 {
    font-size: 22px;
  }

  .contact-item {
    min-height: 160px;
    padding: 24px;
  }

  .contact-item strong {
    font-size: 24px;
  }

  .contact-screen {
    align-content: start;
    gap: 54px;
    padding: 32px 0 54px;
  }

  .contact-page .site-header {
    width: calc(100vw - 40px);
    height: 64px;
  }

  .contact-page .brand {
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
  }

  .contact-page .brand-logo {
    width: 44px;
    height: 44px;
  }

  .contact-page .button-small {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 16px;
  }

  .contact-simple {
    gap: 40px;
  }

  .contact-email {
    font-size: clamp(32px, 9vw, 44px);
  }

  .contact-address {
    font-size: 22px;
  }

  .contact-brand-block {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 0;
  }

  .contact-logo-mark {
    justify-self: start;
  }

  h3 {
    font-size: 38px;
  }

  p,
  .lead,
  .culture-grid article > p,
  .culture-grid .bilingual p,
  .footer-inner p {
    font-size: 22px;
  }

  .copy-pair > p,
  .copy-pair .bilingual p {
    font-size: 28px;
  }

  .section {
    padding: 80px 0 0;
  }

  .feature-image {
    height: 220px;
    border-radius: 18px;
  }

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

  .hero-meta {
    justify-items: start;
  }

  .page-hero {
    padding-top: 160px;
  }
}
