/* ===========================================================================
   HYPERDEN — Flagship PC Arena
   LAYOUT SCHEME: C — full-bleed-grid (12-col grid from screen edges,
                  visible 1px grid lines, gutter 24px / 16px mobile, no max-width)
   SPACING SCALE: airy (sections 128px / inner blocks 72px; 64px mobile)
   Tokens live in :root. Do not mix container schemes inside this site.
   =========================================================================== */

:root {
  /* palette */
  --c-bg: #edf0f4;          /* light surface */
  --c-bg-dark: #0c0f14;     /* obsidian dark surface */
  --c-ink: #0c0f14;         /* ink on light */
  --c-ink-inv: #edf0f4;     /* ink on dark */
  --c-a1: #3b82f6;          /* electric blue accent */
  --c-a2: #a3e635;          /* lime status accent */
  --c-line: rgba(59,130,246,0.35);      /* hairline border */
  --c-line-grid: rgba(59,130,246,0.07); /* visible grid lines */
  --c-muted: rgba(237,240,244,0.62);    /* muted ink on dark */
  --c-muted-l: rgba(12,15,20,0.62);     /* muted ink on light */

  /* type */
  --f-display: "Unbounded", system-ui, sans-serif;
  --f-body: "Instrument Sans", system-ui, sans-serif;

  /* radii */
  --r-card: 12px;

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

  /* airy section rhythm */
  --sec-y: 128px;
  --blk-y: 72px;

  /* grid */
  --gutter: 24px;
  --cols: 12;
}

@media (max-width: 768px) {
  :root {
    --sec-y: 64px;
    --blk-y: 48px;
    --gutter: 16px;
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; margin: 0; line-height: 1.08; }
p { margin: 0; }

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- full-bleed grid container ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  column-gap: var(--gutter);
  padding-inline: var(--gutter);
  position: relative;
}
/* visible 1px grid lines through the page */
.grid::before {
  content: "";
  position: absolute; inset: 0;
  margin-inline: var(--gutter);
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    var(--c-line-grid) 0, var(--c-line-grid) 1px,
    transparent 1px, transparent calc((100% - 11 * var(--gutter)) / 12 + var(--gutter))
  );
  z-index: 0;
}

/* section base */
.s { padding-block: var(--sec-y); position: relative; }
.s--dark { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.s--light { background: var(--c-bg); color: var(--c-ink); }

/* light-strip motif — thin horizontal aisle light between/along sections */
.light-strip {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(to right,
    transparent 0%, var(--c-a1) 18%, var(--c-a2) 50%, var(--c-a1) 82%, transparent 100%);
  opacity: 0.55;
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-a1);
  display: inline-flex; align-items: center; gap: var(--s-1);
  margin-bottom: var(--s-2);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-a2);
  box-shadow: 0 0 8px var(--c-a2);
}

.station-code {
  font-family: var(--f-body);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: var(--s-1);
}
.station-code::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-a2); box-shadow: 0 0 8px var(--c-a2);
}

.lede { color: var(--c-muted); max-width: 62ch; }
.s--light .lede { color: var(--c-muted-l); }

.icon { width: 24px; height: 24px; stroke: currentColor; fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-1);
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-card);
  border: 1px solid transparent; cursor: pointer;
  transition: box-shadow 220ms ease, background-position 600ms ease, color 200ms ease;
}
.btn--primary {
  color: #fff; border-color: var(--c-a1);
  background: linear-gradient(120deg, var(--c-a1) 0%, var(--c-a1) 45%,
              #6aa2ff 50%, var(--c-a1) 55%, var(--c-a1) 100%);
  background-size: 260% 100%; background-position: 100% 0;
}
.btn--primary:hover { background-position: 0 0; box-shadow: 0 0 0 1px var(--c-a2); }
.btn--ghost {
  color: currentColor; border-color: var(--c-line);
  background: transparent;
}
.btn--ghost:hover { box-shadow: 0 0 0 1px var(--c-a1); }
.btn .icon { width: 18px; height: 18px; }

/* accent text link with light-tick */
.tlink {
  position: relative; display: inline-block; padding-left: 12px;
  color: var(--c-a1); font-weight: 600;
}
.tlink::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 14px; background: var(--c-a2);
  transition: height 220ms ease, width 220ms ease, transform 220ms ease;
}
.tlink:hover::before { height: 2px; width: 100%; top: auto; bottom: -2px; transform: none; }

/* ---------- NAV — nav-transparent-frost ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  padding: 18px var(--gutter);
  color: var(--c-ink-inv);
  transition: background 260ms ease, backdrop-filter 260ms ease, padding 260ms ease, box-shadow 260ms ease;
}
.nav--frosted {
  background: rgba(12,15,20,0.82);
  backdrop-filter: blur(12px);
  padding-block: 12px;
  box-shadow: inset 0 -1px 0 0 var(--c-line);
}
.nav__logo {
  font-family: var(--f-display); font-weight: 600; font-size: 20px;
  letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 10px;
}
.nav__logo .mono {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 8px; background: var(--c-a1); color: #fff; font-size: 16px;
}
.nav__links { display: flex; align-items: center; gap: var(--s-4); }
.nav__links a {
  font-size: 14px; letter-spacing: 0.02em; position: relative;
  padding-left: 10px; color: var(--c-ink-inv);
}
.nav__links a::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 12px; background: var(--c-a2); opacity: 0;
  transition: opacity 200ms ease, height 200ms ease;
}
.nav__links a:hover::before { opacity: 1; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--c-a1);
  background: rgba(59,130,246,0.18); transition: box-shadow 220ms ease, background 220ms ease;
}
.nav__cta:hover { box-shadow: 0 0 0 1px var(--c-a2); background: rgba(59,130,246,0.32); }
.nav__cta .icon { width: 16px; height: 16px; }
.nav__burger { display: none; background: none; border: 0; color: inherit; cursor: pointer; }
.nav__burger .icon { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12,15,20,0.96); backdrop-filter: blur(12px);
    padding: var(--s-3) var(--gutter); gap: var(--s-3);
    box-shadow: inset 0 -1px 0 0 var(--c-line);
  }
  .nav__burger { display: inline-flex; }
}

/* ---------- HERO — hero-split-media ---------- */
.hero {
  min-height: 100vh; display: grid; align-items: stretch;
  grid-template-columns: 1fr 1fr;
  background: var(--c-bg-dark); color: var(--c-ink-inv);
  position: relative; overflow: hidden;
}
.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--gutter) var(--sec-y) var(--gutter);
  position: relative; z-index: 2;
}
.hero__text .inner { max-width: 640px; margin-left: auto; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px); letter-spacing: -0.01em;
  margin: var(--s-3) 0 var(--s-3);
}
.hero h1 .lime { color: var(--c-a2); }
.hero__sub { color: var(--c-muted); font-size: 18px; max-width: 48ch; margin-bottom: var(--s-5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.hero__stats { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.hero__stat .num { font-family: var(--f-display); font-weight: 600; font-size: clamp(28px,3.4vw,40px); }
.hero__stat .cap {
  display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-muted); margin-top: 4px;
}

.hero__media { position: relative; }
.hero__media img { width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06) saturate(1.05); }
/* darken toward text + light-strip seam */
.hero__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--c-bg-dark) 0%, rgba(12,15,20,0.35) 22%, transparent 55%);
}
.hero__media::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--c-a1), var(--c-a2), var(--c-a1), transparent);
  opacity: 0.7;
}

/* hero aisle-light-run animation layer */
.hero__aisle {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero__aisle svg { width: 100%; height: 100%; }
.hero__aisle .aisle-line { stroke: var(--c-a1); stroke-width: 1; opacity: 0.16; }
.hero__aisle .aisle-run {
  stroke: var(--c-a2); stroke-width: 1.5; opacity: 0;
  stroke-dasharray: 40 800; stroke-dashoffset: 0;
}
@keyframes aisleRun {
  0% { opacity: 0; stroke-dashoffset: 0; }
  8% { opacity: 0.9; }
  40% { opacity: 0.9; }
  60% { opacity: 0; stroke-dashoffset: -840; }
  100% { opacity: 0; stroke-dashoffset: -840; }
}
.hero__aisle .aisle-run { animation: aisleRun 7s ease-in-out infinite; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { min-height: 46vh; order: -1; }
  .hero__media::before {
    background: linear-gradient(0deg, var(--c-bg-dark) 0%, transparent 60%);
  }
  .hero__text { padding-top: 120px; }
  .hero__text .inner { margin: 0; }
}

/* ---------- SECTION HEADING BLOCK (grid-broken) ---------- */
.s__head { grid-column: 1 / -1; margin-bottom: var(--blk-y); }
.s__head h2 { font-size: clamp(26px, 4vw, 44px); margin-bottom: var(--s-3); max-width: 20ch; }

/* ---------- FLOORS — dark cards ---------- */
.floors__grid { grid-column: 1 / -1; display: grid; gap: var(--s-3);
  grid-template-columns: repeat(3, 1fr); }
.floor-card {
  position: relative; border: 1px solid var(--c-line); border-radius: var(--r-card);
  overflow: hidden; background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column;
}
.floor-card__media { position: relative; aspect-ratio: 4 / 3; }
.floor-card__media img { width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06) saturate(1.04); }
.floor-card__body { padding: var(--s-3); display: flex; flex-direction: column; gap: var(--s-2);
  flex: 1; }
.floor-card__body h3 { font-size: 22px; }
.floor-card__body p { color: var(--c-muted); font-size: 15px; }
.floor-card__spec { display: flex; gap: var(--s-4); margin-top: auto; padding-top: var(--s-2); }
.floor-card__spec span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-muted); }
.floor-card__spec b { color: var(--c-ink-inv); font-family: var(--f-display); }
/* bottom light-strip in status color */
.floor-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--c-a2), transparent);
}
.floor-card--pro::after { background: linear-gradient(to right, transparent, var(--c-a1), transparent); }

@media (max-width: 860px) { .floors__grid { grid-template-columns: 1fr; } }

/* ---------- RATES — light tickets ---------- */
.rates__list { grid-column: 1 / -1; display: flex; flex-direction: column; gap: var(--s-2); }
.ticket {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-3);
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-3) var(--s-4); background: #fff;
}
.ticket__name { font-family: var(--f-display); font-weight: 600; font-size: 20px; }
.ticket__desc { display: block; font-family: var(--f-body); font-weight: 400; font-size: 13px;
  color: var(--c-muted-l); margin-top: 2px; letter-spacing: 0; text-transform: none; }
.ticket__perf {
  height: 2px; align-self: center;
  background-image: radial-gradient(circle, var(--c-a1) 1.1px, transparent 1.3px);
  background-size: 12px 2px; background-repeat: repeat-x; opacity: 0.7;
  min-width: 40px;
}
.ticket__price { font-family: var(--f-display); font-weight: 600; font-size: 22px; white-space: nowrap; }
.ticket__price small { font-family: var(--f-body); font-weight: 400; font-size: 12px;
  color: var(--c-muted-l); text-transform: uppercase; letter-spacing: 0.1em; }
.rates__note { grid-column: 1 / -1; margin-top: var(--s-4); color: var(--c-muted-l); max-width: 66ch; }

@media (max-width: 640px) {
  .ticket { grid-template-columns: 1fr auto; }
  .ticket__perf { display: none; }
}

/* ---------- HARDWARE — dark, band bg ---------- */
.hardware { position: relative; overflow: hidden; }
.hardware__band {
  position: absolute; inset: 0; z-index: 0;
}
.hardware__band img { width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06) saturate(1.05) brightness(0.42); }
.hardware__band::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,15,20,0.86), rgba(12,15,20,0.94)); }
.hardware > .s__head, .hardware > .spec-rows { position: relative; z-index: 1; }
.spec-rows { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3); }
.spec-block {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4); background: rgba(12,15,20,0.55);
}
.spec-block h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; margin-bottom: var(--s-3); }
.spec-block h3 .icon { width: 20px; height: 20px; color: var(--c-a1); }
.spec-line { display: flex; justify-content: space-between; gap: var(--s-2);
  padding: 8px 0; border-bottom: 1px solid rgba(59,130,246,0.14); font-size: 14px; }
.spec-line:last-child { border-bottom: 0; }
.spec-line .k { color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; }
.spec-line .v { color: var(--c-ink-inv); font-family: var(--f-display); }
@media (max-width: 720px) { .spec-rows { grid-template-columns: 1fr; } }

/* ---------- ARENA LIFE — light, numbered steps ---------- */
.steps { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
.step { position: relative; padding-top: var(--s-4); }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 2px;
  background: linear-gradient(to right, var(--c-a1), var(--c-a2)); }
.step .idx { font-family: var(--f-display); font-weight: 600; font-size: 13px; color: var(--c-a1);
  letter-spacing: 0.14em; }
.step h3 { font-size: 18px; margin: var(--s-2) 0 var(--s-1); }
.step p { color: var(--c-muted-l); font-size: 15px; }
.step .icon { width: 22px; height: 22px; color: var(--c-a1); margin-bottom: var(--s-1); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* night rules block sits within arena life */
.night { grid-column: 1 / -1; margin-top: var(--blk-y);
  border: 1px solid var(--c-line); border-radius: var(--r-card); padding: var(--s-5);
  background: #fff; display: grid; grid-template-columns: 1fr 2fr; gap: var(--s-4); }
.night h3 { font-size: 22px; }
.night .station-code { color: var(--c-a1); margin-top: var(--s-2); }
.night p { color: var(--c-muted-l); }
@media (max-width: 720px) { .night { grid-template-columns: 1fr; } }

/* ---------- GALLERY — dark ---------- */
.gallery__grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-3); }
.shot { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--c-line); }
.shot img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: contrast(1.06) saturate(1.05); }
.shot figcaption {
  position: absolute; left: var(--s-2); bottom: var(--s-2);
  font-family: var(--f-body); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-ink-inv); background: rgba(12,15,20,0.7); padding: 5px 9px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 7px;
}
.shot figcaption::before { content:""; width:6px;height:6px;border-radius:50%;
  background: var(--c-a2); box-shadow: 0 0 6px var(--c-a2); }
@media (max-width: 720px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ — light ---------- */
.faq__list { grid-column: 1 / -1; max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: var(--s-3) 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  font-family: var(--f-display); font-weight: 600; font-size: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 22px; height: 22px; color: var(--c-a1); flex: none;
  transition: transform 260ms ease; }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item p { padding: 0 0 var(--s-3); color: var(--c-muted-l); max-width: 72ch; }

/* ---------- FORM — dark ---------- */
.book { position: relative; }
.book__grid { grid-column: 1 / -1; display: grid; grid-template-columns: 5fr 7fr; gap: var(--s-6);
  align-items: start; }
.book__intro h2 { font-size: clamp(26px, 4vw, 44px); margin-bottom: var(--s-3); }
.book__intro p { color: var(--c-muted); max-width: 42ch; }
.book__intro .station-code { color: var(--c-a1); margin-top: var(--s-4); }

form.book-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-muted); display: inline-flex; align-items: center; gap: 7px; }
.field label .dot { width: 7px; height: 7px; border-radius: 50%;
  background: rgba(163,230,53,0.3); transition: background 200ms ease, box-shadow 200ms ease; }
.field input, .field select {
  font-family: var(--f-body); font-size: 15px; color: var(--c-ink-inv);
  background: rgba(255,255,255,0.03); border: 1px solid var(--c-line);
  border-radius: var(--r-card); padding: 12px 14px; width: 100%;
  transition: box-shadow 200ms ease;
}
.field input::placeholder { color: rgba(237,240,244,0.4); }
.field input:focus, .field select:focus { outline: none; box-shadow: 0 0 0 1px var(--c-a2); }
.field:focus-within label .dot { background: var(--c-a2); box-shadow: 0 0 8px var(--c-a2); }
.field select { appearance: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.book-form__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: var(--s-3);
  flex-wrap: wrap; }
#formStatus { font-size: 14px; margin: 0; }
#formStatus.success { color: var(--c-a2); }
#formStatus.error { color: #ff6b6b; }
@media (max-width: 760px) { .book__grid { grid-template-columns: 1fr; } form.book-form { grid-template-columns: 1fr; } }

/* ---------- FOOTER — footer-cta-repeat ---------- */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.footer__cta {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap; padding-bottom: var(--blk-y);
  border-bottom: 1px solid var(--c-line); margin-bottom: var(--blk-y);
}
.footer__cta h2 { font-size: clamp(26px, 4vw, 40px); max-width: 18ch; }
.footer__cols { grid-column: 1 / -1; display: grid; grid-template-columns: 2fr 1.4fr 1fr; gap: var(--s-5); }
.footer__brand .nav__logo { color: var(--c-ink-inv); margin-bottom: var(--s-3); }
.footer__brand p { color: var(--c-muted); font-size: 14px; max-width: 34ch; }
.footer h4 { font-family: var(--f-body); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-a1); margin-bottom: var(--s-3); }
.footer__contact li, .footer__nav a { display: flex; align-items: center; gap: 10px;
  color: var(--c-muted); font-size: 14px; padding: 5px 0; }
.footer__contact { list-style: none; margin: 0; padding: 0; }
.footer__contact .icon { width: 18px; height: 18px; color: var(--c-a1); flex: none; }
.footer__contact a:hover, .footer__nav a:hover { color: var(--c-ink-inv); }
.footer__nav { display: flex; flex-direction: column; }
.footer__nav a::before { content: none; }
.footer__bottom {
  grid-column: 1 / -1; margin-top: var(--blk-y); padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  flex-wrap: wrap; font-size: 13px; color: var(--c-muted);
}
.footer__disclaimer {
  grid-column: 1 / -1; margin-top: var(--s-3);
  font-size: 14px; color: var(--c-ink-inv); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.footer__disclaimer::before { content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-a2); box-shadow: 0 0 8px var(--c-a2); flex: none; }
@media (max-width: 860px) { .footer__cols { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ---------- COOKIE CONSENT ---------- */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(12,15,20,0.96); backdrop-filter: blur(10px);
  color: var(--c-ink-inv); border-top: 1px solid var(--c-line);
  padding: var(--s-3) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  flex-wrap: wrap;
  transform: translateY(0); transition: transform 300ms ease;
}
.cookie[hidden] { display: none; }
.cookie p { font-size: 14px; color: var(--c-muted); max-width: 70ch; margin: 0; }
.cookie p a { color: var(--c-a1); }
.cookie__actions { display: flex; gap: var(--s-2); flex: none; }
.cookie .btn { padding: 9px 18px; font-size: 14px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none;
  transition: opacity 560ms ease, transform 560ms ease; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__aisle .aisle-run { animation: none; }
  .btn, .tlink::before, .nav { transition: none; }
}

/* ---------- legal pages ---------- */
.legal { background: var(--c-bg); color: var(--c-ink); min-height: 100vh; }
.legal__head {
  padding: 26px var(--gutter); border-bottom: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
}
.legal__wrap { max-width: 760px; margin-inline: auto; padding: var(--sec-y) var(--gutter); }
.legal__wrap h1 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: var(--s-2); }
.legal__wrap > h1 + .light-strip { max-width: 120px; margin: var(--s-2) 0 var(--s-5); }
.legal__wrap .meta { color: var(--c-muted-l); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: var(--s-5); }
.legal__wrap h2 { font-size: 20px; margin: var(--s-6) 0 var(--s-2);
  display: flex; align-items: baseline; gap: 10px; }
.legal__wrap h2 .no { color: var(--c-a1); font-size: 14px; font-family: var(--f-body);
  letter-spacing: 0.14em; }
.legal__wrap p { color: var(--c-muted-l); margin-bottom: var(--s-2); }
.legal__wrap a.tlink { color: var(--c-a1); }
.legal__foot {
  border-top: 1px solid var(--c-line); padding: var(--s-5) var(--gutter);
  text-align: center;
}
.legal__foot .footer__disclaimer { justify-content: center; color: var(--c-ink);
  grid-column: auto; margin-top: var(--s-3); }
.legal__foot .legal__links { display: flex; gap: var(--s-3); justify-content: center;
  flex-wrap: wrap; font-size: 14px; }
