:root {
  --black: #060806;
  --ink: #10140f;
  --moss: #51692a;
  --acid: #e7f247;
  --signal: #f3b51c;
  --cyan: #6ee8e1;
  --white: #f5f5e7;
  --muted: #aeb5a1;
  --line: rgba(245, 245, 231, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(6, 8, 6, 0.78), rgba(6, 8, 6, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(160px, 19vw, 260px);
  min-width: 132px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.65));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--black);
  background: var(--signal);
  border: 1px solid rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.6vw, 22px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(245, 245, 231, 0.86);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

nav a:hover {
  color: var(--acid);
}

.nav-buy {
  min-height: 36px;
  color: var(--black);
  background: var(--signal);
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-shadow: none;
}

.nav-skwid {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(245, 245, 231, 0.72);
}

.nav-lang {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(245, 245, 231, 0.72);
}

.nav-lang a {
  min-height: auto;
  padding: 0;
}

.nav-lang .lang-active {
  color: var(--signal);
}

.lang-sep {
  color: rgba(245, 245, 231, 0.42);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(20px, 6vw, 76px);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 0% 60%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(980px, 80vw);
  z-index: -2;
  background: linear-gradient(90deg, rgba(4, 6, 4, 0.94) 0%, rgba(4, 6, 4, 0.82) 52%, rgba(4, 6, 4, 0.18) 84%, rgba(4, 6, 4, 0) 100%);
}

.hero-content {
  width: min(720px, 100%);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.75);
}

.kicker,
.section-code {
  margin: 0 0 14px;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(76px, 13vw, 156px);
  max-width: 880px;
}

.hero-logo {
  width: min(600px, 82vw);
  line-height: 1;
  left: -16px;
  position: relative;
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.76));
}

h2 {
  font-size: clamp(44px, 7.4vw, 96px);
}

.baseline {
  margin: 20px 0 0;
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(245, 245, 231, 0.9);
  font-size: clamp(16px, 1.8vw, 20px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(231, 242, 71, 0.34);
  background: rgba(6, 8, 6, 0.55);
  padding: 9px 13px;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 76px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.zone-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(181, 221, 57, 0.14), transparent 34%),
    linear-gradient(180deg, #060806, #11180f 56%, #080a07);
  border-top: 1px solid var(--line);
}

.zone-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
}

.zone-left {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.zone-label {
  margin: 0 0 14px;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.zone-art img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(245, 245, 231, 0.16);
  filter: saturate(0.82) contrast(1.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.zone-art {
  position: relative;
  height: 100%;
  min-height: 520px;
  padding: 12px;
  background: rgba(230, 236, 211, 0.08);
  border: 1px solid rgba(245, 245, 231, 0.18);
}

.zone-art::before {
  content: "REF. P54-ZN-17  /  03:42";
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 52px;
  color: rgba(245, 245, 231, 0.9);
  background: rgba(5, 8, 6, 0.48);
  padding: 6px 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.zone-art::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 245, 231, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 231, 0.14) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
  opacity: 0.22;
}

.zone-corner {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(245, 245, 231, 0.9);
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.zone-corner-tl {
  top: 20px;
  left: 20px;
}

.zone-corner-tr {
  top: 20px;
  right: 20px;
}

.zone-corner-bl {
  bottom: 20px;
  left: 20px;
}

.zone-corner-br {
  right: 20px;
  bottom: 20px;
}

.zone-copy h2 {
  margin-bottom: 24px;
}

.body-copy,
.raid-copy,
.video-heading,
.buy-copy {
  color: rgba(245, 245, 231, 0.84);
  font-size: clamp(16px, 1.45vw, 19px);
}

.body-copy p,
.raid-copy p,
.video-heading p,
.buy-copy p {
  margin: 0 0 18px;
}

.zone-copy .body-copy {
  height: 100%;
  color: #17130d;
  background: url("assets/EncadrePapier.png") center / 100% 100% no-repeat;
  padding: clamp(34px, 5vw, 56px) clamp(28px, 5vw, 52px);
  font-family: "JMH Typewriter", "Special Elite", "Courier New", monospace;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.46;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.35));
}

.zone-stalker {
  position: absolute;
  z-index: 1;
  right: clamp(-58px, -3vw, -18px);
  bottom: -8px;
  width: min(28vw, 330px);
  max-width: 44%;
  opacity: 0.95;
  filter: drop-shadow(-22px 18px 30px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.zone-copy .body-copy h2 {
  margin: 0 0 18px;
  color: #17130d;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.95;
}

.zone-copy .body-copy p {
  margin-bottom: 12px;
}

.paper-kicker {
  margin-bottom: 10px;
  color: #756042;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.raid-section {
  position: relative;
  overflow: hidden;
  background: #0a0d09 url("assets/illus/Map.jpg") center 48% / cover no-repeat;
  isolation: isolate;
}

.raid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 6, 0.66), rgba(6, 8, 6, 0.42), rgba(6, 8, 6, 0.2)),
    linear-gradient(180deg, rgba(6, 8, 6, 0.52), rgba(6, 8, 6, 0.12));
}

.raid-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.raid-copy h2 {
  margin-bottom: 24px;
}

.card-stack {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
}

.card-stack img {
  position: absolute;
  width: min(29vw, 292px);
  min-width: 190px;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
}

.card-stack img:nth-child(1) {
  left: 0;
  top: 56px;
  transform: rotate(-8deg);
  animation: card-float-a 5.8s ease-in-out infinite;
}

.card-stack img:nth-child(2) {
  left: 29%;
  top: 0;
  z-index: 2;
  transform: rotate(4deg);
  animation: card-float-b 6.6s ease-in-out infinite;
}

.card-stack img:nth-child(3) {
  right: -4%;
  top: 86px;
  transform: rotate(10deg);
  animation: card-float-c 6.1s ease-in-out infinite;
}

@keyframes card-float-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(-4px, -14px, 0) rotate(-6.5deg); }
}

@keyframes card-float-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
  50% { transform: translate3d(3px, 12px, 0) rotate(2.5deg); }
}

@keyframes card-float-c {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(10deg); }
  50% { transform: translate3d(5px, -10px, 0) rotate(12deg); }
}

.gallery-section {
  position: relative;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 76px);
  background:
    url("assets/illus/Artefact.jpg") center 48% / cover no-repeat,
    repeating-linear-gradient(90deg, transparent 0 130px, rgba(255, 255, 255, 0.04) 130px 131px);
  overflow: visible;
}

.gallery-stalker {
  position: absolute;
  z-index: 50;
  right: 0px;
  bottom: 0px;
  width: min(36vw, 460px);
  pointer-events: none;
}

.gallery-stalker-composite {
  display: none;
}

.gallery-stalker-body {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(-28px 22px 34px rgba(0, 0, 0, 0.58));
}

.gallery-stalker-orb {
  position: absolute;
  z-index: 1;
  right: 70%;
  bottom: 8.5%;
  width: 34%;
  animation: orb-float 4.8s ease-in-out infinite, orb-radiation 2.9s ease-in-out infinite;
  filter:
    drop-shadow(0 0 12px rgba(87, 224, 255, 0.78))
    drop-shadow(0 0 34px rgba(87, 224, 255, 0.42))
    drop-shadow(0 0 70px rgba(87, 224, 255, 0.22));
  transform-origin: 50% 50%;
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.025); }
}

@keyframes orb-radiation {
  0%, 100% {
    opacity: 0.86;
    filter:
      drop-shadow(0 0 10px rgba(87, 224, 255, 0.7))
      drop-shadow(0 0 30px rgba(87, 224, 255, 0.36))
      drop-shadow(0 0 62px rgba(87, 224, 255, 0.18));
  }
  50% {
    opacity: 1;
    filter:
      drop-shadow(0 0 18px rgba(115, 238, 255, 0.98))
      drop-shadow(0 0 48px rgba(87, 224, 255, 0.62))
      drop-shadow(0 0 96px rgba(87, 224, 255, 0.34));
  }
}

.gallery-heading {
  padding-bottom: 36px;
}

.gallery-heading h2 {
  max-width: 920px;
}

.masonry-gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(170px, 240px));
  gap: clamp(14px, 2vw, 24px);
}

.masonry-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(245, 245, 231, 0.14);
  background: #14160f;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.masonry-item::after {
  content: "Agrandir";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--black);
  background: var(--signal);
  padding: 6px 9px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.masonry-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.masonry-item:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.masonry-item.tall {
  grid-row: span 2;
}

.masonry-item.wide {
  grid-column: 1 / -1;
}

.video-section {
  position: relative;
  isolation: isolate;
  background: #11140e url("assets/illus/Emission.jpg") center top / cover no-repeat;
}

.video-section::before {
  content: none;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.video-heading h2 {
  margin-bottom: 18px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245, 245, 231, 0.18);
  background: #000;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.buy-section {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 6vw, 76px);
  overflow: hidden;
  background: #151511 url("assets/Texture beton.jpg") center / cover;
}

.buy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 6, 0.80), rgba(6, 8, 6, 0.20), rgba(6, 8, 6, 0.10)),
    linear-gradient(0deg, rgba(6, 8, 6, 0.80), rgba(6, 8, 6, 0.10));
}

.buy-section #buy-title{
	color: white !important;
}

.buy-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(260px, 0.62fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.buy-copy h2 {
  margin-bottom: 22px;
}

.price {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

.buy-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 15px 22px;
  color: var(--black);
  background: var(--signal);
  border: 1px solid rgba(0, 0, 0, 0.24);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.buy-button:hover {
  background: var(--acid);
}

.box-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.box-visual::before {
  content: "";
  position: absolute;
  width: min(82%, 410px);
  height: 22%;
  bottom: 3%;
  left: 12%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 70%);
  filter: blur(16px);
  transform: rotate(-4deg);
}

.box-visual img {
  position: relative;
  width: min(100%, 360px);
  transform: rotate(7deg);
  filter: drop-shadow(22px 34px 22px rgba(0, 0, 0, 0.46)) drop-shadow(0 5px 0 rgba(0, 0, 0, 0.22));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 46px);
  background: rgba(3, 4, 3, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(245, 245, 231, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.64);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--signal);
  border: 0;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 22px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-family: "IBM Plex Mono", monospace;
  font-size: 28px;
  font-weight: 800;
}

.lightbox-prev {
  left: clamp(12px, 3vw, 34px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 34px);
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  max-width: min(720px, 82vw);
  margin: 0;
  color: rgba(245, 245, 231, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  padding: 72px clamp(20px, 6vw, 76px) 44px;
  color: var(--white);
  background: #050604;
  border-top: 1px solid rgba(243, 181, 28, 0.35);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 52px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(243, 181, 28, 0.32);
  align-items: start;
}

.footer-logo {
  width: min(260px, 70vw);
  margin-bottom: 18px;
  left: -5px;
  position: relative;
}


.footer-credit {
  max-width: 360px;
  margin: 0;
  color: rgba(245, 245, 231, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-warn {
  max-width: 480px;
  margin: 0;
  color: rgba(245, 245, 231, 0.56);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-warn strong {
  color: var(--signal);
}

.ft-h {
  display: block;
  margin-bottom: 20px;
  color: var(--signal);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ft-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-ul li {
  margin-bottom: 12px;
}

.ft-ul a {
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.ft-ul a:hover {
  opacity: 0.55;
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-ver {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
}

.footer-ver {
  color: var(--signal);
  letter-spacing: 0.1em;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    max-width: 480px;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 11px;
  }

  .hero-bg {
    object-position: -10% 60%;
  }

  .hero::before {
    width: 100%;
    background: linear-gradient(0deg, rgba(4, 6, 4, 0.92) 0%, rgba(4, 6, 4, 0.66) 42%, rgba(4, 6, 4, 0) 86%);
  }

  .zone-grid,
  .raid-layout,
  .video-layout,
  .buy-inner {
    grid-template-columns: 1fr;
  }

  .zone-left {
    order: 2;
  }

  .zone-art {
    min-height: 520px;
  }

  .zone-stalker {
    width: min(42vw, 260px);
    right: -40px;
    opacity: 0.55;
  }

  .gallery-stalker {
    width: min(48vw, 360px);
    opacity: 0.78;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .card-stack {
    min-height: 470px;
  }

  .card-stack img {
    width: 44vw;
    min-width: 150px;
  }

  .card-stack img:nth-child(2) {
    left: 28%;
  }

  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    display: flex;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .brand {
    width: 176px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-top: 2px;
  }

  nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 16px;
    display: none;
    width: min(78vw, 300px);
    max-width: none;
    margin-top: 0;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    color: var(--black);
    background: var(--signal);
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
  }

  .site-header.is-menu-open nav {
    display: flex;
  }

  nav a {
    min-height: 34px;
    justify-content: center;
    color: var(--black);
    text-shadow: none;
  }

  nav a:hover {
    color: var(--black);
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-buy {
    min-height: 34px;
    padding: 0 8px;
    background: var(--black);
    color: var(--signal);
    border-color: rgba(0, 0, 0, 0.45);
  }

  .nav-skwid,
  .nav-lang {
    min-height: 34px;
  }

  .nav-skwid {
    border-color: rgba(0, 0, 0, 0.52);
  }

  .nav-lang {
    justify-content: center;
    color: rgba(0, 0, 0, 0.78);
  }

  .nav-lang .lang-active {
    color: var(--black);
  }

  .lang-sep {
    color: rgba(0, 0, 0, 0.48);
  }

  .hero {
    min-height: 94vh;
    padding-top: 150px;
  }

  .hero-bg {
    object-position: 48% 50%;
  }

  h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .hero-facts span {
    min-height: 36px;
    font-size: 12px;
  }

  .card-stack {
    min-height: 380px;
  }

  .card-stack img {
    min-width: 132px;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .masonry-item,
  .masonry-item.tall {
    grid-row: auto;
    min-height: 260px;
  }

  .masonry-item.wide {
    grid-column: auto;
  }

  .zone-art {
    min-height: 420px;
  }

  .zone-stalker {
    display: none;
  }

  .gallery-stalker {
    display: none;
  }

  .box-visual img {
    width: min(90%, 300px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
