:root {
  --ink: #090908;
  --ink-soft: #131311;
  --paper: #f3f0e9;
  --paper-bright: #fffdf8;
  --orange: #f7931e;
  --orange-bright: #ffad40;
  --muted: #afa99e;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(9, 9, 8, 0.14);
  --font-display: "Poppins", "Arial Black", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1360px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.home.dialog-open { overflow: hidden; }

body.home .wp-site-blocks {
  padding: 0;
}

body.home .wp-site-blocks > * {
  margin-block-start: 0;
}

body.admin-bar .site-header { top: 32px; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, height .25s ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper-bright);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.05em;
}
.brand b { color: var(--orange); }

.brand-mark {
  position: relative;
  width: 29px;
  height: 29px;
  display: inline-block;
  transform: rotate(-6deg);
}
.brand-mark i { position: absolute; display: block; background: var(--orange); }
.brand-mark i:first-child { width: 18px; height: 18px; border-radius: 58% 42% 48% 52%; left: 5px; bottom: 1px; }
.brand-mark i:nth-child(2) { width: 10px; height: 7px; border-radius: 100% 0 100% 0; right: 0; top: 2px; transform: rotate(-12deg); }
.brand-mark i:last-child { width: 2px; height: 8px; left: 14px; top: 2px; transform: rotate(18deg); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  position: relative;
  color: #d2cec6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .2s ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--orange);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--paper-bright); }
.main-nav a.is-active::after, .main-nav a:hover::after { right: 0; }
.main-nav .nav-cta { padding: 11px 16px; color: var(--ink); background: var(--paper); border-radius: 2px; }
.main-nav .nav-cta:hover { background: var(--orange); color: var(--ink); }
.nav-cta span { color: var(--orange); margin-left: 4px; }
.nav-cta:hover span { color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: min(900px, 100svh);
  padding: 130px max(28px, calc((100vw - var(--max)) / 2)) 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, .97fr);
  align-items: center;
  gap: 44px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,147,30,.7), transparent);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 640px;
  height: 640px;
  right: -170px;
  top: 60px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(150px);
  opacity: .16;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1 {
  margin-bottom: 26px;
  color: var(--paper-bright);
  font-family: var(--font-display);
  font-size: clamp(50px, 5.2vw, 82px);
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
h1 em { color: var(--orange); font-style: normal; }

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #beb9b0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover { background: var(--orange-bright); }
.text-link { color: var(--paper-bright); text-decoration: none; font-size: 13px; font-weight: 700; }
.text-link span { color: var(--orange); display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
}
.hero-facts div { padding: 20px 22px 0 0; }
.hero-facts dt { float: left; margin-right: 10px; color: var(--paper-bright); font-family: var(--font-display); font-size: 27px; line-height: 1; }
.hero-facts dd { margin: 0; color: #8f8a81; font-size: 11px; line-height: 1.4; }

.hero-showcase { position: relative; height: 590px; perspective: 1200px; }
.orbit {
  position: absolute;
  border: 1px solid rgba(247,147,30,.25);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 510px; height: 510px; top: 34px; left: 66px; }
.orbit-two { width: 350px; height: 350px; top: 114px; left: 146px; border-style: dashed; animation: slow-spin 30s linear infinite; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

.showcase-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 0;
  color: var(--paper-bright);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 35px 80px rgba(0,0,0,.48);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.showcase-card:hover, .showcase-card:focus-visible { z-index: 5; transform: translateY(-12px) rotate(0deg) scale(1.02); box-shadow: 0 42px 100px rgba(0,0,0,.7); outline: 2px solid var(--orange); outline-offset: 4px; }
.showcase-main {
  z-index: 3;
  top: 42px;
  left: 126px;
  width: 350px;
  height: 500px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(155deg, #f06f21 0%, #d74924 52%, #43131b 100%);
  transform: rotate(3deg);
}
.showcase-main::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: 80px;
  left: -36px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.08);
}
.showcase-label { align-self: flex-start; padding: 6px 9px; border: 1px solid rgba(255,255,255,.45); border-radius: 99px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.showcase-letters { z-index: 1; display: flex; align-items: center; justify-content: center; flex: 1; gap: -8px; }
.showcase-letters i { display: grid; place-items: center; width: 94px; height: 118px; margin-left: -13px; border: 2px solid rgba(255,255,255,.45); border-radius: 48% 52% 45% 55%; background: rgba(255,255,255,.13); backdrop-filter: blur(4px); font-family: var(--font-display); font-size: 54px; font-style: normal; text-shadow: 0 6px 16px rgba(0,0,0,.3); }
.showcase-letters i:nth-child(2) { transform: translateY(-30px) rotate(6deg); }
.showcase-letters i:nth-child(3) { transform: translateY(15px) rotate(-5deg); }
.showcase-title { z-index: 1; font-family: var(--font-display); font-size: 34px; font-weight: 900; line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.showcase-meta { z-index: 1; margin-top: 12px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; }

.showcase-left, .showcase-right { z-index: 2; width: 185px; height: 240px; padding: 20px; justify-content: space-between; }
.showcase-left { top: 210px; left: 4px; background: #f4cd30; color: #211602; transform: rotate(-9deg); }
.showcase-left > span:last-child { font-family: var(--font-display); font-size: 18px; line-height: 1.05; text-transform: uppercase; }
.mini-blocks { display: flex; gap: 6px; }
.mini-blocks i { display: grid; place-items: center; height: 48px; padding: 0 8px; background: #211602; color: #f4cd30; font-family: var(--font-display); font-size: 14px; font-style: normal; transform: rotate(-4deg); }
.mini-blocks i:last-child { transform: translateY(14px) rotate(7deg); }
.showcase-right { top: 142px; right: 3px; background: #1a355a; transform: rotate(9deg); }
.showcase-right > span:last-child { font-family: var(--font-display); font-size: 17px; line-height: 1.05; text-transform: uppercase; }
.showcase-right small { display: block; margin-top: 8px; color: #83d6f8; font-family: var(--font-body); font-size: 9px; font-weight: 700; line-height: 1.3; text-transform: none; }
.sound-rings { position: relative; width: 110px; height: 110px; margin: 6px auto 0; border: 1px solid #83d6f8; border-radius: 50%; }
.sound-rings::before, .sound-rings::after { content: ""; position: absolute; border: 1px solid rgba(131,214,248,.55); border-radius: 50%; inset: 14px; }
.sound-rings::after { inset: 34px; background: #83d6f8; box-shadow: 0 0 30px #83d6f8; }
.showcase-hint { position: absolute; bottom: -4px; right: 30px; color: #716c63; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.showcase-hint span { color: var(--orange); }

.games-section {
  position: relative;
  padding: 116px max(28px, calc((100vw - var(--max)) / 2)) 126px;
  background: var(--paper);
  color: var(--ink);
}
.games-section .eyebrow { color: #bd5e00; }
.section-heading { display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .studio-main h2 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(37px, 4vw, 58px); line-height: 1.03; letter-spacing: -.055em; text-transform: uppercase; }
.section-heading > p { max-width: 440px; margin-bottom: 5px; color: #625e57; font-size: 14px; }

.filters { display: flex; gap: 8px; margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter {
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 1px solid var(--line-light);
  border-radius: 99px;
  background: transparent;
  color: #57534c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 5px; padding: 0 5px; border-radius: 99px; background: rgba(0,0,0,.08); font-size: 9px; }
.filter:hover, .filter.is-active { border-color: var(--ink); background: var(--ink); color: var(--paper-bright); }
.filter.is-active span { background: var(--orange); color: var(--ink); }

.games-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.game-card {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  animation: card-in .45s both;
}
@keyframes card-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.game-card[hidden] { display: none; }
.game-card:hover .game-cover, .game-card:focus-visible .game-cover { transform: translateY(-7px); box-shadow: 0 18px 40px rgba(22,16,8,.18); }
.game-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
.game-cover {
  position: relative;
  aspect-ratio: 4 / 3.1;
  padding: 18px;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  background: var(--card-bg);
  color: var(--card-fg);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.game-cover::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border: 30px solid currentColor;
  border-radius: 50%;
  opacity: .08;
}
.cover-top { position: absolute; z-index: 2; top: 15px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.series-code { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }
.status-pill { padding: 5px 7px; border: 1px solid currentColor; border-radius: 99px; font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }
.cover-motif { width: 100%; display: grid; place-items: center; font-family: var(--font-display); }
.motif-tiles { display: flex; align-items: center; justify-content: center; gap: 6px; transform: rotate(-4deg); }
.motif-tiles i { display: grid; place-items: center; min-width: 50px; height: 58px; padding: 0 7px; border: 2px solid currentColor; background: rgba(255,255,255,.12); box-shadow: 5px 5px 0 currentColor; font-size: 16px; font-style: normal; }
.motif-shapes { position: relative; width: 150px; height: 100px; }
.motif-shapes i { position: absolute; display: block; }
.motif-shapes i:first-child { width: 66px; height: 66px; left: 2px; top: 18px; border: 10px solid currentColor; border-radius: 50%; }
.motif-shapes i:nth-child(2) { width: 62px; height: 62px; right: 0; top: 8px; background: currentColor; transform: rotate(15deg); opacity: .8; }
.motif-shapes i:last-child { width: 0; height: 0; left: 59px; bottom: 0; border-left: 38px solid transparent; border-right: 38px solid transparent; border-bottom: 70px solid rgba(255,255,255,.45); }
.motif-type { font-size: clamp(52px, 6vw, 86px); font-weight: 900; letter-spacing: -.12em; line-height: 1; text-shadow: 6px 6px 0 rgba(255,255,255,.18); }
.motif-type small { font-size: .28em; letter-spacing: .03em; }
.motif-rings { width: 120px; height: 120px; border: 2px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 0 20px rgba(255,255,255,.1), inset 0 0 0 22px currentColor, 0 0 0 18px rgba(255,255,255,.08); }
.motif-skyline { width: 170px; height: 90px; display: flex; align-items: flex-end; justify-content: center; gap: 6px; border-bottom: 4px solid currentColor; }
.motif-skyline i { display: block; width: 25px; height: var(--h); background: currentColor; opacity: var(--o, .9); }
.motif-ball { width: 104px; height: 104px; display: grid; place-items: center; border: 8px solid currentColor; border-radius: 50%; font-size: 56px; transform: rotate(-15deg); }
.motif-cat { position: relative; width: 125px; height: 100px; border: 7px solid currentColor; border-radius: 47% 47% 52% 52%; }
.motif-cat::before, .motif-cat::after { content: ""; position: absolute; z-index: -1; width: 48px; height: 48px; top: -25px; background: var(--card-bg); border: 7px solid currentColor; transform: rotate(45deg); }
.motif-cat::before { left: -5px; }.motif-cat::after { right: -5px; }
.motif-cat i::before, .motif-cat i::after { content: ""; position: absolute; width: 12px; height: 18px; top: 40px; border-radius: 50%; background: currentColor; }
.motif-cat i::before { left: 28px; }.motif-cat i::after { right: 28px; }
.game-info { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; padding: 15px 2px 9px; border-bottom: 1px solid var(--line-light); }
.game-info h3 { margin: 0; font-family: var(--font-display); font-size: 15px; line-height: 1.25; letter-spacing: -.025em; }
.game-age { color: #6e6960; font-size: 10px; font-weight: 700; white-space: nowrap; }
.game-info p { grid-column: 1 / -1; margin: 0; color: #6e6960; font-size: 11px; line-height: 1.45; }
.games-note { margin: 30px 0 0; color: #777168; font-size: 11px; }

.studio-section {
  padding: 122px max(28px, calc((100vw - var(--max)) / 2)) 0;
  background: var(--ink);
  color: var(--paper);
}
.studio-main { display: grid; grid-template-columns: 1.05fr .75fr; gap: 28px 90px; align-items: end; padding-bottom: 80px; }
.studio-main .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.studio-main h2 { color: var(--paper-bright); font-size: clamp(42px, 5.2vw, 72px); }
.studio-main > p { margin-bottom: 18px; color: #a29d94; font-size: 16px; line-height: 1.7; }
.studio-main .button { grid-column: 2; justify-self: start; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.principles article { min-height: 280px; padding: 36px 38px 30px 0; border-right: 1px solid var(--line-dark); }
.principles article + article { padding-left: 38px; }
.principles article:last-child { border-right: 0; }
.principles span { color: var(--orange); font-family: var(--font-display); font-size: 11px; }
.principles h3 { margin: 62px 0 12px; color: var(--paper-bright); font-family: var(--font-display); font-size: 22px; letter-spacing: -.04em; text-transform: uppercase; }
.principles p { max-width: 340px; margin: 0; color: #817c74; font-size: 12px; }

.site-footer { min-height: 150px; display: grid; grid-template-columns: 1fr 1fr auto auto; align-items: center; gap: 30px; color: #7e7971; font-size: 11px; }
.brand-footer { color: var(--paper-bright); }
.site-footer p { margin: 0; }
.site-footer > a:not(.brand) { color: var(--paper); text-decoration-color: rgba(247,147,30,.7); text-underline-offset: 4px; }
.copyright { text-align: right; }

.game-dialog {
  width: min(960px, calc(100vw - 40px));
  max-height: min(680px, calc(100svh - 40px));
  padding: 0;
  border: 0;
  background: var(--paper-bright);
  color: var(--ink);
  overflow: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}
.game-dialog[open] { display: grid; grid-template-columns: .82fr 1.18fr; animation: dialog-in .28s both; }
.game-dialog::backdrop { background: rgba(4,4,3,.82); backdrop-filter: blur(8px); animation: fade-in .2s both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.dialog-close { position: absolute; z-index: 10; top: 14px; right: 16px; width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 50%; background: var(--ink); color: white; cursor: pointer; font-size: 26px; line-height: 1; }
.dialog-close:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.dialog-art { min-height: 580px; display: grid; place-items: center; padding: 50px; overflow: hidden; background: var(--dialog-bg); color: var(--dialog-fg); }
.dialog-art .cover-motif { transform: scale(1.45); }
.dialog-content { padding: 68px 64px 54px; }
.dialog-kicker { display: flex; gap: 8px; margin-bottom: 24px; }
.dialog-kicker span, .dialog-status { padding: 7px 9px; background: #e8e3d9; border-radius: 99px; color: #5c574f; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.dialog-content h2 { margin-bottom: 20px; font-family: var(--font-display); font-size: clamp(34px, 4vw, 54px); line-height: .98; letter-spacing: -.06em; text-transform: uppercase; }
.dialog-summary { color: #59544d; font-size: 16px; line-height: 1.65; }
.dialog-detail { margin-top: 32px; padding: 24px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.dialog-label { margin-bottom: 8px; color: #a64f00; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dialog-detail p:last-child { margin: 0; font-size: 13px; }
.dialog-actions { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: .98fr 1.02fr; gap: 10px; }
  .hero-showcase { transform: scale(.88); transform-origin: center; }
  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-header { height: 72px; padding-inline: 22px; }
  .menu-toggle { position: relative; z-index: 102; width: 42px; height: 42px; display: block; border: 0; background: transparent; color: white; cursor: pointer; }
  .menu-toggle span { position: absolute; left: 9px; width: 24px; height: 2px; background: currentColor; transition: transform .25s ease, top .25s ease; }
  .menu-toggle span:first-child { top: 16px; }.menu-toggle span:last-child { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 101; padding: 120px 28px 40px; flex-direction: column; align-items: flex-start; gap: 26px; background: rgba(9,9,8,.98); opacity: 0; visibility: hidden; transform: translateY(-16px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: var(--font-display); font-size: 30px; letter-spacing: -.04em; }
  .main-nav .nav-cta { margin-top: 12px; font-family: var(--font-body); font-size: 13px; }
  .hero { height: auto; min-height: 0; padding: 132px 22px 78px; grid-template-columns: 1fr; }
  .hero-copy { z-index: 3; }
  .hero-showcase { width: 630px; height: 545px; margin: 4px auto -36px; transform: scale(.88); transform-origin: left top; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .games-section { padding: 88px 22px; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .studio-section { padding: 88px 22px 0; }
  .studio-main { grid-template-columns: 1fr; gap: 22px; padding-bottom: 64px; }
  .studio-main .eyebrow, .studio-main .button { grid-column: 1; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article + article { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .principles article:last-child { border-bottom: 0; }
  .principles h3 { margin-top: 36px; }
  .site-footer { min-height: 230px; grid-template-columns: 1fr auto; padding: 30px 0; }
  .site-footer > p:nth-child(2) { text-align: right; }
  .game-dialog[open] { grid-template-columns: 1fr; }
  .dialog-art { min-height: 280px; }
  .dialog-content { padding: 38px 34px 42px; }
}

@media (max-width: 590px) {
  .hero { padding-top: 122px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div:last-child { display: none; }
  .hero-showcase { width: 500px; height: 470px; margin-top: 18px; margin-bottom: -52px; transform: scale(.69); }
  .showcase-hint { display: none; }
  .section-heading h2, .studio-main h2 { font-size: 34px; }
  .games-grid { grid-template-columns: 1fr; gap: 24px; }
  .game-cover { aspect-ratio: 4 / 2.75; }
  .game-card:nth-child(n+7) .game-cover { aspect-ratio: 4 / 2.75; }
  .site-footer { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .site-footer > p:nth-child(2), .copyright { text-align: left; }
  .game-dialog { width: 100vw; max-height: 100svh; margin: 0; }
  .dialog-art { min-height: 220px; }
  .dialog-art .cover-motif { transform: scale(1.05); }
  .dialog-content { padding: 32px 24px 40px; }
  .dialog-content h2 { font-size: 36px; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

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