:root {
  --cream: #fff8ee;
  --cream-dark: #f3e6d6;
  --text: #24363a;
  --text-soft: #587074;
  --teal: #58d2cb;
  --teal-dark: #2d8581;
  --teal-deep: #175f60;
  --teal-light: #dcf8f2;
  --orange: #ffad4a;
  --orange-hover: #ff982f;
  --yellow: #ffd45e;
  --accent-gradient: linear-gradient(120deg, var(--yellow), var(--orange));
  --accent-gradient-hover: linear-gradient(120deg, #ffde76, var(--orange-hover));
  --petrol: #153f4b;
  --astral-bg: #11172d;
  --astral-bg-soft: #192342;
  --astral-text: #f3f5ff;
  --white: #fff;
  --shadow-soft: 0 20px 60px rgba(36, 54, 58, 0.13);
  --shadow-button: 0 10px 24px rgba(52, 88, 84, 0.18);
  --radius-large: 28px;
  --radius-medium: 18px;
  --container: 1220px;
  --header-height: 84px;
  --font-heading: "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", "Nunito", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

p {
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

main p strong {
  color: inherit;
  font-weight: 800;
}

::selection {
  background: var(--teal);
  color: var(--astral-bg);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 144px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: clamp(0.9rem, 0.82rem + 0.22vw, 1.03rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-copy {
  max-width: 630px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.media-frame,
.video-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-large);
  background: var(--cream-dark);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-frame:hover img:not(.parallax-media) {
  transform: scale(1.015);
}

.parallax-media {
  --parallax-scale: 1.035;
  will-change: transform;
}

.media-frame:hover .parallax-media {
  --parallax-scale: 1.05;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #132322;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header and navigation */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 230ms ease, background-color 230ms ease, box-shadow 230ms ease, border-color 230ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 29, 31, 0.42), transparent);
  content: "";
  opacity: 1;
  transition: opacity 230ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(54, 127, 123, 0.12);
  background: rgba(255, 249, 241, 0.88);
  box-shadow: 0 8px 26px rgba(36, 54, 58, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 36px), 1460px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.nav-brand {
  display: grid;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  place-items: center;
  transition: width 230ms ease, height 230ms ease, transform 200ms ease;
}

.nav-brand img {
  width: 100%;
  filter: drop-shadow(0 4px 10px rgba(10, 29, 31, 0.32));
}

.nav-brand:hover {
  transform: translateY(-1px);
}

.is-scrolled .nav-brand {
  width: 60px;
  height: 60px;
}

.primary-nav {
  min-width: 0;
  margin-left: auto;
}

.nav-links {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: clamp(12px, 1.3vw, 24px);
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.105em;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(17, 23, 45, 0.5);
  text-transform: uppercase;
  transition: color 190ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform-origin: center;
  transition: transform 190ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff3ce;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.is-scrolled .nav-links a {
  color: var(--text);
  text-shadow: none;
}

.is-scrolled .nav-links a:hover,
.is-scrolled .nav-links a.is-active {
  color: var(--teal-dark);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  background: rgba(12, 37, 43, 0.16);
  backdrop-filter: blur(10px);
}

.language-switcher a {
  padding: 2px 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-active {
  color: #ffd268;
}

.language-switcher span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
}

.is-scrolled .language-switcher,
.press-page .language-switcher {
  border-color: rgba(54, 127, 123, 0.2);
  background: rgba(54, 127, 123, 0.06);
}

.is-scrolled .language-switcher a,
.press-page .language-switcher a {
  color: rgba(35, 55, 60, 0.5);
}

.is-scrolled .language-switcher a:hover,
.is-scrolled .language-switcher a:focus-visible,
.is-scrolled .language-switcher a.is-active,
.press-page .language-switcher a:hover,
.press-page .language-switcher a:focus-visible,
.press-page .language-switcher a.is-active {
  color: var(--teal-dark);
}

.is-scrolled .language-switcher span,
.press-page .language-switcher span {
  color: rgba(35, 55, 60, 0.28);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(17, 23, 45, 0.58);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-7px);
}

.menu-toggle span:last-child {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.is-scrolled .menu-toggle {
  background: var(--teal-dark);
}

/* Buttons */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: var(--shadow-button);
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(36, 54, 58, 0.23);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.steam-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--accent-gradient);
  color: #2d302e;
}

.button-primary:hover {
  background: var(--accent-gradient-hover);
}

.button-secondary {
  border-color: rgba(54, 127, 123, 0.2);
  background: var(--teal-light);
  color: var(--teal-deep);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(17, 23, 45, 0.17);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(17, 23, 45, 0.3);
}

.button-text {
  padding-inline: 12px;
  background: transparent;
  color: var(--teal-dark);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav-steam {
  flex: 0 0 auto;
  background: var(--accent-gradient);
  color: #263235;
}

.nav-steam:hover {
  background: var(--accent-gradient-hover);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  height: max(90svh, 720px);
  min-height: 720px;
  overflow: hidden;
  align-items: end;
  background: #183e42;
  isolation: isolate;
}

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

.hero-art {
  z-index: -3;
  object-fit: cover;
  object-position: center 48%;
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 38, 40, 0.54) 0%, rgba(12, 38, 40, 0.18) 38%, transparent 63%),
    linear-gradient(0deg, rgba(11, 29, 31, 0.72) 0%, transparent 44%),
    linear-gradient(180deg, rgba(17, 23, 45, 0.18), transparent 28%);
}

.hero-logo {
  position: absolute;
  top: clamp(126px, 18vh, 190px);
  left: clamp(36px, 6vw, 120px);
  z-index: 1;
  width: clamp(350px, 32vw, 570px);
  filter: drop-shadow(0 12px 22px rgba(17, 23, 45, 0.18));
}

.hero-content {
  width: min(570px, calc(100% - 48px));
  margin-right: auto;
  margin-bottom: clamp(88px, 10vh, 132px);
  margin-left: clamp(24px, 6vw, 120px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(17, 23, 45, 0.35);
}

.hero-kicker {
  max-width: 22ch;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.1vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero-description {
  max-width: 48ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.58;
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  width: max-content;
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* World and build */

.world-section {
  background:
    radial-gradient(circle at 96% 5%, rgba(101, 203, 198, 0.16), transparent 30%),
    var(--cream);
}

.split-world {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
}

.world-image {
  transform: rotate(0.45deg);
}

.build-section {
  position: relative;
  display: grid;
  min-height: clamp(720px, 55vw, 860px);
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 112px);
  align-items: center;
  background: #a9e0dc;
  isolation: isolate;
}

.build-scene,
.build-landscape,
.build-atmosphere {
  position: absolute;
  inset: 0;
}

.build-scene {
  z-index: -2;
  overflow: hidden;
}

.build-landscape {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.035);
}

.build-atmosphere {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 56, 58, 0.36) 0%, rgba(22, 66, 66, 0.12) 44%, transparent 68%),
    linear-gradient(0deg, rgba(20, 65, 61, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
}

.build-layout {
  display: flex;
  min-height: clamp(570px, 43vw, 690px);
  align-items: center;
}

.build-panel {
  position: relative;
  z-index: 6;
  width: min(610px, 52%);
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 32px;
  background: rgba(255, 249, 241, 0.88);
  box-shadow: 0 26px 70px rgba(20, 65, 61, 0.22);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.build-panel .section-copy {
  max-width: 530px;
}

.build-panel h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
}

.keyword-list {
  display: grid;
  margin-top: clamp(28px, 4vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.keyword-list span {
  display: flex;
  min-width: 0;
  padding: 12px 14px;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid rgba(54, 127, 123, 0.23);
  color: var(--teal-deep);
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 1.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.keyword-list span:first-child {
  padding-left: 0;
  border-left: 0;
}

.keyword-list i {
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mascot {
  position: absolute;
  height: auto;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 22px 28px rgba(17, 23, 45, 0.2));
}

[data-parallax-layer] {
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) scale(var(--parallax-scale, 1));
  will-change: transform;
}

.mascot-guardian {
  right: 2%;
  bottom: -12%;
  z-index: 2;
  width: clamp(430px, 38vw, 650px);
}

.mascot-fairy {
  top: 11%;
  right: 35%;
  z-index: 4;
  width: clamp(125px, 12vw, 205px);
}

.mascot-gus {
  right: 27%;
  bottom: -8%;
  z-index: 3;
  width: clamp(210px, 17vw, 310px);
}

/* Gameplay and living world */

.gameplay-section {
  overflow: hidden;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 212, 94, 0.23), transparent 23%),
    linear-gradient(180deg, rgba(244, 234, 221, 0.78), transparent 22%),
    var(--cream);
}

.gameplay-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

.gameplay-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.2vw, 3.5rem);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.gameplay-heading > p {
  padding: 0 0 10px 24px;
  border-left: 4px solid var(--yellow);
}

.gameplay-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin-bottom: clamp(48px, 6vw, 78px);
  align-items: center;
}

.gameplay-copy-card {
  position: relative;
  z-index: 2;
  width: calc(100% + 64px);
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(54, 127, 123, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(36, 54, 58, 0.14);
}

.storage-image {
  z-index: 1;
  width: 100%;
  max-width: none;
}

.production-loop {
  position: relative;
  display: grid;
  padding: 24px 28px;
  margin: 0 0 clamp(72px, 8vw, 112px);
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(circle at 12% 30%, rgba(101, 203, 198, 0.34), transparent 26%),
    linear-gradient(115deg, #235f5d, #19353f 72%, #1b2a45);
  box-shadow: 0 20px 54px rgba(27, 53, 63, 0.22);
  list-style: none;
  isolation: isolate;
}

.production-loop::before {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -28%;
  z-index: -1;
  width: 26%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  content: "";
  animation: production-glow 8s ease-in-out infinite;
}

.production-loop li {
  position: relative;
  display: grid;
  min-height: 42px;
  padding-inline: 11px 23px;
  place-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.15vw, 1.05rem);
  font-weight: 700;
  text-align: center;
}

.production-loop li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--orange);
  content: "→";
  font-family: var(--font-body);
  font-weight: 900;
  transform: translateY(-50%);
}

@keyframes production-glow {
  0%, 18% { transform: translateX(0) rotate(16deg); }
  72%, 100% { transform: translateX(620%) rotate(16deg); }
}

.travel-feature {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 116px);
  background:
    radial-gradient(circle at 10% 18%, rgba(101, 203, 198, 0.22), transparent 27%),
    radial-gradient(circle at 92% 82%, rgba(245, 173, 89, 0.16), transparent 24%),
    linear-gradient(135deg, #245f5d, #172a41 76%);
}

.travel-feature::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.feature-media-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 5vw, 74px);
  align-items: center;
}

.travel-feature .section-copy > p {
  color: rgba(255, 255, 255, 0.84);
}

.travel-feature .video-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 74px rgba(6, 17, 28, 0.34);
}

.living-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 173, 74, 0.21), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(88, 210, 203, 0.2), transparent 27%),
    linear-gradient(180deg, #eef8e8 0%, #e4f2df 100%);
}

.living-intro {
  margin-bottom: clamp(42px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.living-intro > .section-copy:last-child {
  padding-left: clamp(28px, 4vw, 52px);
  border-left: 4px solid var(--orange);
  border-image: linear-gradient(180deg, var(--yellow), var(--orange)) 1;
}

.video-frame-wide {
  width: min(100%, 1120px);
  margin-inline: auto;
}

/* Astral */

.astral-section {
  overflow: hidden;
  padding-block: clamp(106px, 12vw, 170px);
  background:
    radial-gradient(circle at 70% 52%, rgba(69, 111, 174, 0.23), transparent 34%),
    linear-gradient(155deg, var(--astral-bg) 0%, var(--astral-bg-soft) 100%);
  color: var(--astral-text);
}

.astral-section::before {
  position: absolute;
  top: -1px;
  right: -5%;
  left: -5%;
  height: 42px;
  border-radius: 0 0 50% 50%;
  background: #e4f2df;
  content: "";
}

.astral-stars {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, #fff 1px, transparent 1.3px),
    radial-gradient(circle, #8eeae2 1px, transparent 1.3px);
  background-position: 0 0, 38px 46px;
  background-size: 92px 92px, 127px 127px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 78%, transparent);
}

.astral-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto clamp(52px, 7vw, 86px);
  text-align: center;
}

.astral-copy h2 {
  max-width: 16ch;
  margin-inline: auto;
  color: var(--astral-text);
}

.astral-copy .eyebrow {
  color: var(--teal);
}

.astral-copy p:not(.eyebrow) {
  color: rgba(243, 245, 255, 0.8);
  font-size: clamp(1.04rem, 1.3vw, 1.2rem);
}

.astral-image {
  width: min(100%, 1120px);
  margin-inline: auto;
  border: 1px solid rgba(101, 203, 198, 0.22);
  background: var(--astral-bg-soft);
  box-shadow: 0 32px 100px rgba(68, 157, 184, 0.2), 0 24px 72px rgba(0, 0, 0, 0.4);
}

/* Story */

.story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 86%, rgba(101, 203, 198, 0.16), transparent 24%),
    var(--cream);
  isolation: isolate;
}

.story-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1260px);
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
}

.story-mascot {
  position: absolute;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 34px rgba(36, 54, 58, 0.2));
}

.story-anna {
  left: 0;
  bottom: 4px;
  z-index: 3;
  width: clamp(250px, 15.8vw, 305px);
}

.story-moka {
  right: -190px;
  bottom: -260px;
  z-index: 1;
  width: clamp(430px, 28vw, 540px);
}

.chapter-note {
  padding: 22px 0 0 24px;
  margin-top: 32px;
  border-left: 3px solid var(--orange);
}

.chapter-note h3 {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.chapter-note p {
  color: var(--text-soft);
  font-size: 0.98rem !important;
}

/* Roadmap */

.roadmap-section {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  isolation: isolate;
}

.roadmap-container {
  position: relative;
  z-index: 2;
  max-width: 1060px;
}

.roadmap-gus {
  position: absolute;
  top: 36%;
  right: max(8px, calc((100vw - 1500px) / 2));
  bottom: auto;
  z-index: 1;
  width: clamp(260px, 18vw, 340px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 22px 30px rgba(83, 72, 34, 0.18));
}

.timeline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 183px;
  width: 1px;
  background: linear-gradient(var(--teal-dark), rgba(54, 127, 123, 0.15));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  padding-block: 12px 62px;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 68px;
}

.timeline-marker {
  position: absolute;
  top: 19px;
  left: 175px;
  width: 17px;
  height: 17px;
  border: 4px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--teal-dark);
  box-shadow: 0 0 0 1px var(--teal-dark);
}

.timeline-date {
  padding-top: 2px;
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  text-align: right;
}

.timeline-content {
  max-width: 670px;
}

.timeline-content h3 {
  margin-bottom: 14px;
}

.timeline-content p {
  color: var(--text-soft);
}

.timeline-detail {
  font-size: 0.9rem;
  font-style: italic;
}

.roadmap-note {
  display: flex;
  padding: 28px 34px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.6);
}

.roadmap-note p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.text-link {
  flex: 0 0 auto;
  color: var(--teal-deep);
  font-weight: 900;
  text-underline-offset: 5px;
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 9vw, 124px);
  background:
    radial-gradient(circle at 12% 22%, rgba(88, 210, 203, 0.34), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255, 173, 74, 0.2), transparent 26%),
    linear-gradient(135deg, #225e60, #17283f);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  top: -45%;
  right: -8%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(430px, 1.2fr) minmax(300px, 0.86fr);
  gap: clamp(30px, 3.3vw, 52px);
  align-items: center;
}

.final-cta-inner > img {
  width: min(100%, 480px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.18));
}

.final-cta h2 {
  max-width: 18ch;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.3rem, 3.2vw, 3.45rem);
}

.final-cta p {
  max-width: 56ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.newsletter {
  display: flex;
  min-width: 0;
  min-height: 280px;
  padding-left: clamp(28px, 3vw, 46px);
  border-left: 1px solid rgba(255, 198, 73, 0.58);
  justify-content: center;
  flex-direction: column;
}

.newsletter h3 {
  margin-bottom: 8px;
  color: #ffd268;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.newsletter .newsletter-intro p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.newsletter-fields input {
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.newsletter-fields input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-fields input:focus {
  border-color: #ffd268;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(255, 198, 73, 0.18);
}

.newsletter-fields .button {
  width: 100%;
  min-height: 50px;
  padding-inline: 24px;
  white-space: nowrap;
}

.newsletter-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-meta {
  display: flex;
  margin-top: 12px;
  gap: 10px;
  align-items: flex-start;
  flex-direction: column;
}

.newsletter-meta small {
  max-width: 47ch;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.45;
}

.mailchimp-badge {
  flex: 0 0 auto;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.mailchimp-badge:hover,
.mailchimp-badge:focus-visible {
  opacity: 1;
}

.mailchimp-badge img {
  display: block;
  width: 116px;
  height: auto;
  filter: grayscale(1) invert(1);
}

/* About, press and contact */

.about-section {
  overflow: hidden;
  padding-block: clamp(76px, 7vw, 104px);
  background:
    radial-gradient(circle at 8% 18%, rgba(101, 203, 198, 0.18), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(245, 173, 89, 0.14), transparent 23%),
    var(--cream);
}

.about-panel {
  max-width: 1120px;
  padding: 0 clamp(24px, 4vw, 52px) clamp(28px, 4vw, 48px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 22%, rgba(101, 203, 198, 0.26), transparent 26%),
    linear-gradient(135deg, #285e5d, #1b3047 82%);
  box-shadow: inset 0 3px 0 rgba(255, 212, 94, 0.78), 0 28px 78px rgba(36, 54, 58, 0.18);
}

.about-intro {
  display: grid;
  max-width: none;
  padding: clamp(42px, 6vw, 68px) clamp(4px, 2vw, 20px) clamp(66px, 7vw, 84px);
  margin-inline: auto;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.about-intro > img {
  width: 270px;
  filter: drop-shadow(0 18px 28px rgba(5, 22, 31, 0.22));
}

.about-intro h2 {
  color: var(--white);
}

.about-intro .eyebrow {
  color: #a9efea;
}

.about-intro .section-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.team-list {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: none;
  margin: -34px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.team-member {
  display: grid;
  width: auto;
  min-width: 0;
  padding: 18px;
  margin: 0;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(54, 127, 123, 0.12);
  border-radius: 24px;
  background: rgba(255, 249, 241, 0.97);
  box-shadow: 0 18px 42px rgba(7, 25, 33, 0.18);
  text-align: left;
}

.team-member img {
  width: 104px;
  height: 118px;
  margin: 0;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(36, 54, 58, 0.14);
}

.team-member figcaption {
  display: grid;
  gap: 3px;
}

.team-member strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.42rem;
}

.team-member span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.press-section {
  padding-block: clamp(76px, 8vw, 110px);
  background:
    radial-gradient(circle at 8% 28%, rgba(255, 212, 94, 0.4), transparent 23%),
    radial-gradient(circle at 92% 78%, rgba(88, 210, 203, 0.36), transparent 25%),
    linear-gradient(135deg, #fff3cf, var(--teal-light));
}

.press-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 52px;
}

.press-inner .section-copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  min-height: clamp(760px, 70vw, 940px);
  overflow: hidden;
  padding-block: clamp(104px, 10vw, 150px);
  align-items: center;
  background: #092633;
  color: var(--white);
  isolation: isolate;
}

.contact-visuals,
.contact-forest,
.contact-shade,
.contact-atmosphere {
  position: absolute;
  inset: 0;
}

.contact-visuals {
  z-index: -2;
  overflow: hidden;
}

.contact-forest {
  --parallax-scale: 1.13;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 22, 31, 0.86) 0%, rgba(6, 29, 38, 0.64) 39%, rgba(7, 31, 39, 0.18) 66%, rgba(6, 23, 31, 0.06) 100%),
    linear-gradient(0deg, rgba(5, 22, 29, 0.44), transparent 42%);
}

.contact-faune-layer {
  position: absolute;
  right: clamp(0px, 3vw, 62px);
  bottom: clamp(-130px, -7vw, -64px);
  z-index: 2;
  width: clamp(430px, 42vw, 660px);
  pointer-events: none;
}

.contact-faune {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.34));
  transform-origin: 50% 62%;
  animation: contact-faune-float 9s ease-in-out infinite;
}

@keyframes contact-faune-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.12deg);
  }

  50% {
    transform: translate3d(0, -9px, 0) rotate(0.12deg);
  }
}

.contact-atmosphere {
  --parallax-scale: 1.1;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
}

.contact-panels {
  display: grid;
  width: min(890px, 75%);
  margin-left: clamp(-70px, -4vw, -40px);
  grid-template-columns: minmax(350px, 0.9fr) minmax(410px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  height: 100%;
  padding: clamp(26px, 2.8vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(88, 210, 203, 0.16), transparent 28%),
    rgba(7, 31, 41, 0.72);
  box-shadow: 0 30px 80px rgba(2, 14, 20, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
}

.contact-card h2 {
  color: var(--white);
}

.contact-info-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 4vw, 3.8rem);
}

.contact-form-card h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
}

.contact-form-card > .eyebrow {
  margin-bottom: 10px;
}

.contact-card .eyebrow {
  color: var(--yellow);
}

.contact-card .section-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span:first-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 11px 13px;
  resize: vertical;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form select option {
  background: var(--cream);
  color: var(--text);
}

.contact-form select option:disabled {
  color: var(--text-soft);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 212, 94, 0.13);
}

.contact-form .form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.contact-form .form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.contact-form .form-consent span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
}

.contact-form .button {
  flex: 0 0 auto;
  margin: 0;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.form-status.is-success {
  color: #a9efc8;
}

.form-status.is-error {
  color: #ffd1bd;
}

.social-links {
  display: grid;
  padding: 0;
  margin: clamp(26px, 3vw, 36px) 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.contact-info-card .social-links {
  margin-top: auto;
  padding-top: 28px;
}

.contact-info-card .social-links a {
  padding-inline: 12px;
  font-size: 0.9rem;
}

.social-links a {
  display: flex;
  min-height: 48px;
  padding-inline: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 94, 0.68);
  background: rgba(255, 212, 94, 0.12);
  color: var(--white);
}

.social-links i {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
}

/* Footer */

.site-footer {
  padding-block: 46px;
  background: #102f39;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand img {
  width: 86px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.footer-brand p span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-nav a {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 44px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--teal);
}

/* Scroll reveal progressive enhancement */

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Press kit page */

.press-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, rgba(101, 203, 198, 0.18), transparent 24%),
    var(--cream);
}

.press-page .site-header {
  background: rgba(255, 249, 241, 0.9);
  box-shadow: 0 8px 26px rgba(36, 54, 58, 0.08);
  backdrop-filter: blur(14px);
}

.press-page .site-header::before {
  display: none;
}

.press-page .nav-shell {
  gap: 24px;
}

.press-back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--teal-deep);
  font-weight: 900;
  text-decoration: none;
}

/* French copy needs a slightly tighter display scale on wide layouts. */
@media (min-width: 901px) {
  .lang-fr h2 {
    font-size: clamp(2.5rem, 4vw, 4.25rem);
  }

  .lang-fr .hero-kicker {
    max-width: 24ch;
    font-size: clamp(1.9rem, 2.55vw, 2.8rem);
    line-height: 1.06;
  }

  .lang-fr .build-panel h2 {
    font-size: clamp(2.7rem, 3.5vw, 3.5rem);
    line-height: 1.07;
  }

  .lang-fr .gameplay-heading h2 {
    font-size: clamp(2.25rem, 2.7vw, 3rem);
    line-height: 1.08;
    white-space: normal;
  }

  .lang-fr .final-cta h2 {
    font-size: clamp(2.15rem, 2.75vw, 3rem);
  }
}

.press-page .press-back-link {
  margin-left: auto;
}

.press-masthead {
  padding: calc(var(--header-height) + clamp(48px, 7vw, 92px)) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 212, 94, 0.3), transparent 26%),
    linear-gradient(150deg, #effbf6 0%, var(--cream) 58%, #fff1dc 100%);
}

.press-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.press-masthead-copy h1 {
  max-width: 17ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.35vw, 4.9rem);
}

.press-lead {
  max-width: 58ch;
  color: var(--text-soft);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.press-masthead-copy .button-row {
  margin-top: 30px;
}

.press-updated {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.press-keyart {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 133, 129, 0.16);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(25, 69, 73, 0.2);
}

.press-keyart img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.press-keyart figcaption {
  padding: 12px 18px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.press-jump-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 80;
  border-block: 1px solid rgba(45, 133, 129, 0.14);
  background: rgba(255, 248, 238, 0.93);
  backdrop-filter: blur(15px);
}

.press-jump-nav .container {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
}

.press-jump-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.press-jump-nav a:hover {
  color: var(--orange-hover);
}

.press-section-block {
  padding-block: clamp(78px, 9vw, 126px);
}

.press-section-tinted {
  background:
    radial-gradient(circle at 15% 24%, rgba(255, 212, 94, 0.18), transparent 25%),
    #edf8f4;
}

.press-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.press-facts {
  position: sticky;
  top: calc(var(--header-height) + 88px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(45, 133, 129, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.press-facts h2,
.press-story h2,
.press-section-heading h2,
.press-technical-grid h2,
.press-studio-grid h2,
.press-usage-grid h2,
.press-contact-card h2,
.press-video-card h2 {
  max-width: 22ch;
  font-size: clamp(2.1rem, 3.2vw, 3.45rem);
}

.press-facts h2 {
  font-size: clamp(2rem, 2.8vw, 2.85rem);
}

.press-page.lang-fr .press-facts h2,
.press-page.lang-fr .press-story h2,
.press-page.lang-fr .press-section-heading h2,
.press-page.lang-fr .press-technical-grid h2,
.press-page.lang-fr .press-studio-grid h2,
.press-page.lang-fr .press-usage-grid h2,
.press-page.lang-fr .press-contact-card h2,
.press-page.lang-fr .press-video-card h2 {
  max-width: 25ch;
  font-size: clamp(1.95rem, 2.75vw, 3rem);
}

.facts-list {
  margin: 0 0 28px;
}

.facts-list div {
  padding-block: 14px;
  border-bottom: 1px solid rgba(45, 133, 129, 0.14);
}

.facts-list dt,
.technical-list dt {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-list dd,
.technical-list dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 750;
  line-height: 1.5;
}

.press-text-link,
.press-asset-card a,
.press-shot figcaption a {
  color: var(--teal-deep);
  font-weight: 900;
  text-underline-offset: 4px;
}

.press-story {
  max-width: 780px;
}

.press-story h3 {
  margin-top: 42px;
  color: var(--teal-deep);
}

.press-story > p:not(.eyebrow),
.press-section-heading > p,
.press-technical-grid p,
.press-studio-grid article > p,
.press-usage-grid > div > p,
.press-video-card p,
.press-contact-card p {
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
}

.press-feature-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.press-feature-grid div {
  padding: 22px;
  border: 1px solid rgba(45, 133, 129, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.press-feature-grid strong,
.press-feature-grid span {
  display: block;
}

.press-feature-grid strong {
  margin-bottom: 5px;
  color: var(--teal-deep);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.press-feature-grid span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.press-roadmap-note {
  padding: 26px 28px;
  margin-top: 36px;
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: #fff4df;
}

.press-roadmap-note > strong {
  color: var(--teal-deep);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.press-roadmap-note p {
  margin-top: 8px;
  color: var(--text-soft);
}

.press-technical-grid,
.press-usage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

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

.technical-list div {
  padding: 20px 22px;
  border: 1px solid rgba(45, 133, 129, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.press-section-heading {
  max-width: 830px;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.press-section-heading .button {
  margin-top: 18px;
}

.press-asset-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.press-asset-card {
  overflow: hidden;
  border: 1px solid rgba(45, 133, 129, 0.14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.press-asset-card > img,
.press-logo-preview {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.press-asset-card > div:not(.press-logo-preview) {
  padding: 26px 28px 30px;
}

.press-asset-card h3 {
  margin-bottom: 8px;
}

.press-asset-card p {
  color: var(--text-soft);
}

.press-asset-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.press-logo-preview {
  display: grid;
  padding: 54px;
  place-items: center;
  background: linear-gradient(140deg, #183f4a, #10172c);
}

.press-logo-preview img {
  width: min(100%, 390px);
}

.press-gallery-heading {
  display: flex;
  margin: clamp(72px, 9vw, 110px) 0 32px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.press-gallery-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.press-gallery-heading p {
  margin: 0;
  color: var(--text-soft);
}

.press-credit-line {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff4da;
  font-size: 0.85rem;
}

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

.press-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 133, 129, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(36, 54, 58, 0.09);
}

.press-shot > a {
  display: block;
  overflow: hidden;
}

.press-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.press-shot:hover img {
  transform: scale(1.025);
}

.press-shot figcaption {
  display: grid;
  min-height: 166px;
  padding: 20px 22px;
  grid-template-rows: auto 1fr auto;
  gap: 5px;
}

.press-shot figcaption strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.press-shot figcaption span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.press-shot figcaption a {
  margin-top: 10px;
  font-size: 0.78rem;
}

.press-video-section {
  background: linear-gradient(130deg, var(--petrol), #17253b);
  color: var(--white);
}

.press-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.press-video-card h2,
.press-contact-card h2,
.press-video-card .eyebrow,
.press-contact-card .eyebrow {
  color: var(--white);
}

.press-video-card p,
.press-contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.press-video-card .button-row {
  justify-content: flex-end;
}

.press-video-card .button-secondary,
.press-contact-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.press-studio-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.press-studio-logo {
  display: grid;
  min-height: 360px;
  padding: 46px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, #dff8f1, #fff1d6);
}

.press-studio-logo img {
  width: min(100%, 310px);
}

.press-team-roles {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.press-team-roles div {
  display: grid;
  padding: 12px 16px 12px 12px;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.7);
}

.press-team-roles img {
  width: 68px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

.press-team-roles p {
  margin: 0;
}

.press-team-roles strong,
.press-team-roles span,
.press-team-roles a {
  display: block;
}

.press-team-roles span,
.press-small-note {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.press-team-roles a {
  margin-top: 6px;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-underline-offset: 3px;
}

.press-small-note {
  margin-top: 22px;
  font-style: italic;
}

.press-guidelines {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(45, 133, 129, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.press-guidelines h3:not(:first-child) {
  margin-top: 34px;
}

.press-guidelines li {
  margin-bottom: 10px;
  color: var(--text-soft);
}

.press-guidelines > p {
  font-size: 0.92rem;
}

.press-contact-section {
  padding-block: clamp(54px, 7vw, 90px);
  background: var(--petrol);
}

.press-contact-card {
  display: grid;
  padding: clamp(36px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(48, 132, 127, 0.42), rgba(17, 23, 45, 0.48));
}

.press-contact-links {
  display: grid;
  gap: 12px;
}

.press-contact-links .button {
  width: 100%;
  overflow-wrap: anywhere;
}

/* Responsive layout */

@media (min-width: 1161px) and (max-width: 1640px) {
  .story-anna {
    display: block;
    left: -48px;
    bottom: 4px;
    width: clamp(215px, 16vw, 250px);
  }

  .story-moka {
    display: block;
    right: -180px;
    bottom: -238px;
    width: clamp(390px, 30vw, 470px);
  }
}

@media (min-width: 701px) and (max-width: 1160px) {
  .story-mascot {
    display: none;
  }
}

@media (max-width: 1240px) {
  .nav-shell {
    width: min(calc(100% - 28px), 1460px);
  }

  .nav-brand {
    width: 64px;
    height: 64px;
  }

  .nav-steam span {
    max-width: 92px;
  }
}

@media (min-width: 1161px) and (max-width: 1400px) {
  .contact-panels {
    width: min(820px, 72%);
    margin-left: 0;
    grid-template-columns: minmax(330px, 0.9fr) minmax(400px, 1.1fr);
  }
}

@media (max-width: 1160px) {
  :root {
    --header-height: 76px;
  }

  .contact-panels {
    width: min(760px, 100%);
    margin-left: 0;
    grid-template-columns: minmax(300px, 0.82fr) minmax(390px, 1.18fr);
  }

  .gameplay-heading h2 {
    white-space: normal;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .primary-nav {
    order: 4;
    margin: 0;
  }

  .js .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    width: min(390px, 90vw);
    height: 100dvh;
    padding: 106px 34px 42px;
    transform: translateX(105%);
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    background: rgba(255, 249, 241, 0.98);
    box-shadow: -18px 0 50px rgba(36, 54, 58, 0.17);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .nav-links.is-open {
    transform: translateX(0);
  }

  .js .nav-links a,
  .js .is-scrolled .nav-links a {
    width: 100%;
    min-height: 54px;
    border-bottom: 1px solid rgba(54, 127, 123, 0.13);
    color: var(--text);
    font-size: 0.88rem;
    text-shadow: none;
  }

  .js .nav-links a::after {
    right: auto;
    bottom: 10px;
    width: 30px;
  }

  .nav-shell {
    gap: 14px;
  }

  .nav-brand {
    margin-right: auto;
  }

  .nav-steam {
    margin-left: 0;
  }

  .split-layout,
  .split-world,
  .gameplay-intro,
  .feature-media-grid,
  .living-intro,
  .story-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-layout {
    gap: 44px;
  }

  .section-copy {
    max-width: 760px;
  }

  .split-world .section-copy,
  .gameplay-intro .section-copy {
    max-width: 820px;
  }

  .world-image,
  .storage-image {
    width: 100%;
    max-width: none;
  }

  .gameplay-intro {
    margin-bottom: 58px;
  }

  .gameplay-intro .storage-image {
    order: 1;
  }

  .gameplay-copy-card {
    order: 2;
    width: calc(100% - 48px);
    max-width: 820px;
    margin: -72px auto 0;
  }

  .feature-media-grid .section-copy {
    max-width: 820px;
  }

  .living-intro {
    gap: 16px;
  }

  .story-image {
    order: 2;
  }

  .story-layout .section-copy {
    order: 1;
  }

  .story-moka {
    right: 8px;
    bottom: -24px;
    width: 160px;
  }

  .roadmap-gus {
    right: 10px;
    width: 190px;
  }

  .final-cta-inner {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
  }

  .newsletter {
    display: grid;
    min-height: 0;
    padding: 28px 0 0;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 198, 73, 0.48);
    border-left: 0;
    grid-column: 1 / -1;
    grid-template-columns: minmax(180px, 0.68fr) minmax(320px, 1.32fr);
    gap: clamp(22px, 4vw, 38px);
    align-items: start;
  }

  .newsletter-fields {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .newsletter-fields .button {
    width: auto;
  }

  .newsletter-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .press-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  html:not(.js) .site-header {
    position: relative;
    height: auto;
    border-color: rgba(54, 127, 123, 0.12);
    background: var(--cream);
  }

  html:not(.js) .site-header::before {
    display: none;
  }

  html:not(.js) .nav-shell {
    min-height: 76px;
    padding-block: 10px 14px;
    flex-wrap: wrap;
  }

  html:not(.js) .primary-nav {
    width: 100%;
  }

  html:not(.js) .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  html:not(.js) .nav-links a {
    color: var(--text);
    text-shadow: none;
  }

  html:not(.js) .menu-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero {
    height: max(88svh, 700px);
  }

  .hero-logo {
    top: 132px;
    width: clamp(300px, 47vw, 420px);
  }

  .hero-content {
    margin-bottom: 94px;
  }

  .build-section {
    min-height: 0;
    padding: 460px 0 82px;
    background: var(--teal-light);
  }

  .build-scene {
    bottom: auto;
    height: 540px;
  }

  .build-atmosphere {
    background:
      linear-gradient(0deg, var(--teal-light) 0%, rgba(221, 247, 244, 0.92) 6%, transparent 32%),
      linear-gradient(90deg, rgba(19, 56, 58, 0.12), transparent 42%);
  }

  .build-layout {
    min-height: 0;
  }

  .build-panel {
    width: 100%;
    background: rgba(255, 249, 241, 0.95);
  }

  .mascot-guardian {
    right: 1%;
    bottom: -10%;
    width: min(47vw, 390px);
  }

  .mascot-fairy {
    top: 12%;
    right: 44%;
    width: min(17vw, 150px);
  }

  .mascot-gus {
    right: 34%;
    bottom: -6%;
    width: min(23vw, 195px);
  }

  .keyword-list {
    max-width: 620px;
  }

  .gameplay-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .gameplay-heading > p {
    max-width: 620px;
    padding: 0 0 0 20px;
  }

  .roadmap-gus {
    top: auto;
    right: 0;
    bottom: -16px;
    width: 138px;
  }

  .production-loop {
    padding: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 0;
  }

  .production-loop li:nth-child(4)::after {
    content: "";
  }

  .production-loop li {
    font-size: 0.94rem;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .final-cta-inner > img {
    width: 360px;
  }

  .about-intro {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 34px;
  }

  .about-intro > img {
    width: 200px;
  }

  .contact-section {
    min-height: 980px;
    padding: 450px 0 86px;
    align-items: end;
  }

  .contact-forest {
    object-position: 64% center;
  }

  .contact-shade {
    background:
      linear-gradient(0deg, rgba(5, 24, 32, 0.92) 0%, rgba(5, 25, 34, 0.78) 49%, rgba(6, 26, 34, 0.12) 78%),
      linear-gradient(90deg, rgba(5, 23, 31, 0.22), transparent 70%);
  }

  .contact-faune-layer {
    top: 18px;
    right: calc(50% - 220px);
    bottom: auto;
    width: 440px;
  }

  .contact-panels {
    width: min(100%, 780px);
    margin-left: 0;
    grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.18fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .social-links {
    max-width: 620px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 70px;
    --radius-large: 20px;
  }

  body {
    font-size: 0.97rem;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 80px;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .nav-shell {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .nav-brand,
  .is-scrolled .nav-brand {
    width: 54px;
    height: 54px;
  }

  .nav-steam {
    min-height: 43px;
    padding: 10px 13px;
  }

  .nav-steam .steam-icon {
    width: 19px;
  }

  .nav-steam span {
    display: none;
  }

  .hero {
    height: max(100svh, 720px);
    min-height: 720px;
    align-items: end;
  }

  .hero-art {
    top: 0;
    bottom: auto;
    height: 57%;
    object-position: 67% center;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(17, 23, 45, 0.18) 0%, transparent 28%, rgba(20, 56, 59, 0.16) 44%, #183e42 60%, #183e42 100%),
      linear-gradient(90deg, rgba(11, 29, 31, 0.22), transparent 65%);
  }

  .hero-logo {
    top: 49%;
    left: 20px;
    width: min(62vw, 250px);
    transform: translateY(-50%);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px 72px;
    text-shadow: none;
  }

  .hero-kicker {
    max-width: 19ch;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-content .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .build-section {
    padding: 330px 0 74px;
  }

  .build-scene {
    height: 390px;
  }

  .build-landscape {
    object-position: 56% center;
  }

  .build-panel {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .build-panel h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .mascot-guardian {
    right: -8%;
    width: min(55vw, 340px);
  }

  .mascot-fairy {
    top: 12%;
    right: 49%;
    width: min(20vw, 130px);
  }

  .mascot-gus {
    right: 43%;
    bottom: -3%;
    width: min(27vw, 165px);
  }

  .gameplay-copy-card {
    width: calc(100% - 24px);
    padding: 28px 24px;
    margin-top: -38px;
    border-radius: 22px;
  }

  .travel-feature {
    padding-block: 72px;
  }

  .production-loop {
    display: grid;
    padding: 18px 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .production-loop li {
    min-height: 45px;
    padding: 7px 0 17px;
  }

  .production-loop li:not(:last-child)::after,
  .production-loop li:nth-child(4)::after {
    top: auto;
    right: 0;
    bottom: -3px;
    left: 0;
    content: "↓";
    transform: none;
  }

  .astral-section::before {
    height: 26px;
  }

  .story-section {
    padding-bottom: 118px;
  }

  .story-moka {
    display: block;
    right: -32px;
    bottom: -118px;
    width: 230px;
  }

  .story-anna {
    display: none;
  }

  .roadmap-section {
    padding-bottom: 132px;
  }

  .roadmap-gus {
    top: auto;
    right: 8px;
    bottom: -10px;
    width: 108px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    padding: 0 0 56px 38px;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .timeline-marker {
    top: 3px;
    left: 0;
  }

  .timeline-date {
    padding: 0;
    font-size: 1rem;
    text-align: left;
  }

  .roadmap-note {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    flex: 1 1 auto;
  }

  .final-cta-inner > img {
    width: 290px;
  }

  .newsletter {
    padding-top: 28px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .newsletter-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-fields .button {
    width: 100%;
  }

  .newsletter-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-intro {
    grid-template-columns: minmax(0, 1fr);
    padding: 38px 10px 62px;
    gap: 28px;
  }

  .about-intro > img {
    width: 164px;
  }

  .team-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .about-panel {
    padding: 0 16px 18px;
    border-radius: 26px;
  }

  .team-member {
    padding: 14px;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    border-radius: 19px;
  }

  .team-member img {
    width: 88px;
    height: 100px;
    border-radius: 14px;
  }

  .press-inner .button-row,
  .press-inner .button {
    width: 100%;
  }

  .contact-section {
    min-height: 0;
    padding: 326px 0 70px;
  }

  .contact-forest {
    object-position: 69% center;
  }

  .contact-faune-layer {
    top: 10px;
    right: calc(50% - 155px);
    width: 310px;
  }

  .contact-atmosphere {
    opacity: 0.48;
  }

  .contact-card {
    padding: 30px 22px;
    border-radius: 24px;
    background: rgba(7, 31, 41, 0.82);
  }

  .contact-panels {
    margin-left: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form .button {
    width: 100%;
  }

  .social-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .social-links a {
    min-height: 46px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 70px;
  }

  .press-card {
    width: min(calc(100% - 32px), 880px);
    grid-template-columns: minmax(0, 1fr);
  }

  .press-card > img {
    width: 120px;
  }

  .press-card .button-row,
  .press-card .button {
    width: 100%;
  }

  html:not(.js) .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  html:not(.js) .nav-links a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .hero-art {
    object-position: 66% center;
  }

  .hero-logo {
    top: 48.5%;
    width: 230px;
  }

  .hero-content {
    margin-bottom: 54px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .keyword-list span {
    padding-inline: 9px;
    font-size: 1.02rem;
  }

  .keyword-list i {
    font-size: 0.62rem;
  }

  .footer-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .lang-fr .hero-logo {
    top: 42%;
  }

  .lang-fr .hero-kicker {
    max-width: 21ch;
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.08;
  }
}

@media (max-width: 430px) {
  .lang-fr .hero-logo {
    top: 41%;
  }
}

@media (max-width: 1100px) {
  .press-masthead-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-masthead-copy h1 {
    max-width: 18ch;
  }

  .press-keyart {
    max-width: 860px;
  }

  .press-overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-facts {
    position: static;
  }

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

  .press-story {
    max-width: none;
  }

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

@media (max-width: 900px) {
  .press-jump-nav .container {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .press-jump-nav .container::-webkit-scrollbar {
    display: none;
  }

  .press-jump-nav a {
    flex: 0 0 auto;
  }

  .press-technical-grid,
  .press-usage-grid,
  .press-video-card,
  .press-studio-grid,
  .press-contact-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-video-card .button-row {
    justify-content: flex-start;
  }

  .press-studio-logo {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .press-page .nav-shell {
    gap: 10px;
  }

  .press-page .nav-brand img {
    width: 54px;
  }

  .press-back-link {
    margin-right: auto;
    font-size: 0.76rem;
  }

  .press-page .language-switcher {
    min-height: 38px;
    padding: 4px 9px;
  }

  .press-masthead {
    padding-top: calc(var(--header-height) + 38px);
  }

  .press-masthead-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .press-masthead-copy .button-row,
  .press-masthead-copy .button,
  .press-section-heading .button,
  .press-video-card .button-row,
  .press-video-card .button {
    width: 100%;
  }

  .facts-list,
  .technical-list,
  .press-feature-grid,
  .press-asset-cards,
  .press-gallery,
  .press-team-roles {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .press-credit-line {
    flex: auto;
  }

  .press-shot figcaption {
    min-height: 0;
  }

  .press-logo-preview {
    padding: 36px;
  }

  .press-studio-logo {
    padding: 32px;
  }

  .press-guidelines,
  .press-facts {
    padding: 26px 22px;
  }

  .press-contact-card {
    padding: 30px 22px;
  }
}

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

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

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

  .media-frame:hover img,
  .button:hover,
  [data-parallax-layer] {
    transform: none;
  }
}
