@font-face {
  font-family: "Yunogames Display";
  src: url("/assets/Chewy-Regular-95622e2f.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yunogames Text";
  src: url("/assets/IBMPlexSansCondensed-Light-9d4697a3.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yunogames Text";
  src: url("/assets/IBMPlexSansCondensed-Regular-f94cba9f.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yunogames Text";
  src: url("/assets/IBMPlexSansCondensed-SemiBold-659b6073.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f2e9;
  --surface: #fffdf8;
  --surface-2: #eaf4f7;
  --ink: #31101d;/*#241016;*/
  --muted: #6b6b62;
  --line: #d8d0c0;
  --plum: #3b1020;
  --pink: #eaa5b6;
  --pink-soft: #f8dce5;
  --mint: #add4c9;
  --mint-soft: #d8eee8;
  --blue: #0b5d93;
  --blue-soft: #dcebf1;
  --green: #16834f;
  --red: #cf2d2e;
  --yellow: #f3c247;
  --dots-pink: rgba(248, 220, 229, 0.88);
  --dots-mint: rgba(216, 238, 232, 0.9);
  --dots-mask-pink: url("/assets/dots1-6fffdf33.png");
  --dots-mask-mint: url("/assets/dots2-c84fa8d3.png");
  --shadow: 0 22px 58px rgba(36, 16, 22, 0.12);
  --radius: 10px;
  --page-max: 960px;
  --page-gutter: 28px;
  --nav-expanded-height: 166px;
  --nav-compact-height: 48px;
  --nav-top-offset: 28px;
  --anchor-scroll-gap: 18px;
  --anchor-scroll-offset: calc(var(--nav-compact-height) + var(--anchor-scroll-gap));
  --bg-stripe-shift-x: 0px;
  --bg-stripe-width: 420px;
  --bg-stripe-gap: 1024px;
  --bg-stripe-cycle: calc((var(--bg-stripe-width) + var(--bg-stripe-gap)) * 2);
  --bg-stripe-origin: calc((100vw - var(--page-max)) / 2 - var(--bg-stripe-width) - 32px);
  --display-font: "Yunogames Display", "Chewy", "Cooper Black", system-ui, sans-serif;
  --text-font: "Yunogames Text", "IBM Plex Sans Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  color-scheme: light;
  font-family: var(--text-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-scroll-offset);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--text-font);
  font-weight: 400;
  position: relative;
  background:
    linear-gradient(90deg, rgba(173, 212, 201, 0.2) 0 1px, transparent 1px 82px),
    linear-gradient(0deg, rgba(234, 165, 182, 0.16) 0 1px, transparent 1px 82px),
    var(--bg);
}

body::before,
body::after {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  inset: 0;
  background-image: url("/assets/bg-stripes-16413ad8.svg");
  background-position: calc(var(--bg-stripe-origin) + var(--bg-stripe-shift-x)) 0;
  background-repeat: repeat-x;
  background-size: var(--bg-stripe-cycle) 1800px;
  will-change: background-position;
}

body::after {
  display: none;
}

.public-site {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-expanded-height) + var(--nav-top-offset));
}

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

iframe {
  display: block;
  width: 100%;
  border: 0;
}

a {
  color: inherit;
}

.site-header,
.site-shell,
.footer {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: none;
  min-height: var(--nav-expanded-height);
  margin-top: 0;
  padding: 14px max(18px, calc((100vw - var(--page-max)) / 2 + 18px));
  border: 0 solid rgba(216, 208, 192, 0.88);
  border-bottom-width: 1px;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: min-height 260ms ease, padding 260ms ease, transform 260ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.nav-panel {
  display: flex;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  justify-content: end;
  min-width: 0;
}

.menu-toggle {
  display: none;
}

.at-top .site-header {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(var(--nav-top-offset));
}

.nav-stuck .site-header {
  min-height: var(--nav-compact-height);
  padding-block: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 36px rgba(36, 16, 22, 0.12);
  transform: translateY(0);
}

.brand {
  width: 200px;
}

.brand img {
  width: 108px;
  margin: -15px 0;
  transition: width 220ms ease, transform 220ms ease;
}

.at-top .brand img {
  transform: rotate(-2deg) scale(1.72);
  transform-origin: left center;
}

.nav-stuck .brand img {
  width: 96px;
  transform: none;
}

.brand {
  display: flex;
  align-items: center;
  min-height: 96px;
  transition: min-height 260ms ease, transform 220ms ease;
}

.nav-stuck .brand {
  min-height: 48px;
}

.admin-header {
  position: sticky;
  left: auto;
  min-height: 92px;
  padding: 12px max(18px, calc((100vw - var(--page-max)) / 2 + 18px));
}

nav,
.social-row,
.language-switcher {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  min-width: 0;
}

nav {
  justify-content: center;
  overflow: visible;
}

nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 7px;
  color: #5f5c57;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 10px;
  bottom: -6px;
  left: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: translateY(5px) scaleX(0.45) rotate(-1.6deg);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

nav a:nth-child(even)::after {
  background: var(--pink);
  transform: translateY(5px) scaleX(0.45) rotate(1.5deg);
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(234, 165, 182, 0.32), rgba(173, 212, 201, 0.35));
  outline: none;
}

nav a:hover::after,
nav a:focus-visible::after,
nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0) scaleX(1) rotate(-1.6deg);
}

nav a:nth-child(even):hover::after,
nav a:nth-child(even):focus-visible::after,
nav a:nth-child(even)[aria-current="page"]::after {
  transform: translateY(0) scaleX(1) rotate(1.5deg);
}

.social-row {
  justify-content: flex-end;
}

.language-switcher {
  position: relative;
  justify-content: flex-end;
  padding-left: 4px;
}

.social-row .social-link {
  flex: 0 0 auto;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(59, 16, 32, 0.18);
  border-radius: 8px;
  color: var(--plum);
  background: #fff;
  text-decoration: none;
}

.locale-select {
  width: 36px;
  min-width: 36px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(59, 16, 32, 0.18);
  border-radius: 8px;
  color: var(--plum);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 850;
  cursor: pointer;
  appearance: none;
  text-indent: 0;
  text-overflow: clip;
}

.locale-select:hover,
.locale-select:focus-visible {
  border-color: var(--pink);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(234, 165, 182, 0.32), rgba(173, 212, 201, 0.35));
  outline: none;
}

.social-link img {
  width: 18px;
  height: 18px;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--plum);
  outline: none;
}

.social-link:hover img,
.social-link:focus-visible img {
  filter: brightness(0) invert(1);
}

.site-shell {
  padding-block: 24px 54px;
}

.page-hero,
.panel,
.image-panel,
.map-panel,
.sitemap-band,
.footer {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: 540px;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
}

.page-hero::before,
.panel::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.artistic-section::before {
  top: -116px;
  left: -118px;
  width: clamp(260px, 24vw, 380px);
  height: clamp(260px, 24vw, 380px);
  border: 0;
  background: var(--dots-pink);
  opacity: 0.74;
  mask: var(--dots-mask-pink) center / contain no-repeat;
  transform: rotate(-9deg);
  -webkit-mask: var(--dots-mask-pink) center / contain no-repeat;
}

.artistic-section::after {
  position: absolute;
  right: -96px;
  bottom: -110px;
  width: clamp(240px, 22vw, 340px);
  height: clamp(240px, 22vw, 340px);
  border: 0;
  border-radius: 0;
  background: var(--dots-mint);
  box-shadow: none;
  content: "";
  opacity: 0.76;
  mask: var(--dots-mask-mint) center / contain no-repeat;
  transform: rotate(11deg);
  -webkit-mask: var(--dots-mask-mint) center / contain no-repeat;
}

.home-hero {
  background:
    linear-gradient(110deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.62)),
    linear-gradient(16deg, rgba(234, 165, 182, 0.24), transparent 42%),
    linear-gradient(144deg, transparent 45%, rgba(173, 212, 201, 0.32)),
    url("/assets/skilines/store-page-assets/store_page_background-c4e8bd2a.png") center / cover;
}

.home-hero::before {
  top: 18px;
  left: 28px;
  z-index: 1;
  width: 128px;
  height: 36px;
  border: 1px solid rgba(59, 16, 32, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18px 18px, var(--plum) 0 3px, transparent 3.5px),
    radial-gradient(circle at 44px 18px, var(--pink) 0 5px, transparent 5.5px),
    radial-gradient(circle at 72px 18px, var(--mint) 0 5px, transparent 5.5px),
    radial-gradient(circle at 102px 18px, var(--blue) 0 3px, transparent 3.5px),
    rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 28px rgba(36, 16, 22, 0.08);
  transform: rotate(-4deg);
}

.home-hero::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: 132px;
  height: 42px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.58), transparent),
    repeating-linear-gradient(90deg, rgba(234, 165, 182, 0.66) 0 18px, rgba(173, 212, 201, 0.72) 18px 36px);
  box-shadow: 0 16px 32px rgba(36, 16, 22, 0.1);
  content: "";
  transform: rotate(3deg);
}

.home-hero .hero-copy {
  max-width: 360px;
}

.dijon-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(560px, 58vw, 700px);
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(234, 165, 182, 0.18), transparent 28%),
    linear-gradient(115deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.86)),
    linear-gradient(125deg, rgba(173, 212, 201, 0.14), rgba(234, 165, 182, 0.12));
}

.dijon-panel::before {
  left: 48px;
  bottom: 36px;
  top: auto;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.55), transparent),
    repeating-linear-gradient(45deg, rgba(234, 165, 182, 0.72) 0 13px, rgba(173, 212, 201, 0.74) 13px 26px);
  box-shadow: 0 18px 38px rgba(36, 16, 22, 0.1);
  transform: rotate(11deg);
}

.dijon-panel::after {
  position: absolute;
  top: 20px;
  right: 42px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 18px 34px 18px 34px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.56), transparent),
    repeating-linear-gradient(45deg, rgba(173, 212, 201, 0.76) 0 14px, rgba(234, 165, 182, 0.72) 14px 28px);
  box-shadow: 0 18px 42px rgba(36, 16, 22, 0.1);
  content: "";
  transform: rotate(13deg);
}

.dijon-copy,
.dijon-illustration {
  grid-area: 1 / 1;
}

.dijon-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 430px;
  margin: clamp(32px, 5vw, 58px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.76)),
    linear-gradient(135deg, rgba(234, 165, 182, 0.1), rgba(173, 212, 201, 0.08));
  box-shadow: 0 26px 70px rgba(36, 16, 22, 0.12);
  backdrop-filter: blur(10px);
  transform: rotate(-0.5deg);
}

.dijon-copy h2 {
  max-width: 430px;
  margin-bottom: 18px;
}

.dijon-copy .lead {
  max-width: 410px;
  margin-bottom: 18px;
}

.dijon-copy .body-copy {
  max-width: 440px;
}

.dijon-illustration {
  position: relative;
  z-index: 1;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  margin: 0;
}

.dijon-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03);
}

.dijon-illustration::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.68) 34%, rgba(255, 253, 248, 0.16) 66%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.04));
  content: "";
  pointer-events: none;
}

.home-hero .home-note {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.home-hero .logo-heading {
  max-width: 360px;
  font-size: clamp(2.35rem, 4.35vw, 3.85rem);
}

.home-hero .lead {
  max-width: 340px;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.52;
}

.home-hero .actions {
  gap: 9px;
}

.home-hero .button {
  min-height: 40px;
  padding: 9px 14px;
}

.studio-hero {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4.2vw, 54px);
}

.page-hero > :first-child,
.community-hero-copy,
.hero-copy {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.page-hero > :first-child::before,
.hero-copy::before,
.community-hero-copy::before,
.page-hero > :first-child::after,
.hero-copy::after,
.community-hero-copy::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.page-hero > :first-child::before,
.hero-copy::before,
.community-hero-copy::before {
  top: clamp(-96px, -7vw, -54px);
  left: clamp(-92px, -7vw, -46px);
  width: clamp(220px, 26vw, 380px);
  aspect-ratio: 1;
  background: var(--dots-pink);
  opacity: 0.88;
  mask: var(--dots-mask-pink) center / contain no-repeat;
  transform: rotate(-10deg);
  -webkit-mask: var(--dots-mask-pink) center / contain no-repeat;
}

.page-hero > :first-child::after,
.hero-copy::after,
.community-hero-copy::after {
  right: clamp(-82px, -5.6vw, -36px);
  bottom: clamp(-78px, -5.6vw, -34px);
  width: clamp(190px, 22vw, 320px);
  aspect-ratio: 1;
  background: var(--dots-mint);
  opacity: 0.86;
  mask: var(--dots-mask-mint) center / contain no-repeat;
  transform: rotate(9deg);
  -webkit-mask: var(--dots-mask-mint) center / contain no-repeat;
}

.page-hero h1,
.community-hero h1 {
  position: relative;
  z-index: 1;
}

.page-hero h1::before,
.community-hero h1::before {
  position: absolute;
  left: -0.08em;
  right: -0.12em;
  bottom: 0.02em;
  z-index: -1;
  height: 0.34em;
  border-radius: 999px 999px 999px 18px;
  background:
    linear-gradient(90deg, rgba(234, 165, 182, 0.24), rgba(173, 212, 201, 0.18)),
    rgba(255, 253, 248, 0.42);
  content: "";
  transform: rotate(-1.6deg);
  transform-origin: left center;
}

.dark-hero > :first-child::before {
  background: rgba(234, 165, 182, 0.28);
  opacity: 1;
}

.dark-hero > :first-child::after {
  background: rgba(173, 212, 201, 0.24);
  opacity: 1;
}

.dark-hero h1::before {
  background:
    linear-gradient(90deg, rgba(234, 165, 182, 0.32), rgba(173, 212, 201, 0.22)),
    rgba(255, 253, 248, 0.08);
}

.folded-map-card {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: 100%;
  max-width: 690px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(36, 16, 22, 0.13) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(36, 16, 22, 0.12) 50%, transparent 50.3%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(220, 235, 241, 0.88));
  box-shadow: 0 20px 46px rgba(36, 16, 22, 0.16);
}

.tilt-card {
  transform: rotate(1.2deg) translateY(-6px);
  transform-origin: 54% 52%;
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.tilt-card:hover {
  transform: rotate(-0.4deg) translateY(-10px) scale(1.025);
  box-shadow: 0 28px 64px rgba(36, 16, 22, 0.2);
}

.folded-map-card::before,
.folded-map-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.folded-map-card::before {
  background:
    linear-gradient(90deg,
      transparent 0 calc(12.5% - 1px),
      rgba(255, 253, 248, 0.42) calc(12.5% - 1px) 12.5%,
      rgba(36, 16, 22, 0.13) 12.5% calc(12.5% + 1px),
      transparent calc(12.5% + 1px) calc(25% - 1px),
      rgba(255, 253, 248, 0.38) calc(25% - 1px) 25%,
      rgba(36, 16, 22, 0.12) 25% calc(25% + 1px),
      transparent calc(25% + 1px) calc(37.5% - 1px),
      rgba(255, 253, 248, 0.42) calc(37.5% - 1px) 37.5%,
      rgba(36, 16, 22, 0.13) 37.5% calc(37.5% + 1px),
      transparent calc(37.5% + 1px) calc(50% - 1px),
      rgba(255, 253, 248, 0.38) calc(50% - 1px) 50%,
      rgba(36, 16, 22, 0.12) 50% calc(50% + 1px),
      transparent calc(50% + 1px) calc(62.5% - 1px),
      rgba(255, 253, 248, 0.42) calc(62.5% - 1px) 62.5%,
      rgba(36, 16, 22, 0.13) 62.5% calc(62.5% + 1px),
      transparent calc(62.5% + 1px) calc(75% - 1px),
      rgba(255, 253, 248, 0.38) calc(75% - 1px) 75%,
      rgba(36, 16, 22, 0.12) 75% calc(75% + 1px),
      transparent calc(75% + 1px) calc(87.5% - 1px),
      rgba(255, 253, 248, 0.42) calc(87.5% - 1px) 87.5%,
      rgba(36, 16, 22, 0.13) 87.5% calc(87.5% + 1px),
      transparent calc(87.5% + 1px)),
    linear-gradient(0deg, transparent 0 calc(50% - 1px), rgba(255, 253, 248, 0.34) calc(50% - 1px) 50%, rgba(36, 16, 22, 0.12) 50% calc(50% + 1px), transparent calc(50% + 1px));
  mix-blend-mode: multiply;
}

.folded-map-card::after {
  border: 4px solid rgba(255, 253, 248, 0.32);
  box-shadow: inset 0 0 0 1px rgba(36, 16, 22, 0.12);
}

.folded-map-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.9) contrast(1.08);
  transition: opacity 260ms ease, filter 260ms ease;
}

.folded-map-card:hover img {
  opacity: 0.84;
  filter: saturate(0.98) contrast(1.12);
}

.folded-map-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  width: min(330px, calc(100% - 44px));
  padding: 20px;
  border: 1px solid rgba(36, 16, 22, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.78)),
    linear-gradient(90deg, rgba(234, 165, 182, 0.18), rgba(173, 212, 201, 0.2));
  backdrop-filter: blur(14px);
}

.folded-map-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.folded-map-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.folded-map-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ski-hero {
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.96), rgba(234, 244, 247, 0.55)),
    url("/assets/skilines/store-page-assets/store_page_background-c4e8bd2a.png") center / cover !important;
}

.funfair-hero {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(36, 16, 22, 0.96), rgba(36, 16, 22, 0.55)),
    url("/assets/funfairbillionaire/store-page-assets/store_page_background-f97c91ba.png") center / cover !important;
}

.dark-hero {
  color: #fff;
}

.dark-hero h1,
.dark-hero h2,
.dark-hero h3,
.dark-hero .lead,
.dark-hero .body-copy,
.dark-hero .mini-copy,
.reviews h2,
.reviews h3,
.reviews .body-copy {
  color: #fff;
}

.dark-hero h1,
.reviews h2 {
  text-shadow:
    0.04em 0.055em 0 rgba(16, 158, 149, 0.58),
    -0.012em 0.012em 0 rgba(255, 255, 255, 0.2);
}

.dark-hero .breadcrumb,
.dark-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.dark-hero .breadcrumb a:hover,
.dark-hero .breadcrumb a:focus-visible {
  color: #fff;
}

.funfair-hero .lead,
.funfair-hero .mini-copy {
  color: rgba(255, 255, 255, 0.82);
}

.hero-media-stack {
  display: grid;
  gap: 16px;
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.avatar-panel {
  justify-self: center;
  align-self: center;
  width: min(100%, 300px);
  padding: clamp(12px, 2vw, 18px);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(251, 246, 241, 0.84)),
    linear-gradient(135deg, rgba(234, 165, 182, 0.16), rgba(173, 212, 201, 0.18));
  box-shadow: 0 18px 42px rgba(36, 16, 22, 0.1);
}

.avatar-panel img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #f5f1ef;
}

.duo-media {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 14px;
}

.duo-media img {
  width: 100%;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface-2);
}

.embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  grid-template-areas:
    "video steam"
    "video gameplay"
    "actions actions";
  gap: clamp(16px, 2.6vw, 28px);
  align-items: stretch;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.featured-video-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.featured-video-frame .title {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, rgba(59, 16, 32, 0.96), rgba(59, 16, 32, 0.72)),
    linear-gradient(90deg, rgba(234, 165, 182, 0.2), rgba(173, 212, 201, 0.12));
  content: "Trailer";
}

.featured-video-frame iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

.steam-showcase,
.resource-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 3.4vw, 38px);
  align-items: center;
}

.panel.steam-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(102, 192, 244, 0.18), transparent 34%),
    linear-gradient(118deg, rgba(15, 25, 34, 0.98), rgba(27, 40, 56, 0.96) 48%, rgba(42, 71, 94, 0.92)),
    linear-gradient(145deg, rgba(102, 192, 244, 0.16), rgba(34, 54, 74, 0.22));
}

.panel.steam-section::after {
  position: absolute;
  right: -42px;
  bottom: 26px;
  width: 230px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(42, 71, 94, 0.88) 0 22px, rgba(102, 192, 244, 0.42) 22px 44px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  content: "";
  transform: rotate(-7deg);
}

.panel.steam-section .section-head,
.panel.steam-section .steam-showcase {
  position: relative;
  z-index: 1;
}

.panel.steam-section h2,
.panel.steam-section .body-copy {
  color: #fff;
}

.panel.steam-section .body-copy {
  color: rgba(199, 213, 224, 0.82);
}

.panel.steam-section .section-head > .body-copy {
  border-color: rgba(102, 192, 244, 0.18);
  color: rgba(199, 213, 224, 0.86);
  background:
    linear-gradient(135deg, rgba(102, 192, 244, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(15, 25, 34, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.panel.steam-section .kicker {
  color: #66c0f4;
}

.panel.steam-section .kicker::before {
  background: linear-gradient(90deg, #66c0f4, #c7d5e0);
}

.steam-showcase {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 0.92fr) minmax(260px, 0.58fr);
  align-items: stretch;
}

.steam-art {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(36, 16, 22, 0.14);
  /*transform: rotate(1deg);*/
}

.resource-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.72fr);
  align-items: center;
  margin-top: 0;
}

.resource-grid .video-actions {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-color: rgba(59, 16, 32, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.82)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.1), rgba(173, 212, 201, 0.12));
  transform: rotate(0.6deg);
}

.resource-grid .video-actions .video-actions-header {
  display: block;
  margin-bottom: 4px;
  color: var(--plum);
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.92;
  content: "Liens utiles";
}

.resource-grid .plain-link {
  display: block;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(59, 16, 32, 0.12);
}

.media-kit-section {
  display: block;
  overflow: hidden;
}

.media-kit-section::before {
  position: absolute;
  inset: auto -72px -68px 36%;
  height: 170px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(234, 165, 182, 0.18), rgba(173, 212, 201, 0.24));
  content: "";
  opacity: 0.75;
  transform: rotate(-9deg);
}

.media-kit-section > * {
  position: relative;
  z-index: 1;
}

.media-kit-section .resource-grid,
.media-kit-section .media-kit-main,
.media-kit-section .media-kit-aside,
.media-kit-section .section-head > div,
.media-kit-section .section-head > .body-copy {
  position: relative;
  z-index: 1;
}

.media-kit-section .resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.72fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  margin-top: 0;
}

.media-kit-section .media-kit-main,
.media-kit-section .media-kit-aside {
  display: flex;
  flex-direction: column;
}

.media-kit-section .media-kit-main {
  gap: clamp(16px, 2.4vw, 24px);
  justify-content: center;
}

.media-kit-section .media-kit-aside {
  gap: clamp(16px, 2vw, 22px);
  justify-content: center;
}

.media-kit-section .section-head {
  display: block;
  margin: 0;
}

.media-kit-section .section-head h2 {
  margin-bottom: 0;
}

.media-kit-section .secondary-video {
  width: 100%;
  align-self: stretch;
  transform: rotate(-0.35deg);
  transform-origin: center;
}

.media-kit-section .secondary-video iframe {
  min-height: clamp(300px, 27vw, 460px);
}

.media-kit-section .video-actions {
  position: relative;
  z-index: 1;
  align-self: stretch;
  justify-content: flex-start;
  min-height: 0;
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 24px 54px rgba(36, 16, 22, 0.12);
  transform: rotate(0.45deg);
}

.media-kit-section .media-kit-aside > .body-copy {
  max-width: none;
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(59, 16, 32, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.78)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.08), rgba(173, 212, 201, 0.1));
  box-shadow: 0 18px 42px rgba(36, 16, 22, 0.08);
  transform: rotate(-1.15deg);
}

.media-kit-section .plain-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 8px;
  color: var(--plum);
  background: rgba(255, 253, 248, 0.72);
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.media-kit-section .plain-link::after {
  margin-left: 18px;
  color: var(--mint);
  content: ">";
}

.media-kit-section .plain-link:hover,
.media-kit-section .plain-link:focus-visible {
  border-color: rgba(59, 16, 32, 0.28);
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(3px);
}

.media-kit-section .video-actions::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 112px;
  height: 24px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--pink-soft) 0 14px, var(--mint-soft) 14px 28px);
  content: "";
  opacity: 0.72;
  transform: rotate(-7deg);
}

.page-home .media-kit-section {
  display: block;
}

.page-home .media-kit-section .resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
  margin-top: 0;
}

.page-home .media-kit-main,
.page-home .media-kit-aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.page-home .media-kit-main {
  gap: clamp(14px, 2vw, 20px);
  justify-content: center;
}

.page-home .media-kit-main h2 {
  margin-bottom: 0;
}

.page-home .media-kit-main .secondary-video {
  margin-top: clamp(2px, 0.6vw, 8px);
}

.page-home .media-kit-aside {
  gap: 14px;
  justify-content: center;
}

.page-home .media-kit-aside > .body-copy,
.page-home .media-kit-aside > .video-actions {
  margin: 0;
}

.page-home .media-kit-aside > .body-copy {
  max-width: none;
  padding: 18px 20px;
  border: 1px solid rgba(59, 16, 32, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.78)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.08), rgba(173, 212, 201, 0.1));
  box-shadow: 0 18px 42px rgba(36, 16, 22, 0.08);
  transform: rotate(-1.15deg);
}

.page-home .media-kit-section .video-actions {
  align-self: stretch;
  min-height: auto;
  padding: clamp(18px, 2.2vw, 24px);
  transform: rotate(0.45deg);
}

.embed-grid .main-video {
  grid-area: video;
}

.embed-grid .secondary-video {
  grid-area: gameplay;
}

.embed-grid .steam-widget-frame {
  grid-area: steam;
}

.video-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.video-frame,
.steam-widget-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 16, 32, 0.16);
  border-radius: var(--radius);
  background: #151515;
  box-shadow: 0 24px 54px rgba(36, 16, 22, 0.18);
}

.video-frame::before,
.steam-widget-frame::before {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(59, 16, 32, 0.94), rgba(59, 16, 32, 0.7));
}

.main-video::before {
  content: "Trailer";
}

.secondary-video::before {
  content: "Gameplay";
}

.video-frame {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main-video {
  align-self: stretch;
}

.secondary-video {
  width: 100%;
  max-width: 100%;
  align-self: end;
  transform: rotate(-0.8deg);
  transform-origin: left center;
}

.video-frame iframe {
  flex: 1;
  min-height: 230px;
  height: 100%;
}

.steam-widget-frame {
  min-height: 214px;
  padding: 0 12px 12px;
  background:
    linear-gradient(135deg, #25384f, #151f2b);
}

.steam-widget-frame::before {
  content: "Steam";
  margin-inline: -12px;
  margin-bottom: 12px;
}

.steam-widget-frame iframe {
  overflow: hidden;
  height: 190px;
  border-radius: 6px;
}

.steam-showcase .steam-widget-frame {
  align-self: center;
  min-height: 224px;
}

.steam-showcase .steam-widget-frame iframe {
  height: 200px;
}

.home-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--plum);
  font-size: 0.95rem;
  font-weight: 600;
}

.home-note::before {
  width: 42px;
  height: 12px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--pink) 0 14px, var(--mint) 14px 28px);
  content: "";
  transform: rotate(-8deg);
}

.kicker,
.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 0;
  color: var(--blue);
  font-family: var(--text-font);
  font-size: 0.78rem;
  font-weight: 600 !important;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase !important;
}

.kicker::before,
.eyebrow::before {
  display: block;
  width: 22px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--mint));
  content: "";
  transform: rotate(-7deg);
}

.kicker::after,
.eyebrow::after {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.5;
}

.dark-hero .kicker,
.reviews .kicker,
.dark-panel .kicker {
  color: var(--yellow);
}

.dark-hero .kicker::before,
.reviews .kicker::before,
.dark-panel .kicker::before {
  background: linear-gradient(90deg, var(--yellow), var(--mint));
}

h1,
h2,
h3,
.footer-brand strong {
  font-family: var(--display-font) !important;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 5.15vw, 4.65rem);
  line-height: 0.78;
  color: var(--ink);
  text-shadow:
    0.04em 0.055em 0 rgba(16, 158, 149, 0.58),
    -0.01em 0.012em 0 rgba(255, 255, 255, 0.86);
  transform: rotate(-1.1deg);
  transform-origin: left center;
}

h2 {
  margin-top: 0;
  margin-bottom: 13px;
  font-size: clamp(1.65rem, 2.9vw, 2.75rem);
  line-height: 0.9;
}

h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.65vw, 1.62rem);
  line-height: 0.96;
}

.logo-heading {
  max-width: 580px;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.logo-title {
  position: relative;
  display: inline;
}

.logo-title.has-ornament::after,
.logo-title.ornament-0::before,
.logo-title.ornament-1::before {
  position: absolute;
  z-index: 1;
  width: var(--title-ornament-size, 0.78em);
  height: var(--title-ornament-size, 0.78em);
  background: var(--title-ornament-color, rgba(234, 165, 182, 0.82));
  content: "";
  mask: var(--title-ornament) center / contain no-repeat;
  pointer-events: none;
  transform: translate(0.12em, -0.2em) rotate(var(--title-ornament-rotation, 0deg));
  transform-origin: 50% 70%;
  -webkit-mask: var(--title-ornament) center / contain no-repeat;
}

.logo-title.ornament-0::after,
.logo-title.ornament-1::after {
  display: none;
}

.logo-title.ornament-0::before,
.logo-title.ornament-1::before {
  left: -0.64em;
  top: -0.12em;
  transform: translate(0, -0.2em) rotate(var(--title-ornament-rotation, 0deg));
}

.logo-title.ornament-0 {
  --title-ornament: url("/assets/quotes0-546f0013.png");
  --title-ornament-size: 0.52em;
  --title-ornament-rotation: 4deg;
}

.logo-title.ornament-1 {
  --title-ornament: url("/assets/quotes1-5ef95c6d.png");
  --title-ornament-size: 0.7em;
  --title-ornament-rotation: -8deg;
}

.logo-title.ornament-2 {
  --title-ornament: url("/assets/quotes2-a33bf5df.png");
  --title-ornament-size: 0.76em;
  --title-ornament-rotation: 7deg;
}

.logo-title.ornament-3 {
  --title-ornament: url("/assets/quotes3-fd7ee96d.png");
  --title-ornament-size: 0.54em;
  --title-ornament-rotation: -3deg;
}

.logo-title.ornament-mint {
  --title-ornament-color: rgba(173, 212, 201, 0.9);
}

.logo-title.ornament-small {
  --title-ornament-size: 0.5em;
}

h3 .logo-title.has-ornament::after,
h3 .logo-title.has-ornament::before,
.news-card .logo-title.has-ornament::after,
.news-card .logo-title.has-ornament::before,
.video-actions-header .logo-title.has-ornament::after,
.video-actions-header .logo-title.has-ornament::before,
.footer .logo-title.has-ornament::after,
.footer .logo-title.has-ornament::before,
.site-map .logo-title.has-ornament::after,
.site-map .logo-title.has-ornament::before {
  display: none;
}

.logo-word {
  display: inline-block;
  white-space: nowrap;
}

.logo-letter,
.logo-space {
  display: inline-block;
}

.logo-space {
  width: 0.22em;
}

.logo-letter {
  transform-origin: 50% 78%;
}

.logo-letter-0 {
  transform: translateY(0.02em) rotate(-5deg) scaleX(1.08) scaleY(1.04);
}

.logo-letter-1 {
  transform: translateY(-0.01em) rotate(1.5deg) scaleX(0.96) scaleY(1.03);
}

.logo-letter-2 {
  transform: translateY(0.035em) rotate(-2deg) scaleX(1.05);
}

.logo-letter-3 {
  transform: translateY(-0.018em) rotate(2.8deg) scaleX(0.98) scaleY(1.06);
}

.logo-letter-4 {
  transform: translateY(0.02em) rotate(-1.2deg) scaleX(1.03);
}

.logo-letter-5 {
  transform: translateY(-0.028em) rotate(2deg) scaleX(0.94) scaleY(1.04);
}

.logo-letter-6 {
  transform: translateY(0.025em) rotate(-2.8deg) scaleX(1.06);
}

.lead {
  max-width: 620px;
  color: #4f5c58;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 300;
  line-height: 1.58;
}

.mini-copy,
.body-copy,
.card p,
.panel p,
.press-card p,
.legal-card p,
.site-map p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--plum);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--plum), #5a1530);
}

.button.light {
  color: var(--ink);
  border-color: var(--pink);
  background: var(--pink);
}

.button.ghost {
  color: var(--plum);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(173, 212, 201, 0.22));
}

.funfair-hero .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  margin-top: 24px;
}

.panel {
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.84)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.08), rgba(173, 212, 201, 0.1));
}

.panel.dijon-panel {
  padding: 0;
}

.panel.trailer-section {
  overflow: hidden;
  padding: clamp(16px, 1.8vw, 24px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(36, 16, 22, 0.97), rgba(59, 16, 32, 0.9)),
    linear-gradient(145deg, rgba(234, 165, 182, 0.2), rgba(173, 212, 201, 0.16));
}

.panel.trailer-section::after {
  position: absolute;
  right: -42px;
  bottom: 26px;
  width: 230px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(234, 165, 182, 0.68) 0 22px, rgba(173, 212, 201, 0.68) 22px 44px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  content: "";
  transform: rotate(-7deg);
}

.panel.trailer-section .section-head,
.panel.trailer-section .embed-grid {
  position: relative;
  z-index: 1;
}

.panel.trailer-section .section-head {
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(10px, 2vw, 18px) clamp(10px, 2vw, 18px) 0;
}

.panel.trailer-section h2 {
  max-width: 760px;
}

.panel.trailer-section h2,
.panel.trailer-section .body-copy {
  color: #fff;
}

.panel.trailer-section .body-copy {
  color: rgba(255, 255, 255, 0.78);
}

.panel.trailer-section .section-head > .body-copy {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.panel.trailer-section .kicker {
  color: var(--yellow);
}

.panel.trailer-section .kicker::before {
  background: linear-gradient(90deg, var(--yellow), var(--mint));
}

.panel.trailer-section .plain-link {
  color: var(--mint);
}

.panel.trailer-section .featured-video-frame {
  width: 100%;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(20px, 3.6vw, 44px);
  align-items: start;
  margin-bottom: 28px;
}

.section-head > .body-copy {
  justify-self: end;
  max-width: 420px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(59, 16, 32, 0.13);
  border-radius: var(--radius);
  color: #52615c;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.78)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.13), rgba(173, 212, 201, 0.16));
  box-shadow: 0 18px 38px rgba(36, 16, 22, 0.08);
  transform: rotate(0.7deg);
}

.section-head > .body-copy::before {
  display: block;
  width: 46px;
  height: 9px;
  margin-bottom: 12px;
  border: 1px solid rgba(59, 16, 32, 0.1);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--pink-soft) 0 12px, var(--mint-soft) 12px 24px);
  content: "";
  transform: rotate(-5deg);
}

.section-head.slim {
  display: block;
  max-width: 820px;
}

.section-link {
  display: inline-block;
  margin-top: 10px;
}

.news-section-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  max-width: none;
}

.news-section-link {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  margin: 0 4px 8px 0;
  padding: 11px 14px 11px 16px;
  border: 1px solid rgba(216, 208, 192, 0.92);
  border-radius: 8px;
  color: var(--plum);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.78)),
    linear-gradient(115deg, rgba(234, 165, 182, 0.18), rgba(173, 212, 201, 0.2));
  box-shadow: 0 14px 30px rgba(36, 16, 22, 0.08);
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-section-link::after {
  position: absolute;
  right: 12px;
  bottom: -5px;
  left: 16px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--mint));
  content: "";
  transform: rotate(-1.5deg);
}

.news-section-link span:last-child {
  color: var(--mint);
  font-size: 1.25rem;
  line-height: 1;
}

.news-section-link:hover,
.news-section-link:focus-visible {
  border-color: rgba(234, 165, 182, 0.84);
  box-shadow: 0 20px 40px rgba(36, 16, 22, 0.14);
  outline: none;
  transform: translateY(-2px) rotate(0.35deg);
}

.grid-2,
.grid-3,
.grid-4,
.press-grid,
.legal-grid,
.site-map,
.gallery-grid,
.facts-grid {
  display: grid;
  gap: 14px;
}

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

.grid-3,
.press-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.card,
.press-card,
.legal-card,
.fact,
.site-map section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card {
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 14px 34px rgba(36, 16, 22, 0.07);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:focus-visible {
  outline: 3px solid rgba(173, 212, 201, 0.95);
  outline-offset: 4px;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.card-body,
.press-card,
.legal-card,
.fact,
.site-map section {
  padding: 18px;
}

.fact {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 20px 20px 20px 72px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.82)),
    linear-gradient(110deg, rgba(234, 165, 182, 0.12), rgba(173, 212, 201, 0.14));
}

.fact::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(59, 16, 32, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.68), transparent),
    repeating-linear-gradient(-45deg, rgba(234, 165, 182, 0.72) 0 7px, rgba(173, 212, 201, 0.76) 7px 14px);
  content: "";
  transform: rotate(-5deg);
}

.fact:nth-child(even)::before {
  transform: rotate(5deg);
}

.status {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.card a,
.press-card a,
.site-map a,
.plain-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.card-cta {
  color: var(--blue);
  font-weight: 900;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(18px, 3.4vw, 36px);
  align-items: center;
}

.ski-project-panel {
  /*aspect-ratio: 16 / 9;*/
  align-self: center;
}

.ski-project-panel img {
  min-height: 0 !important;
  object-position: center center;
}

.game-detail-page .page-hero,
.press-page .page-hero,
.games-page .page-hero {
  min-height: 500px;
}

.game-detail-page .section,
.press-page .section,
.games-page .section {
  margin-top: 26px;
}

.game-detail-page .panel,
.press-page .panel,
.games-page .panel {
  overflow: visible;
}

.game-detail-page .panel::before,
.press-page .panel::before,
.games-page .panel::before {
  top: -12px;
  right: clamp(28px, 8vw, 108px);
  width: 132px;
  height: 22px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.45), transparent),
    repeating-linear-gradient(90deg, var(--pink-soft) 0 16px, var(--mint-soft) 16px 32px);
  content: "";
  transform: rotate(2deg);
}

.game-detail-page .panel:nth-of-type(even)::before,
.press-page .panel:nth-of-type(even)::before,
.games-page .panel:nth-of-type(even)::before {
  right: auto;
  left: clamp(28px, 8vw, 108px);
  transform: rotate(-3deg);
}

.game-detail-page .media-kit-section::before,
.press-page .media-kit-section::before,
.games-page .media-kit-section::before {
  inset: auto -72px -68px 36%;
  left: 36%;
  width: auto;
  height: 170px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 165, 182, 0.18), rgba(173, 212, 201, 0.24));
  box-shadow: none;
  opacity: 0.75;
  transform: rotate(-9deg);
}

.games-showcase {
  --games-showcase-pad-x: clamp(22px, 4.7vw, 46px);
  --games-scene-height: clamp(400px, 49vw, 500px);
  --games-card-rise: clamp(180px, 18vw, 204px);
  isolation: isolate;
  overflow: hidden !important;
  padding: 0 0 clamp(18px, 3vw, 26px);
  background: #fbf6f1;
}

.games-showcase::before {
  display: none;
}

.games-showcase::after {
  display: none;
}

.games-scene {
  position: relative;
  z-index: 1;
  height: var(--games-scene-height);
  padding: clamp(32px, 4.6vw, 48px) var(--games-showcase-pad-x) 0;
  background:
    linear-gradient(180deg, rgba(251, 246, 241, 0.02), rgba(251, 246, 241, 0.08) 58%, rgba(251, 246, 241, 0.54) 100%),
    url("/assets/games-background-c5b7f382.png") center top / 100% auto no-repeat,
    #fbf6f1;
}

.games-showcase-head {
  position: relative;
  z-index: 3;
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.games-showcase-head .kicker {
  justify-content: center;
  margin-bottom: 10px;
}

.games-showcase h1 {
  font-size: clamp(3.3rem, 7.6vw, 5.8rem);
  line-height: 0.9;
}

.games-card-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: calc(-1 * var(--games-card-rise)) auto 0;
}

.game-showcase-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 192, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9)),
    linear-gradient(135deg, rgba(234, 165, 182, 0.1), rgba(173, 212, 201, 0.1));
  box-shadow: 0 18px 36px rgba(36, 16, 22, 0.13);
  transform: rotate(-0.8deg);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.game-showcase-card:nth-child(even) {
  transform: rotate(0.6deg);
}

.game-showcase-card:hover,
.game-showcase-card:focus-visible {
  border-color: rgba(234, 165, 182, 0.92);
  box-shadow: 0 24px 48px rgba(36, 16, 22, 0.17);
  transform: translateY(-4px) rotate(0deg);
}

.game-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.game-showcase-card .card-body {
  padding: clamp(15px, 2vw, 20px);
}

.game-showcase-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.75vw, 2.15rem);
  line-height: 0.92;
}

.game-showcase-card p:not(.status) {
  max-width: 36ch;
  color: var(--muted);
}

.game-showcase-card .card-cta {
  display: inline-block;
  margin-top: 8px;
}

.torn-panel,
.offset-panel,
.feature-panel,
.news-panel {
  overflow: visible;
}

.torn-panel::before {
  top: -13px;
  left: clamp(42px, 10vw, 140px);
  width: 210px;
  height: 28px;
  border: 1px solid rgba(59, 16, 32, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.5), rgba(255, 253, 248, 0)),
    repeating-linear-gradient(90deg, var(--mint) 0 18px, var(--pink-soft) 18px 36px);
  box-shadow: 0 10px 24px rgba(36, 16, 22, 0.08);
  transform: rotate(2.5deg);
}

.offset-panel::before {
  right: -18px;
  top: 38px;
  width: 42px;
  height: 148px;
  border: 1px solid rgba(59, 16, 32, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--pink), var(--mint));
  box-shadow: 0 18px 32px rgba(36, 16, 22, 0.1);
  transform: rotate(6deg);
}

.reverse-offset::before {
  right: auto;
  left: -18px;
  transform: rotate(-6deg);
}

.feature-panel::before {
  right: clamp(48px, 12vw, 160px);
  bottom: -16px;
  width: 170px;
  height: 32px;
  border: 1px solid rgba(59, 16, 22, 0.12);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 165, 182, 0.8), rgba(173, 212, 201, 0.84));
  transform: rotate(-4deg);
}

.news-panel::before {
  top: -26px;
  right: 42px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.6), transparent),
    repeating-linear-gradient(45deg, rgba(234, 165, 182, 0.7) 0 10px, rgba(173, 212, 201, 0.74) 10px 20px);
  transform: rotate(12deg);
}

.card,
.fact,
.network-card,
.review-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.fact:hover,
.network-card:hover,
.review-card:hover {
  border-color: rgba(234, 165, 182, 0.7);
  box-shadow: 0 24px 48px rgba(36, 16, 22, 0.13);
  transform: translateY(-4px) rotate(-0.4deg);
}

.fact:nth-child(even):hover,
.card:nth-child(even):hover {
  transform: translateY(-4px) rotate(0.4deg);
}

.feature-band.reverse {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.feature-band .image-panel img {
  min-height: 360px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #46524c;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: var(--green);
}

.map-panel {
  padding: 22px;
  background: #fffaf0;
}

.animated-map {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.route-line,
.fun-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 15 12;
  animation: routeFlow 2.6s linear infinite;
}

.route-blue {
  stroke: var(--blue);
  stroke-width: 7;
}

.route-green {
  stroke: var(--green);
  stroke-width: 7;
}

.route-red {
  stroke: var(--red);
  stroke-width: 7;
}

.lift-line {
  stroke: var(--ink);
  stroke-width: 4;
}

.cabin {
  animation: cabinMove 4.2s ease-in-out infinite alternate;
}

.ticket {
  animation: floatTicket 4.5s ease-in-out infinite;
  transform-origin: center;
}

.ticket.two {
  animation-delay: -1.4s;
}

.ticket.three {
  animation-delay: -2.8s;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -54;
  }
}

@keyframes cabinMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(70px, -48px);
  }
}

@keyframes floatTicket {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-13px) rotate(5deg);
  }
}

.gallery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 132px;
  grid-auto-flow: dense;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface-2);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 3;
  grid-row: span 3;
  transform: rotate(-0.35deg);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
  transform: rotate(0.35deg);
}

.gallery-grid img:nth-child(n + 4) {
  grid-column: span 2;
  grid-row: span 2;
}

.ski-lines-gallery,
.funfair-gallery {
  display: block;
  column-count: 3;
  column-gap: 12px;
}

.ski-lines-gallery .gallery-tile,
.funfair-gallery .gallery-tile {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: 0 14px 28px rgba(36, 16, 22, 0.07);
  break-inside: avoid;
  vertical-align: top;
}

.ski-lines-gallery .gallery-tile.is-wide,
.funfair-gallery .gallery-tile.is-wide {
  aspect-ratio: 16 / 9;
}

.ski-lines-gallery .gallery-tile.is-square,
.funfair-gallery .gallery-tile.is-square {
  aspect-ratio: 1 / 1;
}

.ski-lines-gallery .gallery-tile.is-portrait {
  aspect-ratio: 9 / 16;
}

.ski-lines-gallery img,
.ski-lines-gallery img:nth-child(1),
.ski-lines-gallery img:nth-child(2),
.ski-lines-gallery img:nth-child(3),
.ski-lines-gallery img:nth-child(n + 4),
.funfair-gallery img,
.funfair-gallery img:nth-child(1),
.funfair-gallery img:nth-child(2),
.funfair-gallery img:nth-child(3),
.funfair-gallery img:nth-child(n + 4) {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  grid-column: auto;
  grid-row: auto;
  object-fit: cover;
  transform: none;
}

.lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  text-align: inherit;
}

.lightbox-trigger img {
  transition: transform 220ms ease, filter 220ms ease;
}

.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.lightbox-trigger:focus-visible {
  outline: 3px solid rgba(173, 212, 201, 0.95);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(56px, 1fr) minmax(0, 1120px) minmax(56px, 1fr);
  align-items: center;
  gap: 16px;
  padding: 34px;
  background:
    radial-gradient(circle at 20% 12%, rgba(173, 212, 201, 0.18), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(234, 165, 182, 0.18), transparent 32%),
    rgba(16, 8, 12, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-overlay[hidden] {
  display: none;
}

.lightbox-figure {
  grid-column: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 760px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 253, 248, 0.04);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1120px);
  margin: 12px auto 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.95rem;
  line-height: 1.35;
}

.lightbox-counter {
  flex: 0 0 auto;
  color: rgba(173, 212, 201, 0.95);
  font-weight: 900;
}

.lightbox-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(36, 16, 22, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lightbox-button:hover,
.lightbox-button:focus-visible {
  border-color: rgba(173, 212, 201, 0.72);
  background: rgba(59, 16, 32, 0.92);
  transform: translateY(-1px);
}

.lightbox-button:focus-visible {
  outline: 3px solid rgba(234, 165, 182, 0.72);
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 16px;
}

.lightbox-nav {
  align-self: center;
  justify-self: center;
  min-width: 112px;
  padding: 12px 18px;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.achievement-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.achievement-row figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.achievement-row img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.achievement-row figcaption {
  color: var(--muted);
  font-weight: 900;
}

.fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.founder-panel {
  overflow: visible;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: center;
  margin-bottom: 24px;
}

.founder-card,
.founder-bio {
  position: relative;
  z-index: 1;
}

.founder-card {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: start;
  padding: 18px;
  border: 1px solid rgba(59, 16, 32, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.78)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.16), rgba(173, 212, 201, 0.18));
  box-shadow: 0 20px 44px rgba(36, 16, 22, 0.08);
  transform: rotate(1.1deg);
}

.founder-card::before {
  position: absolute;
  top: -12px;
  right: 18px;
  width: 72px;
  height: 18px;
  border: 1px solid rgba(59, 16, 32, 0.11);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--pink-soft) 0 16px, var(--mint-soft) 16px 32px);
  content: "";
  transform: rotate(4deg);
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  width: 118px;
  border: 1px solid rgba(59, 16, 32, 0.14);
  border-radius: 18px 30px 18px 30px;
  background:
    radial-gradient(circle at 28% 18%, rgba(234, 165, 182, 0.3), transparent 34%),
    linear-gradient(135deg, rgba(173, 212, 201, 0.32), rgba(255, 253, 248, 0.9));
  box-shadow: 0 14px 28px rgba(36, 16, 22, 0.12);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.founder-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.9vw, 2.15rem);
}

.founder-bio {
  max-width: 680px;
}

.founder-bio .body-copy {
  max-width: 610px;
  margin: 16px 0 0;
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.studio-principles article {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(59, 16, 32, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.78)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.11), rgba(173, 212, 201, 0.16));
  box-shadow: 0 16px 32px rgba(36, 16, 22, 0.07);
  transform: rotate(-0.6deg);
}

.studio-principles article:nth-child(even) {
  transform: rotate(0.7deg);
}

.studio-principles article:nth-child(3) {
  transform: translateY(8px) rotate(0.35deg);
}

.studio-principles article:nth-child(4) {
  transform: translateY(-4px) rotate(-0.45deg);
}

.studio-principles article::before {
  display: block;
  width: 42px;
  height: 9px;
  margin-bottom: 18px;
  border: 1px solid rgba(59, 16, 32, 0.1);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--pink-soft) 0 11px, var(--mint-soft) 11px 22px);
  content: "";
  transform: rotate(-5deg);
}

.studio-principles article:nth-child(even)::before {
  transform: rotate(5deg);
}

.studio-principles article::after {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  content: "";
  opacity: 0.68;
}

.studio-principles article:nth-child(even)::after {
  background: var(--mint);
}

.studio-principles span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.studio-principles strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.15;
}

.studio-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-news-grid .news-card {
  grid-template-columns: 1fr;
  min-height: 100%;
}

.home-news-grid .news-card > img {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.home-news-grid .news-card > div {
  min-height: 210px;
}

.reviews {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(36, 16, 22, 0.96), rgba(59, 16, 32, 0.82)),
    url("/assets/funfairbillionaire/store-page-assets/store_page_background-f97c91ba.png") center / cover;
}

.reviews .kicker {
  color: var(--yellow);
}

.review-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}

.review-source {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.review-meter {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.meter-label,
.review-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-meter strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.stars {
  margin: 12px 0 14px;
  color: var(--yellow);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.stars span {
  opacity: 0.36;
}

.meter-track {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.meter-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), #8ce2b1);
}

.review-meter p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.compact-reviews {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
}

.featured-review {
  grid-column: span 2;
  background:
    linear-gradient(145deg, #fffdf8, #f8e9c6);
}

figure {
  margin: 0;
}

blockquote {
  margin: 0 0 12px;
  font-size: clamp(1.18rem, 2vw, 1.75rem);
  font-weight: 950;
  line-height: 1.08;
}

.review-card p {
  color: #5f5d56;
  line-height: 1.58;
}

.review-card span {
  margin-top: auto;
  padding-top: 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

figcaption {
  color: rgba(255, 255, 255, 0.75);
}

.sentiment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.sentiment-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.sentiment-grid h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.sentiment-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.network-card {
  display: grid;
  gap: 16px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.network-card img {
  width: 28px;
  height: 28px;
}

.network-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.network-card strong {
  align-self: end;
}

.network-card:hover,
.network-card:focus-visible {
  border-color: var(--blue);
  background: var(--blue-soft);
  outline: none;
}

.community-page .site-shell {
  display: grid;
  gap: 18px;
}

.community-hero {
  min-height: clamp(330px, 34vw, 430px);
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0 30%, rgba(255, 253, 248, 0.76) 46%, rgba(255, 253, 248, 0.12) 68%),
    url("/assets/community-hero2-144d8180.png") center right / cover;
}

.community-hero::before {
  display: none;
}

.community-hero.artistic-section::after {
  display: none;
}

.community-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.community-hero h1 {
  max-width: 430px;
}

.community-hero .lead {
  max-width: 370px;
  margin-bottom: 0;
}

.community-social-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.8fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 38px);
  background:
    radial-gradient(circle at 98% 0, rgba(173, 212, 201, 0.26), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(234, 165, 182, 0.16), transparent 34%),
    rgba(255, 253, 248, 0.94);
}

.community-social-panel::before,
.community-action-panel::before {
  right: 48px;
  bottom: -20px;
  width: 102px;
  height: 24px;
  border: 1px solid rgba(59, 16, 32, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.5), transparent),
    repeating-linear-gradient(90deg, rgba(234, 165, 182, 0.62) 0 15px, rgba(173, 212, 201, 0.68) 15px 30px);
  box-shadow: 0 15px 30px rgba(36, 16, 22, 0.09);
  content: "";
  transform: rotate(-4deg);
}

.community-social-intro h2 {
  max-width: 260px;
}

.community-social-intro .body-copy {
  max-width: 280px;
  margin-bottom: 0;
}

.community-network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
}

.community-network-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr 22px;
  gap: 8px;
  min-height: 180px;
  padding: 18px 14px 12px;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 192, 0.78);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.6));
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(36, 16, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.community-network-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--network-tone, rgba(173, 212, 201, 0.18));
  content: "";
  opacity: 0.78;
}

.community-network-card > * {
  position: relative;
  z-index: 1;
}

.community-network-card .icon {
  width: 34px;
  height: 34px;
  justify-self: center;
}

.community-network-card strong {
  font-size: 0.94rem;
  font-weight: 900;
}

.community-network-card span {
  color: #6f766f;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.25;
}

.community-network-card i {
  align-self: end;
  justify-self: start;
  width: 100%;
  height: 20px;
  font-style: normal;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.community-network-card i::before {
  content: "";
}

.community-network-card i::after {
  display: block;
  color: var(--motif-color, var(--blue));
  font-size: 1.5rem;
  line-height: 1.5;
  content: ">";
}

.community-network-card:hover,
.community-network-card:focus-visible {
  border-color: rgba(59, 16, 32, 0.22);
  box-shadow: 0 22px 42px rgba(36, 16, 22, 0.13);
  outline: none;
  transform: translateY(-4px) rotate(-0.8deg);
}

.community-network-card.tone-0 { --network-tone: linear-gradient(145deg, #e9f6ff, rgba(201, 231, 246, 0.56)); --motif-color: #0b6ea5; }
.community-network-card.tone-3 { --network-tone: linear-gradient(145deg, #e3f4ec, rgba(190, 230, 213, 0.6)); --motif-color: #117a60; }
.community-network-card.tone-4 { --network-tone: linear-gradient(145deg, #fbe1eb, rgba(244, 196, 212, 0.6)); --motif-color: #cf4b77; }
.community-network-card.tone-1 { --network-tone: linear-gradient(145deg, #eee8ff, rgba(217, 205, 247, 0.56)); --motif-color: #5b44a5; }
.community-network-card.tone-2 { --network-tone: linear-gradient(145deg, #fff0df, rgba(247, 215, 183, 0.62)); --motif-color: #d26d68; }
.community-network-card.tone-5 { --network-tone: linear-gradient(145deg, #daf5ef, rgba(184, 231, 221, 0.58)); --motif-color: #07839b; }

.motif-mountain i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/mountain-3821f6b3.png") center center / cover;
}
.motif-peaks i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/mountain2-74f01823.png") center center / cover;
}
.motif-mask i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/mask-e01d4824.png") center center / cover;
}
.motif-tree i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/tree-8855a4e2.png") center center / cover;
}

.motif-chat i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/mountain2-74f01823.png") center center / cover;
}

.motif-flag i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/flag-7b469ed9.png") center center / cover;
}

.motif-squiggle i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/line-f4643584.png") center center / cover;
}

.motif-camera i::before {
  height: 48px;
  width: 48px;
  margin: -8px;
  background: url("/assets/icons/camera-958c9f35.png") center center / cover;
}

.community-action-panel {
  display: grid;  
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.82)),
    radial-gradient(circle at 16% 80%, rgba(173, 212, 201, 0.24), transparent 34%),
    radial-gradient(circle at 60% 12%, rgba(234, 165, 182, 0.18), transparent 30%);
}

.community-action-panel::before {
  top: -18px;
  right: 18%;
  bottom: auto;
  width: 118px;
  height: 28px;
  transform: rotate(-2deg);
}

.community-action-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-items: stretch;
  min-height: 252px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 192, 0.64);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(233, 247, 241, 0.88), rgba(255, 253, 248, 0.8));
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.community-action-card.feedback-card {
  background: linear-gradient(135deg, rgba(251, 224, 233, 0.82), rgba(255, 253, 248, 0.82));
}

.community-action-card.creation-card {
  background: linear-gradient(135deg, rgba(232, 226, 251, 0.78), rgba(255, 253, 248, 0.84));
}

.community-action-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 94px;
}

.community-action-image {
  width: 92px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(36, 16, 22, 0.1));
}

.community-action-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
}

.community-action-card p {
  margin-bottom: 0;
  color: #646b66;
  line-height: 1.5;
}

.community-action-card .kicker {
  margin-bottom: 5px;
  font-size: 0.68rem;
}

.community-action-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.community-action-card .plain-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 0;
  color: var(--blue);
}

.community-action-card .plain-link::after {
  content: ">";
}

.community-action-card:hover,
.community-action-card:focus-visible {
  box-shadow: 0 18px 36px rgba(36, 16, 22, 0.12);
  outline: none;
  transform: translateY(-3px) rotate(-0.4deg);
}

.community-action-icon {
  position: relative;
  display: block;
  width: 112px;
  height: 94px;
}

.people-icon::before,
.people-icon::after,
.idea-icon::before,
.workshop-icon::before {
  position: absolute;
  content: "";
}

.people-icon::before {
  inset: 20px 17px 12px;
  border: 5px solid var(--plum);
  border-top-color: transparent;
  border-radius: 46% 46% 35% 35%;
}

.people-icon::after {
  top: 7px;
  left: 36px;
  width: 34px;
  height: 34px;
  border: 5px solid var(--plum);
  border-radius: 999px;
  box-shadow:
    -35px 24px 0 -8px rgba(255, 253, 248, 0.98),
    -35px 24px 0 -3px var(--plum),
    35px 24px 0 -8px rgba(255, 253, 248, 0.98),
    35px 24px 0 -3px var(--plum);
}

.idea-icon::before {
  top: 10px;
  left: 32px;
  width: 42px;
  height: 52px;
  border: 5px solid var(--yellow);
  border-bottom-width: 10px;
  border-radius: 52% 52% 44% 44%;
  background: rgba(255, 253, 248, 0.52);
  box-shadow:
    -28px -4px 0 -25px var(--red),
    30px 6px 0 -25px var(--red),
    0 64px 0 -18px var(--plum);
}

.workshop-icon::before {
  left: 16px;
  bottom: 22px;
  width: 72px;
  height: 58px;
  border-left: 5px solid #5b44a5;
  border-top: 5px solid #5b44a5;
  content: "";
  transform: rotate(45deg) skew(-8deg);
}

.workshop-icon::after {
  position: absolute;
  top: 18px;
  left: 56px;
  width: 5px;
  height: 48px;
  background: #5b44a5;
  box-shadow: 0 -10px 0 6px rgba(234, 165, 182, 0.85);
  content: "";
}

.sitemap-band {
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(234, 244, 247, 0.9), rgba(255, 253, 248, 0.94));
}

.site-map {
  grid-template-columns: repeat(4, 1fr);
}

.site-map h2,
.site-map h3 {
  font-size: 1.15rem;
}

.site-map ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 850;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(36, 16, 22, 0.98), rgba(59, 16, 32, 0.92)),
    linear-gradient(90deg, rgba(234, 165, 182, 0.12), rgba(173, 212, 201, 0.1));
}

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

.footer-brand img {
  width: 72px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: #fff;
}

.footer .social-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.footer .social-link img {
  filter: brightness(0) invert(1);
}

.footer .social-link:hover,
.footer .social-link:focus-visible {
  color: var(--ink);
  border-color: var(--pink);
  background: var(--pink);
}

.footer .social-link:hover img,
.footer .social-link:focus-visible img {
  filter: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px) rotate(-0.35deg);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@media (max-width: 1030px) {
  :root {
    --nav-expanded-height: 86px;
    --nav-compact-height: 60px;
    --nav-top-offset: 12px;
    --anchor-scroll-gap: 14px;
  }

  .public-site {
    padding-top: calc(var(--nav-expanded-height) + var(--nav-top-offset) + 16px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: var(--nav-expanded-height);
    gap: 12px;
    padding: 8px max(12px, calc((100vw - var(--page-max)) / 2 + 16px));
  }

  .brand {
    width: auto;
    min-height: 64px;
  }

  .brand img {
    width: 82px;
    margin: -10px 0;
  }

  .at-top .brand img {
    transform: rotate(-2deg) scale(1.18);
    transform-origin: left center;
  }

  .nav-stuck .site-header {
    min-height: var(--nav-compact-height);
    padding-block: 6px;
  }

  .nav-stuck .brand {
    min-height: 48px;
  }

  .nav-stuck .brand img {
    width: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(59, 16, 32, 0.18);
    border-radius: 9px;
    color: var(--plum);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.72)),
      linear-gradient(135deg, rgba(234, 165, 182, 0.22), rgba(173, 212, 201, 0.24));
    box-shadow: 0 10px 24px rgba(36, 16, 22, 0.08);
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 160ms ease;
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle span::before {
    top: -6px;
  }

  .menu-toggle span::after {
    top: 6px;
  }

  .nav-menu-open .menu-toggle span {
    transform: rotate(45deg);
  }

  .nav-menu-open .menu-toggle span::before {
    opacity: 0;
    transform: translateY(6px);
  }

  .nav-menu-open .menu-toggle span::after {
    transform: translateY(-6px) rotate(-90deg);
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: max(12px, calc((100vw - var(--page-max)) / 2 + 16px));
    left: max(12px, calc((100vw - var(--page-max)) / 2 + 16px));
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(216, 208, 192, 0.94);
    border-radius: 10px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9)),
      linear-gradient(125deg, rgba(234, 165, 182, 0.16), rgba(173, 212, 201, 0.16));
    box-shadow: 0 24px 56px rgba(36, 16, 22, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 200ms ease;
  }

  .nav-menu-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  nav,
  .social-row,
  .language-switcher {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 10px;
    text-align: center;
  }

  nav a::after {
    bottom: 3px;
  }

  .social-row {
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid rgba(216, 208, 192, 0.7);
  }

  .page-hero,
  .dijon-panel,
  .studio-hero,
  .community-social-panel,
  .feature-band,
  .feature-band.reverse,
  .embed-grid,
  .steam-showcase,
  .resource-grid,
  .founder-grid,
  .section-head,
  .grid-2,
  .grid-3,
  .press-grid,
  .site-map {
    grid-template-columns: 1fr;
  }

  .games-showcase {
    --games-scene-height: clamp(390px, 51vw, 480px);
    --games-card-rise: clamp(164px, 18vw, 192px);
  }

  .games-card-grid {
    max-width: 760px;
  }

  .avatar-panel {
    width: min(72vw, 260px);
  }

  .home-hero .hero-copy,
  .home-hero .logo-heading,
  .home-hero .lead {
    max-width: none;
  }

  .home-hero .home-note {
    white-space: normal;
  }

  .home-hero .folded-map-card {
    justify-self: stretch;
    max-width: none;
  }

  .dijon-panel {
    min-height: 680px;
  }

  .dijon-copy {
    align-self: start;
    max-width: min(520px, calc(100% - 40px));
    margin: 34px 20px;
  }

  .dijon-illustration {
    justify-self: stretch;
    width: 100%;
    margin: 0;
  }

  .dijon-illustration img {
    object-position: 58% center;
  }

  .panel.trailer-section .section-head {
    grid-template-columns: 1fr;
  }

  .section-head > .body-copy {
    justify-self: stretch;
    max-width: none;
    transform: none;
  }

  .founder-card {
    transform: none;
  }

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

  .studio-principles article,
  .studio-principles article:nth-child(even),
  .studio-principles article:nth-child(3),
  .studio-principles article:nth-child(4) {
    transform: none;
  }

  .community-hero {
    min-height: clamp(300px, 48vw, 380px);
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0 44%, rgba(255, 253, 248, 0.66) 68%, rgba(255, 253, 248, 0.18) 100%),
      url("/assets/community-hero2-144d8180.png") center right / cover;
  }

  .community-social-panel {
    align-items: start;
  }

  .community-social-intro h2,
  .community-social-intro .body-copy {
    max-width: 560px;
  }

  .community-network-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .community-action-panel {
    grid-template-columns: 1fr;
  }

  .community-action-card {
    min-height: 132px;
  }

  .media-kit-section {
    display: block;
  }

  .media-kit-section .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .media-kit-section .resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }

  .media-kit-section .media-kit-main,
  .media-kit-section .media-kit-aside {
    gap: 14px;
  }

  .media-kit-section .secondary-video {
    transform: none;
  }

  .media-kit-section .secondary-video iframe {
    min-height: 250px;
  }

  .media-kit-section .media-kit-aside > .body-copy,
  .media-kit-section .video-actions {
    transform: none;
  }

  .page-home .media-kit-section .resource-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-home .media-kit-aside {
    gap: 14px;
    padding-top: 0;
  }

  .page-home .media-kit-aside > .body-copy,
  .page-home .media-kit-section .video-actions {
    transform: none;
  }

  .steam-art {
    max-height: 230px;
  }

  .embed-grid {
    grid-template-areas:
      "video"
      "steam"
      "gameplay"
      "actions";
  }

  .secondary-video {
    max-width: 100%;
  }

  .resource-grid .video-actions {
    flex-direction: row;
    transform: none;
    min-height: auto;
  }

  .grid-4,
  .facts-grid,
  .link-grid,
  .quotes,
  .review-cards,
  .review-lead,
  .sentiment-grid,
  .achievement-row,
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /*grid-auto-rows: 120px;*/
  }

  .review-lead,
  .sentiment-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    grid-column: span 2;
    grid-row: span 2;
  }

  .ski-lines-gallery,
  .funfair-gallery {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --nav-compact-height: 96px;
    --nav-top-offset: 12px;
  }

  .public-site {
    padding-top: calc(122px + var(--nav-top-offset));
  }

  .site-shell,
  .footer {
    width: min(100% - 20px, var(--page-max));
  }

  .site-header {
    width: 100%;
    min-height: 122px;
    padding-inline: 10px;
  }

  .news-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-section-link {
    justify-self: start;
    margin-top: 4px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .games-showcase {
    --games-showcase-pad-x: 14px;
    --games-scene-height: 360px;
    --games-card-rise: 154px;
    padding-bottom: 16px;
  }

  .games-scene {
    padding-top: 28px;
    background-size: auto 360px, auto 360px, auto;
  }

  .games-showcase h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .games-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .avatar-panel {
    width: min(68vw, 210px);
  }

  .game-showcase-card,
  .game-showcase-card:nth-child(even),
  .game-showcase-card:hover,
  .game-showcase-card:focus-visible {
    transform: none;
  }

  .dijon-panel {
    min-height: 760px;
    padding: 0;
  }

  .dijon-panel::before,
  .dijon-panel::after {
    display: none;
  }

  .dijon-illustration {
    margin: 0;
  }

  .dijon-copy {
    max-width: none;
    margin: 20px;
    padding: 20px;
  }

  .dijon-illustration img {
    object-position: 66% center;
  }

  .dijon-illustration::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.76) 44%, rgba(255, 253, 248, 0.08) 74%),
      linear-gradient(90deg, rgba(255, 253, 248, 0.42), rgba(255, 253, 248, 0));
  }

  .brand img {
    width: 88px;
  }

  .at-top .brand img {
    transform: rotate(-2deg) scale(1.24);
  }

  .nav-stuck .site-header {
    min-height: var(--nav-compact-height);
  }

  .secondary-video {
    max-width: 100%;
    transform: none;
  }

  .artistic-section::before,
  .artistic-section::after,
  .offset-panel::before,
  .feature-panel::before,
  .news-panel::before {
    display: none;
  }

  .studio-hero {
    grid-template-columns: 1fr;
  }

  .community-hero {
    min-height: auto;
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0 44%, rgba(255, 253, 248, 0.76) 78%, rgba(255, 253, 248, 0.38)),
      url("/assets/community-hero2-144d8180.png") 62% bottom / auto 250px no-repeat;
    padding-bottom: 230px;
  }

  .community-hero-copy,
  .community-hero h1,
  .community-hero .lead {
    max-width: none;
  }

  .community-social-panel {
    padding: 22px;
  }

  .community-network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .community-network-card {
    min-height: 138px;
    padding: 15px 12px 11px;
  }

  .community-action-panel {
    padding: 12px;
  }

  .community-action-card {
    min-height: 220px;
  }

  .community-action-head {
    grid-template-columns: 80px minmax(0, 1fr);
    min-height: 82px;
  }

  .community-action-image {
    width: 80px;
    height: 76px;
  }

  .community-action-card h3 {
    font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  }
  
  .community-action-card p {
    line-height: 1.42;
  }
  
  .community-action-icon {
    width: 74px;
    height: 70px;
    transform: scale(0.72);
    transform-origin: center;
  }

  .folded-map-card,
  .folded-map-card img {
    min-height: 0;
  }

  .folded-map-copy {
    transform: none;
  }
}

@media (max-width: 520px) {
  :root {
    --nav-expanded-height: 196px;
  }

  html {
    scroll-padding-top: calc(var(--nav-compact-height) + 12px);
  }

  .site-shell {
    padding-top: 4px;
  }

  .site-header {
    gap: 16px;
    padding: 16px 18px;
  }

  .nav-panel {
    gap: 12px;
    justify-content: stretch;
  }

  .brand img {
    width: 80px;
  }

  .at-top .brand img {
    transform: rotate(-2deg) scale(1.18);
  }

  nav,
  .social-row {
    justify-content: flex-start;
  }

  nav a {
    padding: 9px 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .panel,
  .page-hero {
    padding: 24px 20px;
  }

  .community-network-grid,
  .community-action-panel {
    grid-template-columns: 1fr;
  }

  .community-action-card {
    min-height: 0;
    padding: 18px;
  }

  .community-action-head {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    min-height: 76px;
  }

  .community-action-image {
    width: 76px;
    height: 70px;
  }

  .community-action-icon {
    width: 74px;
    height: 70px;
    transform: scale(0.72);
    transform-origin: center;
  }

  .folded-map-card,
  .folded-map-card img {
    min-height: 0;
  }

  .folded-map-copy {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 3.15rem);
  }

  .duo-media,
  .grid-4,
  .facts-grid,
  .link-grid,
  .quotes,
  .review-cards,
  .compact-reviews,
  .achievement-row,
  .gallery-grid,
  .legal-grid,
  .studio-principles,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(n + 4) {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }

  .lightbox-overlay {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-items: end;
    gap: 10px;
    padding: 58px 14px 18px;
  }

  .lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .lightbox-image {
    max-height: 72vh;
    border-radius: 8px;
  }

  .lightbox-caption {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.85rem;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    grid-row: 2;
    width: 100%;
    min-width: 0;
    padding: 11px 14px;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }

  .ski-lines-gallery,
  .funfair-gallery {
    column-count: 1;
  }

  .ski-lines-gallery .gallery-tile,
  .ski-lines-gallery .gallery-tile.is-wide,
  .ski-lines-gallery .gallery-tile.is-square,
  .ski-lines-gallery .gallery-tile.is-portrait,
  .funfair-gallery .gallery-tile,
  .funfair-gallery .gallery-tile.is-wide,
  .funfair-gallery .gallery-tile.is-square {
    transform: none;
  }

  .ski-lines-gallery img,
  .ski-lines-gallery img:nth-child(1),
  .ski-lines-gallery img:nth-child(2),
  .ski-lines-gallery img:nth-child(3),
  .ski-lines-gallery img:nth-child(n + 4),
  .funfair-gallery img,
  .funfair-gallery img:nth-child(1),
  .funfair-gallery img:nth-child(2),
  .funfair-gallery img:nth-child(3),
  .funfair-gallery img:nth-child(n + 4) {
    height: 100%;
  }

  .featured-review {
    grid-column: auto;
  }

  .image-panel img {
    min-height: 240px;
  }
}

.press-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  min-height: 480px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.78)),
    linear-gradient(135deg, rgba(234, 165, 182, 0.18), rgba(173, 212, 201, 0.2));
}

.press-quick-card,
.press-copy-card,
.press-links-card,
.press-meta-card,
.press-fact,
.press-angle-grid article,
.press-copy-grid article {
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.82)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.1), rgba(173, 212, 201, 0.12));
  box-shadow: 0 18px 44px rgba(36, 16, 22, 0.08);
}

.press-quick-card {
  padding: clamp(20px, 3vw, 28px);
  transform: rotate(0.7deg);
}

.press-quick-card dl,
.press-meta-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.press-quick-card div,
.press-meta-card dl div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(59, 16, 32, 0.1);
}

.press-quick-card div:last-child,
.press-meta-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.press-quick-card dt,
.press-meta-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-quick-card dd,
.press-meta-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.press-fact-grid,
.press-angle-grid,
.press-copy-grid,
.press-assets,
.press-video-pair {
  display: grid;
  gap: 14px;
}

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

.press-fact {
  min-height: 178px;
  padding: 20px;
}

.press-fact span,
.press-angle-grid span,
.press-copy-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.press-fact strong,
.press-angle-grid strong {
  display: block;
  color: var(--plum);
  font-size: 1.2rem;
  line-height: 1.15;
}

.press-fact p,
.press-copy-grid p,
.press-copy-card p {
  margin: 10px 0 0;
}

.press-game-kit {
  display: grid;
  gap: clamp(20px, 3.2vw, 34px);
}

.press-kit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.press-kit-layout.reverse {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
}

.press-kit-layout.reverse .press-kit-main {
  grid-column: 2;
}

.press-kit-layout.reverse .press-meta-card {
  grid-column: 1;
  grid-row: 1;
}

.press-kit-main {
  display: grid;
  gap: 16px;
}

.press-kit-main h2,
.press-contact-panel h2 {
  margin-bottom: 0;
}

.press-copy-card {
  max-width: 680px;
  padding: clamp(18px, 2.4vw, 26px);
  transform: rotate(-0.45deg);
}

.funfair-press-kit .press-copy-card {
  transform: rotate(0.45deg);
}

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

.press-copy-grid article {
  padding: 18px;
}

.press-steam-list {
  padding: 18px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(234, 244, 247, 0.9), rgba(255, 253, 248, 0.88)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.1), rgba(173, 212, 201, 0.16));
}

.press-steam-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.press-steam-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.press-meta-card {
  overflow: hidden;
  padding: 0;
}

.press-meta-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.press-meta-card dl {
  padding: 18px;
}

.press-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: 18px;
  align-items: stretch;
}

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

.press-links-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: clamp(18px, 2.6vw, 26px);
}

.press-links-card h3 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
}

.press-links-card a,
.press-contact-panel a:not(.button) {
  color: var(--blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.press-links-card a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(59, 16, 32, 0.1);
}

.press-links-card a:last-child {
  border-bottom: 0;
}

.press-links-card.official-link-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 12%, rgba(173, 212, 201, 0.24), transparent 32%),
    radial-gradient(circle at 9% 90%, rgba(234, 165, 182, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.97), rgba(255, 253, 248, 0.82));
}

.press-links-card.official-link-panel h3 {
  margin: 0;
}

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

.press-official-links a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 18px 44px 18px 18px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.72)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.16), rgba(173, 212, 201, 0.16));
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(36, 16, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.press-official-links a::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--mint);
  font-size: 1.35rem;
  font-weight: 950;
  content: ">";
}

.press-official-links a:nth-child(even)::after {
  color: var(--pink);
}

.press-official-links span {
  color: var(--blue);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.press-official-links strong {
  color: var(--plum);
  font-size: 1.12rem;
  line-height: 1.12;
}

.press-official-links em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
}

.press-official-links a:hover,
.press-official-links a:focus-visible {
  border-color: rgba(59, 16, 32, 0.22);
  box-shadow: 0 20px 42px rgba(36, 16, 22, 0.12);
  outline: none;
  transform: translateY(-3px) rotate(-0.45deg);
}

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

.press-asset-card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  min-height: 150px;
  border: 1px solid rgba(59, 16, 32, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background: var(--plum);
  cursor: zoom-in;
  font: inherit;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(36, 16, 22, 0.12);
}

.press-asset-card:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.press-asset-card:nth-child(even) {
  transform: rotate(0.35deg);
}

.press-asset-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms ease;
}

.press-asset-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  background: rgba(36, 16, 22, 0.78);
  font-weight: 900;
  line-height: 1.15;
}

.press-asset-card:hover img,
.press-asset-card:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.press-asset-card:focus-visible {
  outline: 3px solid rgba(173, 212, 201, 0.95);
  outline-offset: 4px;
}

.press-angle-panel {
  background:
    linear-gradient(115deg, rgba(36, 16, 22, 0.96), rgba(59, 16, 32, 0.86)),
    linear-gradient(135deg, rgba(234, 165, 182, 0.18), rgba(173, 212, 201, 0.16));
}

.press-angle-panel h2,
.press-angle-panel .kicker,
.press-angle-panel .body-copy {
  color: #fff;
}

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

.press-angle-grid article {
  min-height: 160px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.84)),
    linear-gradient(120deg, rgba(234, 165, 182, 0.16), rgba(173, 212, 201, 0.14));
}

.press-steam-summary {
  padding: clamp(20px, 3vw, 30px);
}

.press-steam-summary .section-head {
  align-items: center;
  margin-bottom: 18px;
}

.press-steam-summary .section-head > .body-copy {
  max-width: 360px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 253, 248, 0.1);
  box-shadow: none;
}

.press-steam-summary .press-angle-grid {
  gap: 10px;
}

.press-steam-summary .press-angle-grid article {
  min-height: 118px;
  padding: 16px;
}

.press-steam-summary .press-angle-grid strong {
  font-size: 1.02rem;
}

.press-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.press-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1030px) {
  .press-hero,
  .press-kit-layout,
  .press-kit-layout.reverse,
  .press-media-row,
  .press-contact-panel {
    grid-template-columns: 1fr;
  }

  .press-kit-layout.reverse .press-kit-main,
  .press-kit-layout.reverse .press-meta-card {
    grid-column: auto;
    grid-row: auto;
  }

  .press-fact-grid,
  .press-angle-grid,
  .press-assets,
  .press-official-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-links-card.official-link-panel {
    grid-template-columns: 1fr;
  }

  .press-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .press-fact-grid,
  .press-copy-grid,
  .press-video-pair,
  .press-angle-grid,
  .press-assets,
  .press-official-links {
    grid-template-columns: 1fr;
  }

  .press-quick-card,
  .press-copy-card,
  .press-asset-card,
  .press-asset-card:nth-child(odd),
  .press-asset-card:nth-child(even) {
    transform: none;
  }
}

.news-index-panel {
  padding: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 246, 241, 0.98), rgba(251, 246, 241, 0.9)),
    #fbf6f1;
}

.news-index-panel::before {
  top: 46px;
  right: 70px;
  width: 122px;
  height: 28px;
  border: 1px solid rgba(59, 16, 32, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.52), transparent),
    repeating-linear-gradient(90deg, rgba(234, 165, 182, 0.58) 0 16px, rgba(173, 212, 201, 0.64) 16px 32px);
  box-shadow: 0 15px 30px rgba(36, 16, 22, 0.08);
  content: "";
  transform: rotate(-5deg);
}

.news-header {
  min-height: clamp(200px, 24vw, 282px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(251, 246, 241, 0.98) 0 42%, rgba(251, 246, 241, 0.64) 58%, rgba(251, 246, 241, 0.18) 78%),
    url("/assets/news-header-background-ba7ef4cb.png") right bottom / contain no-repeat;
}

.news-header-copy {
  max-width: 560px;
}

.news-header h1 {
  max-width: 620px;
  margin-bottom: 12px;
}

.news-header .lead {
  max-width: 510px;
  margin-bottom: 0;
}

.news-index-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 14px;
  align-items: start;
  margin-top: 12px;
}

.news-main-column {
  display: grid;
  gap: 12px;
}

.news-posts-frame {
  display: grid;
  gap: 12px;
}

.news-posts-frame[busy] {
  opacity: 0.72;
}

.featured-news-card,
.news-card,
.news-side-card {
  border: 1px solid rgba(216, 208, 192, 0.86);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(36, 16, 22, 0.07);
}

.featured-news-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(245px, 0.88fr);
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-news-card > img {
  width: 100%;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
}

.featured-news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 218px;
  padding: clamp(18px, 2.5vw, 28px);
}

.featured-news-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.featured-news-copy p {
  margin: 0 0 18px;
  color: #626b66;
  line-height: 1.48;
}

.featured-news-copy strong {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--plum);
}

.featured-news-copy strong::after {
  content: ">";
}

.featured-news-card:hover,
.featured-news-card:focus-visible {
  box-shadow: 0 20px 42px rgba(36, 16, 22, 0.13);
  outline: none;
  transform: translateY(-2px);
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-card-meta span,
.news-card > div > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--blue);
  background: rgba(173, 212, 201, 0.38);
  font-size: 0.72rem;
  font-weight: 900;
}

.news-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 0;
}

.news-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.news-sort-list {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.news-filter-list a,
.news-sort {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #5f625c;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.news-filter-list .is-active,
.news-sort.is-active {
  border-color: rgba(216, 208, 192, 0.88);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
}

.news-filter-list .is-active {
  box-shadow: inset 0 -3px 0 var(--pink);
}

.news-filter-list a:hover,
.news-filter-list a:focus-visible,
.news-sort:hover,
.news-sort:focus-visible {
  border-color: rgba(173, 212, 201, 0.72);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  outline: none;
  transform: translateY(-1px);
}

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

.news-card {
  display: grid;
  grid-template-columns: minmax(115px, 0.42fr) minmax(0, 0.58fr);
  min-height: 150px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card > img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.news-card > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.news-card time,
.popular-card time {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  /*font-size: clamp(1rem, 1.45vw, 1.28rem);*/
}

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #666d67;
  font-size: 0.88rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card > div > span {
  margin-top: auto;
}

.news-card:hover,
.news-card:focus-visible {
  box-shadow: 0 18px 36px rgba(36, 16, 22, 0.12);
  outline: none;
  transform: translateY(-2px) rotate(-0.25deg);
}

.news-placeholder-card {
  grid-column: 1 / -1;
}

.news-sidebar {
  display: grid;
  gap: 10px;
}

.news-side-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.news-side-card::before {
  display: block;
  width: 42px;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--mint));
  content: "";
  transform: rotate(-6deg);
}

.news-side-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.news-side-card p {
  margin: 0 0 14px;
  color: #626b66;
  line-height: 1.48;
}

.archive-card ol,
.popular-card ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.archive-card li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(216, 208, 192, 0.72);
  color: #5f625c;
  font-size: 0.9rem;
}

.archive-card li:last-child {
  border-bottom: 0;
}

.newsletter-card {
  background:
    linear-gradient(135deg, rgba(224, 243, 236, 0.92), rgba(255, 253, 248, 0.92));
}

.newsletter-card .button {
  width: 100%;
  margin-top: 4px;
}

.newsletter-card small {
  display: block;
  margin-top: 10px;
  color: rgba(36, 16, 22, 0.52);
  text-align: center;
}

.popular-card {
  background:
    linear-gradient(135deg, rgba(251, 224, 233, 0.82), rgba(255, 253, 248, 0.94));
}

.popular-card li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(216, 208, 192, 0.58);
}

.popular-card li:last-child {
  border-bottom: 0;
}

.popular-card li > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.popular-card a {
  display: grid;
  gap: 3px;
  color: var(--ink);
  text-decoration: none;
}

.popular-card em {
  color: var(--blue);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.popular-card a:hover,
.popular-card a:focus-visible {
  color: var(--blue);
  outline: none;
}

.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 8px 0 0;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 208, 192, 0.86);
  border-radius: 8px;
  color: var(--plum);
  background: rgba(255, 253, 248, 0.9);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(36, 16, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pagination-link:hover,
.pagination-link:focus-visible {
  background: #fff;
  box-shadow: 0 14px 30px rgba(36, 16, 22, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.pagination-link.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(251, 224, 233, 0.95), rgba(224, 243, 236, 0.95));
  box-shadow: inset 0 -3px 0 var(--mint);
}

.pagination-link.is-disabled,
.pagination-link.is-gap {
  opacity: 0.48;
  pointer-events: none;
}

@media (max-width: 1030px) {
  .news-index-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-panel {
    right: 10px;
    left: 10px;
    padding: 12px;
  }

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

  nav a {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .news-header {
    min-height: 420px;
    background:
      linear-gradient(180deg, rgba(251, 246, 241, 0.98) 0 42%, rgba(251, 246, 241, 0.28) 78%),
      url("/assets/news-header-background-ba7ef4cb.png") center bottom / 112% auto no-repeat;
  }

  .featured-news-card,
  .news-card {
    grid-template-columns: 1fr;
  }

  .featured-news-card > img {
    min-height: 210px;
    aspect-ratio: 16 / 9;
  }

  .news-card > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .news-card-grid,
  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

.post-show,
.legal-copy,
.admin-shell .panel {
  padding: clamp(24px, 4vw, 46px);
}

.post-show h1,
.admin-shell h1 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 0.95;
}

.post-body {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-body p + p {
  margin-top: 18px;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin: 34px 0 10px;
  line-height: 1.05;
}

.post-body h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.post-body h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

.post-body ul,
.post-body ol {
  display: grid;
  gap: 8px;
  padding-left: 1.3em;
  margin: 18px 0;
}

.post-body blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--pink);
  border-radius: 8px;
  background: rgba(234, 165, 182, 0.12);
  font-size: 1.1rem;
}

.post-body pre {
  overflow-x: auto;
  padding: 16px;
  border: 1px solid rgba(59, 16, 32, 0.18);
  border-radius: 8px;
  color: #fff;
  background: var(--plum);
}

.post-body code {
  padding: 0.12em 0.34em;
  border-radius: 5px;
  background: rgba(173, 212, 201, 0.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.post-body pre code {
  padding: 0;
  background: transparent;
}

.post-body iframe {
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--plum);
  box-shadow: 0 18px 44px rgba(36, 16, 22, 0.12);
}

.post-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.post-images figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(36, 16, 22, 0.08);
}

.post-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.legal-copy h2 {
  margin: 28px 0 8px;
  font-size: 1.35rem;
}

.flash {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
}

.flash.notice {
  border-color: rgba(22, 131, 79, 0.35);
  color: var(--green);
}

.flash.alert,
.form-errors {
  border-color: rgba(207, 45, 46, 0.35);
  color: var(--red);
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.8);
}

.admin-row strong,
.admin-row span {
  display: block;
}

.admin-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cms-form {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-top: 28px;
}

.cms-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.translation-fields {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(216, 208, 192, 0.9);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.translation-fields legend {
  padding-inline: 8px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cms-form input[type="text"],
.cms-form input[type="datetime-local"],
.cms-form input[type="file"],
.cms-form select,
.cms-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.cms-form textarea {
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.attached-images-field {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.attached-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.attached-image {
  gap: 10px !important;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.attached-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.attached-image span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 750;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  flex-direction: row;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.form-errors {
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 8px;
  background: rgba(207, 45, 46, 0.06);
}

.button.danger {
  border-color: rgba(207, 45, 46, 0.4);
  color: var(--red);
  background: #fff;
}

.button.danger:hover,
.button.danger:focus-visible {
  color: #fff;
  background: var(--red);
}

.button,
.cms-form input[type="submit"] {
  cursor: pointer;
}
