/* =========================================================================
   PIXELHALL — PC gaming computer club (dark theme)
   Layout: A — boxed-1200 (classic; pixel friezes full-bleed)
   Spacing scale: airy (128px / 72px ; 64px mobile)
   No rounded corners: the pixel does not round.
   ========================================================================= */

:root {
  /* palette */
  --c-bg:        #101018;   /* dark, main */
  --c-bg-2:      #16161f;   /* raised dark panel */
  --c-bg-light:  #eceaf2;   /* light, used sparingly */
  --c-ink:       #eceaf2;   /* text on dark */
  --c-ink-inv:   #101018;   /* text on light */
  --c-muted:     #9a98ac;   /* muted text on dark */
  --c-a1:        #8b5cf6;   /* pixel violet */
  --c-a2:        #fbbf24;   /* amber pixel */
  --c-line:      #2b2b3a;   /* hairline on dark */

  /* fonts */
  --f-display: "Handjet", system-ui, sans-serif;
  --f-body:    "Atkinson Hyperlegible", system-ui, sans-serif;

  /* radius / borders */
  --r-card: 0px;
  --bd: 2px solid currentColor;

  /* spacing scale (8px step) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* airy vertical rhythm */
  --sec-y: 128px;
  --sec-y-mobile: 64px;

  --w-container: 1200px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.u-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-a1); color: #fff; padding: 12px 18px; z-index: 200;
}
.u-skip:focus { left: 8px; top: 8px; }

.container {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) { .container { padding-inline: 16px; } }

/* ---- typography ---- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 var(--s-3);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(40px, 7vw, 92px); }
.section__title { font-size: clamp(30px, 4.5vw, 54px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

.eyebrow, .hero__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-a1);
  margin: 0 0 var(--s-2);
}

/* a single glyph drops one pixel down — signature untidiness */
.drop { display: inline-block; transform: translateY(6px); color: var(--c-a2); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border: 2px solid var(--c-a1);
  border-radius: 0;
  color: var(--c-ink);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.btn--primary {
  background: var(--c-a1);
  color: #0c0715;
  box-shadow: 4px 4px 0 #4c2e8f;   /* stepped pixel shadow, no blur */
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #4c2e8f;   /* pressed pixel */
}
.btn--ghost {
  border-color: var(--c-ink);
  box-shadow: 4px 4px 0 var(--c-line);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--c-line);
  background: rgba(236,234,242,0.06);
}

/* ---- sections ---- */
.section { padding-block: var(--sec-y); }
@media (max-width: 768px) { .section { padding-block: var(--sec-y-mobile); } }

.section--light {
  background: var(--c-bg-light);
  color: var(--c-ink-inv);
}
.section--light .eyebrow { color: #6d3fd6; }
.section--light .drop { color: #b8860b; }

.section__head { max-width: 720px; margin-bottom: var(--s-6); }
.section__intro { color: var(--c-muted); font-size: 18px; }
.section--light .section__intro { color: #4a4a5a; }

/* ---- pixel friezes (full-bleed strips at joins) ---- */
.pixel-frieze {
  height: 16px;
  width: 100%;
  background-image:
    linear-gradient(90deg, var(--c-a1) 25%, transparent 0),
    linear-gradient(90deg, transparent 50%, var(--c-a2) 0, var(--c-a2) 62.5%, transparent 0);
  background-size: 32px 16px, 128px 16px;
  background-repeat: repeat-x;
  opacity: 0.9;
}
.pixel-frieze--divider {
  background-image:
    linear-gradient(90deg, var(--c-line) 25%, transparent 0),
    linear-gradient(90deg, transparent 75%, var(--c-a1) 0, var(--c-a1) 87.5%, transparent 0);
  background-size: 24px 16px, 96px 16px;
  opacity: 0.7;
}
/* frieze draws in square by square on reveal */
.pixel-frieze.is-drawn { animation: friezeDraw 700ms steps(8) both; }
@keyframes friezeDraw { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

/* =========================================================================
   NAV — transparent-to-frosted
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 18px 32px;
  background: transparent;
  transition: background 200ms ease, padding 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(16,16,24,0.82);
  backdrop-filter: blur(12px);
  padding-block: 10px;
  border-bottom-color: var(--c-line);
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 2px;
}
.nav__pix { width: 9px; height: 9px; }
.nav__pix--a { background: var(--c-a1); }
.nav__pix--b { background: var(--c-a2); }
.nav__pix--c { background: var(--c-a2); }
.nav__pix--d { background: var(--c-a1); }
.nav__name {
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 0.9;
  color: var(--c-ink);
}
.nav__badge {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-a1);
  margin-top: 3px;
}
.nav__links { display: flex; gap: var(--s-4); }
.nav__links a {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--c-ink);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: var(--c-a2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 860px) {
  .nav { padding-inline: 16px; }
  .nav__links { display: none; }
}

/* =========================================================================
   HERO — stacked device mockup + Pixel Assemble
   ========================================================================= */
.s-hero {
  position: relative;
  padding-top: 116px;
  padding-bottom: 0;
  background: var(--c-bg);
  overflow: hidden;
}
.hero__mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--c-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: calc(100% / 12) calc(100% / 6), calc(100% / 12) calc(100% / 6);
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 20%, #000 40%, transparent 85%);
  mask-image: radial-gradient(120% 80% at 50% 20%, #000 40%, transparent 85%);
}
.hero__inner { position: relative; z-index: 1; padding-bottom: 72px; }
.hero__eyebrow { color: var(--c-a2); }
.hero__title { position: relative; margin-bottom: var(--s-4); min-height: 1.05em; }
.hero__title-plain { display: inline-block; transition: opacity 220ms ease; }
/* assembled pixel layer sits over the plain text; JS crossfades between the
   readable text (resting state) and the pixel field (during the animation). */
.hero__title.is-assembling .hero__title-plain { opacity: 0; }
.hero__title-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 220ms ease;
}
.hero__title:not(.is-assembling) .hero__title-canvas { opacity: 0; }
.hero__title .pix-piece {
  position: absolute;
  will-change: transform, opacity;
}
.hero__lede { max-width: 620px; font-size: 19px; color: var(--c-muted); }
.hero__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-5); }

.hero__counter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: var(--s-6);
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-4);
}
.hero__counter-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 88px);
  color: var(--c-a1);
  line-height: 0.8;
}
.hero__counter-unit {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.hero__stack {
  position: relative;
  margin-top: var(--s-6);
  height: clamp(300px, 42vw, 480px);
}
.hero__card {
  position: absolute;
  margin: 0;
  border: 2px solid var(--c-ink);
  background: var(--c-bg-2);
  box-shadow: 8px 8px 0 rgba(139,92,246,0.35);
}
.hero__card img { filter: contrast(1.08) saturate(1.05); }
.hero__card figcaption {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 8px 12px;
}
.hero__card--front {
  width: clamp(240px, 34vw, 400px);
  left: 0; top: 20px;
  z-index: 2;
  /* pixelated right edge via clip-path stair mask */
  clip-path: polygon(0 0, 92% 0, 92% 8%, 96% 8%, 96% 16%, 100% 16%, 100% 100%, 0 100%);
}
.hero__card--back {
  width: clamp(200px, 28vw, 320px);
  right: 0; top: 0;
  z-index: 1;
  opacity: 0.92;
}
@media (max-width: 720px) {
  .hero__stack { height: auto; display: grid; gap: var(--s-3); }
  .hero__card { position: static; width: 100% !important; clip-path: none; }
}

/* =========================================================================
   HALLS
   ========================================================================= */
.halls__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.hall-card {
  border: 2px solid var(--c-line);
  background: var(--c-bg-2);
  box-shadow: 6px 6px 0 rgba(139,92,246,0.25);
}
.hall-card__media { overflow: hidden; border-bottom: 2px solid var(--c-line); }
.hall-card__media img { filter: contrast(1.08) saturate(1.04); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.hall-card__body { padding: var(--s-4); }
.hall-card__num {
  display: inline-flex;
  gap: 4px;
  margin-bottom: var(--s-2);
}
.hall-card__num b {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #0c0715;
  background: var(--c-a2);
  padding: 2px 8px;
}
.hall-card p { color: var(--c-muted); }
@media (max-width: 768px) { .halls__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   THE WALL — booking mosaic
   ========================================================================= */
.wall__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-6);
  align-items: center;
}
.wall__copy p { color: var(--c-muted); }
.wall__legend {
  list-style: none;
  display: flex;
  gap: var(--s-4);
  padding: 0;
  margin: var(--s-4) 0 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.wall__legend li { display: flex; align-items: center; gap: 8px; }
.swatch { width: 16px; height: 16px; display: inline-block; }
.swatch--free { background: var(--c-bg-2); border: 1px solid var(--c-line); }
.swatch--taken { background: var(--c-a1); box-shadow: 0 0 8px rgba(139,92,246,0.9); }

.wall__mosaic-wrap {
  border: 2px solid var(--c-line);
  background: #0b0b12;
  padding: 14px;
  box-shadow: 8px 8px 0 rgba(139,92,246,0.28);
}
.wall__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  aspect-ratio: 12 / 6;
}
.wall__cell {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  transition: background 500ms ease, box-shadow 500ms ease;
}
.wall__cell.is-taken {
  background: var(--c-a1);
  border-color: var(--c-a1);
  box-shadow: 0 0 10px rgba(139,92,246,0.85);
}
.wall__cell.is-taken.is-amber {
  background: var(--c-a2);
  border-color: var(--c-a2);
  box-shadow: 0 0 10px rgba(251,191,36,0.85);
}
@media (max-width: 768px) { .wall__layout { grid-template-columns: 1fr; } }

/* =========================================================================
   RATES
   ========================================================================= */
.rates__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.rate {
  border: 2px solid var(--c-ink-inv);
  background: #fff;
  padding: var(--s-4);
  box-shadow: 5px 5px 0 #d8d4e6;
}
.rate--feature { background: #101018; color: var(--c-ink); border-color: var(--c-a1); box-shadow: 5px 5px 0 var(--c-a1); }
.rate--feature h3 { color: var(--c-ink); }
.rate--feature p { color: var(--c-muted); }
.rate h3 { margin-bottom: var(--s-2); }
.rate__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: var(--s-2); }
.rate__amt { font-family: var(--f-display); font-weight: 700; font-size: 38px; }
.rate--feature .rate__amt { color: var(--c-a2); }
.rate__per { font-size: 13px; color: #4a4a5a; letter-spacing: 0.04em; }
.rate--feature .rate__per { color: var(--c-muted); }
.rate p { font-size: 15px; color: #4a4a5a; }
.rates__note { margin-top: var(--s-5); font-size: 14px; color: #4a4a5a; }
@media (max-width: 900px) { .rates__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rates__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   STATS BAND — full-bleed photo
   ========================================================================= */
.s-band { position: relative; overflow: hidden; }
.band__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05) brightness(0.7);
}
.band__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,16,24,0.82), rgba(16,16,24,0.7));
}
.band__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  padding-block: var(--sec-y);
}
.band__stat b {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--c-a2);
  line-height: 0.9;
}
.band__stat span {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink);
}
@media (max-width: 768px) { .band__stats { grid-template-columns: repeat(2, 1fr); padding-block: var(--sec-y-mobile); } }

/* =========================================================================
   HOUSE PIXELS
   ========================================================================= */
.house__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.house-tile {
  border: 2px solid var(--c-line);
  background: var(--c-bg-2);
  padding: var(--s-4);
  position: relative;
}
.house-tile::before {
  content: "";
  position: absolute; top: -2px; left: -2px;
  width: 14px; height: 14px;
  background: var(--c-a1);
}
.house-tile h3 { font-size: 22px; margin-bottom: var(--s-2); }
.house-tile p { color: var(--c-muted); font-size: 15px; }
@media (max-width: 900px) { .house__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .house__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   BUILD LOG
   ========================================================================= */
.log__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-5); }
.log-entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--s-5);
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-4);
}
.log-entry time {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--c-a1);
}
.log-entry h3 { margin-bottom: var(--s-2); }
.log-entry p { color: var(--c-muted); }
@media (max-width: 700px) { .log-entry { grid-template-columns: 1fr; gap: var(--s-2); } }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.gallery__item { margin: 0; border: 2px solid var(--c-line); background: var(--c-bg-2); }
.gallery__item img { filter: contrast(1.08) saturate(1.05); aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.gallery__item figcaption {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-muted); padding: 10px 12px;
}
@media (max-width: 768px) { .gallery__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq__layout { display: grid; grid-template-columns: 340px 1fr; gap: var(--s-6); align-items: start; }
.faq__list { display: grid; gap: var(--s-2); }
.faq-item {
  border: 2px solid var(--c-ink-inv);
  background: #fff;
  box-shadow: 4px 4px 0 #d8d4e6;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--s-3) var(--s-4);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: #6d3fd6; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 var(--s-4) var(--s-3); color: #4a4a5a; font-size: 15.5px; }
@media (max-width: 820px) { .faq__layout { grid-template-columns: 1fr; } }

/* =========================================================================
   BOOK FORM
   ========================================================================= */
.book__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-6); align-items: start; }
.book__intro p { color: var(--c-muted); font-size: 18px; }
.book__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  border: 2px solid var(--c-line);
  background: var(--c-bg-2);
  padding: var(--s-5);
  box-shadow: 8px 8px 0 rgba(139,92,246,0.28);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-muted); }
.field input, .field select {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-ink);
  background: #0c0c14;
  border: 2px solid var(--c-line);
  border-radius: 0;
  padding: 12px 14px;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-a1);
  box-shadow: 0 0 0 1px var(--c-a1);
}
.field input.snake { animation: snakeRun 700ms steps(3) 1; }
@keyframes snakeRun {
  0%   { box-shadow: -3px -3px 0 -1px var(--c-a2); }
  33%  { box-shadow:  3px -3px 0 -1px var(--c-a2); }
  66%  { box-shadow:  3px  3px 0 -1px var(--c-a2); }
  100% { box-shadow: -3px  3px 0 -1px var(--c-a2); }
}
.book__submit { grid-column: 1 / -1; justify-self: start; margin-top: var(--s-2); }
.book__status { grid-column: 1 / -1; margin: 0; font-weight: 700; }
.book__status.success { color: var(--c-a2); }
.book__status.error { color: #ff7a7a; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 820px) { .book__layout { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .book__form { grid-template-columns: 1fr; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #0b0b12; border-top: 2px solid var(--c-line); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: var(--s-5);
  padding-block: var(--s-6);
}
.footer__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
  color: var(--c-ink);
}
.footer__tag { color: var(--c-muted); font-size: 14px; margin-top: var(--s-2); }
.footer__col h4 { color: var(--c-a1); margin-bottom: var(--s-3); }
.footer__col a { display: block; text-decoration: none; color: var(--c-ink); font-size: 14px; margin-bottom: 8px; }
.footer__col a:hover { color: var(--c-a2); }
.footer__col p { color: var(--c-muted); font-size: 14px; margin-bottom: 6px; }
.footer__col--contact address { font-style: normal; color: var(--c-muted); font-size: 14px; }
.footer__col--contact a { display: inline; margin: 0; }

.footer__bottom { border-top: 1px solid var(--c-line); }
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-4);
}
.footer__disclaimer {
  margin: 0;
  font-weight: 700;
  color: var(--c-a2);
  font-size: 14px;
}
.footer__legal { display: flex; gap: var(--s-3); }
.footer__legal a { color: var(--c-ink); font-size: 14px; text-decoration: none; }
.footer__legal a:hover { color: var(--c-a2); }
.footer__copy { margin: 0; color: var(--c-muted); font-size: 13px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   COOKIE BANNER
   ========================================================================= */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  background: var(--c-bg-2);
  border: 2px solid var(--c-a1);
  box-shadow: 6px 6px 0 rgba(139,92,246,0.4);
  padding: 16px 20px;
  max-width: 900px;
  margin-inline: auto;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { margin: 0; font-size: 14px; color: var(--c-ink); flex: 1 1 320px; }
.cookie-banner__text a { color: var(--c-a2); }
.cookie-banner__btn { padding: 10px 22px; }

/* =========================================================================
   MOTION LAYER
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

/* counter assemble */
.hero__counter-num.is-counting { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title.is-assembling .hero__title-plain { opacity: 1; }
  .drop { transform: none; }
  .btn--primary:hover, .btn--ghost:hover { transform: none; }
}
