/* =========================================================================
   CrazNeax - crazneax.com media kit
   Brand: monochrome streetwear-drop (source of truth: the CrazNeax brand
   guide extracted from shop.crazneax.com). Alternating .t-dark / .t-light
   sections swap the same semantic tokens, so every component works on
   either theme. No colour without meaning: grey scale for structure,
   official platform/brand marks are the only colour on the page.
   ========================================================================= */

@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---- fixed tokens ---- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 44px);
  --header-h: 62px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --display: "Anton", "Arial Narrow", "Roboto Condensed", var(--font);
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* ---- default palette = DARK ---- */
  --bg: #0b0b0d;
  --surface: #141417;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .18);
  --ink: #f4f4f5;
  --ink-soft: #a6a6ad;
  --ink-faint: #8b8b93;
  --btn-bg: #ffffff;
  --btn-fg: #0a0a0b;
  --ghost-fg: #f4f4f5;
  --ghost-hover: rgba(255, 255, 255, .06);
  --ok: #57d69a;
  --glow: rgba(255, 255, 255, .06);
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 20px 60px rgba(0, 0, 0, .5);
}

.t-dark {
  --bg: #0b0b0d; --surface: #141417;
  --line: rgba(255, 255, 255, .10); --line-strong: rgba(255, 255, 255, .18);
  --ink: #f4f4f5; --ink-soft: #a6a6ad; --ink-faint: #8b8b93;
  --btn-bg: #ffffff; --btn-fg: #0a0a0b;
  --ghost-fg: #f4f4f5; --ghost-hover: rgba(255, 255, 255, .06);
  --ok: #57d69a;
  --glow: rgba(255, 255, 255, .06);
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 20px 60px rgba(0, 0, 0, .5);
}

.t-light {
  --bg: #f3f3f1; --surface: #ffffff;
  --line: rgba(0, 0, 0, .10); --line-strong: rgba(0, 0, 0, .16);
  --ink: #101012; --ink-soft: #55555b; --ink-faint: #6b6b71;
  --btn-bg: #0a0a0b; --btn-fg: #ffffff;
  --ghost-fg: #101012; --ghost-hover: rgba(0, 0, 0, .05);
  --ok: #1f8f57;
  --glow: rgba(0, 0, 0, .04);
  --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 18px 50px rgba(0, 0, 0, .10);
}

/* ---------------- Base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 78px; }

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3 { margin: 0; }
p { margin: 0 0 1rem; }
ul { margin: 0; }

.display {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  line-height: .92; letter-spacing: .005em;
}
h1.display { font-size: clamp(2.6rem, 11vw, 5.4rem); }
h2.display { font-size: clamp(1.9rem, 5.5vw, 3rem); }
h3 { font-size: 1.1rem; font-weight: 600; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 11vw, 130px); background: var(--bg); color: var(--ink); }
.section--tight { padding-block: clamp(40px, 7vw, 80px); }

.eyebrow {
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 1rem;
}
.lede { font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }
.section-head { margin-bottom: clamp(28px, 5vw, 48px); }
.section-head .lede { margin-top: 1.1rem; }

.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: #000; padding: 12px 18px; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------------- Header (always dark, floating) ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 11, 13, .72); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .10); color: #f4f4f5;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { font-weight: 700; letter-spacing: .02em; font-size: .98rem; text-transform: uppercase; color: #f4f4f5; white-space: nowrap; }
.brand span { color: rgba(244, 244, 245, .62); font-weight: 600; }
.brand:hover { text-decoration: none; }

.header-cta {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .20); padding: 9px 18px; border-radius: var(--radius-full); color: #f4f4f5;
  transition: background .2s var(--ease), color .2s var(--ease);
  line-height: 1.2; white-space: nowrap;
}
.header-cta:hover { background: #fff; color: #000; text-decoration: none; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a:not(.header-cta) {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: rgba(244, 244, 245, .78); white-space: nowrap;
}
.site-nav a:not(.header-cta):hover { color: #fff; text-decoration: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 11px; background: transparent;
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 9px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #f4f4f5; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 11, 13, .98); backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding: 6px var(--gutter) 18px; display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.header-cta) { padding: 15px 2px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .site-nav .header-cta { margin-top: 14px; align-self: flex-start; }
}

/* ---------------- Buttons & chips ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bg);
  font: inherit; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 0 30px; height: 50px; border-radius: var(--radius-full); cursor: pointer;
  transition: transform .12s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}
.btn:hover { text-decoration: none; opacity: .9; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ghost-fg); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ghost-hover); opacity: 1; }

.chip {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-full);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------------- Hero (media kit) ---------------- */
.hero { padding-top: clamp(32px, 6vw, 70px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% 30% auto -20%; height: 600px;
  background: radial-gradient(closest-side, var(--glow), transparent 70%); pointer-events: none;
}
.hero__grid { display: grid; gap: clamp(28px, 5vw, 60px); grid-template-columns: 1fr; align-items: center; position: relative; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr .85fr; } }
.hero__collab {
  display: inline-block; font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700; margin-bottom: 1.1rem;
}
.hero__tagline { color: var(--ink-soft); font-size: clamp(1.02rem, 2.2vw, 1.18rem); margin-top: 1.3rem; max-width: 46ch; }
.hero__actions { display: flex; align-items: center; gap: 14px; margin-top: 1.8rem; flex-wrap: wrap; }

/* Hero photo: floats with a hairline frame + caption bar */
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); max-width: 460px; }
@media (max-width: 899px) { .hero__media { margin-inline: auto; } }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #f2f2f4;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent); pointer-events: none;
}
.hero__media-cap small { font-weight: 600; font-size: .64rem; letter-spacing: .14em; color: rgba(244, 244, 245, .75); }

/* Big numerals (hero stats, audience totals) */
.stats { display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 44px); margin-top: 2rem; }
.stat { min-width: 84px; }
.stat__num { display: block; font-family: var(--display); font-size: clamp(1.9rem, 5vw, 2.9rem); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__lbl { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; font-weight: 600; }

/* Live-status dot (Twitch-Partner style signal) */
.status { display: inline-flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--ink-soft); font-weight: 500; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px color-mix(in srgb, var(--ok) 20%, transparent); }

/* ---------------- Two-column copy (about) ---------------- */
.split { display: grid; gap: clamp(24px, 4vw, 56px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr .75fr; align-items: start; } }
.copy p { color: var(--ink-soft); }
.copy strong { color: var(--ink); font-weight: 600; }

/* Spec list - hairline rows, borderless table */
.specs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.specs > li, .specs > div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 2px; border-bottom: 1px solid var(--line); }
.specs .k { color: var(--ink-faint); font-weight: 500; }
.specs .v { font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }

/* ---------------- Card grids ---------------- */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; background: var(--surface); }
.card--row { display: flex; align-items: center; gap: 16px; }
.card__icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; }
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em; }
.card__sub { color: var(--ink-soft); font-size: .88rem; margin-top: 2px; }
.card__num { font-size: .7rem; letter-spacing: .2em; color: var(--ink-faint); font-weight: 700; margin-bottom: 14px; display: block; }
.card p:last-child { margin-bottom: 0; }
.card__desc { color: var(--ink-soft); font-size: .95rem; }

/* ---------------- Platform cards ---------------- */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.pcard {
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px;
  background: var(--surface); transition: transform .15s var(--ease), border-color .15s var(--ease);
}
.pcard:hover { transform: translateY(-3px); text-decoration: none; border-color: var(--line-strong); }
.pcard__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pcard__head svg { width: 20px; height: 20px; flex: none; }
.pcard__name { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); }
.pcard__num { font-family: var(--display); font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1; font-variant-numeric: tabular-nums; }
.pcard__meta { color: var(--ink-faint); font-size: .84rem; margin-top: 6px; }

/* ---------------- Brand wall ---------------- */
.bgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 22px 16px; }
.btile { display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform .15s var(--ease); }
a.btile:hover { transform: translateY(-3px); text-decoration: none; }
.btile__logo {
  width: 100%; aspect-ratio: 1 / 1; max-width: 128px;
  border-radius: var(--radius); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  /* gradient instead of a solid fill: Samsung dark mode inverts solid
     backgrounds on light tiles but leaves gradients alone */
  background: linear-gradient(#ffffff, #ffffff);
}
.btile__logo img { width: 68%; height: 68%; object-fit: contain; }
.btile__logo img.zoom { width: 90%; height: 90%; }
.btile__logo.dark-bg { background: linear-gradient(#0d0d0d, #0d0d0d); }
.btile__logo.black-bg { background: linear-gradient(#000000, #000000); }
.btile__logo.charcoal-bg { background: linear-gradient(#121212, #121212); }
.btile__logo.night-bg { background: linear-gradient(#050505, #050505); }
.btile__logo.teal-bg { background: linear-gradient(#00ead0, #00ead0); }
.btile__name { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); text-align: center; }

/* ---------------- Audience bars ---------------- */
.audience-cols { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .audience-cols { grid-template-columns: 1fr 1fr; align-items: start; } }

.bars { margin-top: 6px; }
.bar-row { margin-bottom: 13px; }
.bar-label { display: flex; justify-content: space-between; font-size: .84rem; color: var(--ink-soft); margin-bottom: 6px; }
.bar-label span:last-child { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
.bar-track { height: 4px; background: var(--line); border-radius: var(--radius-full); overflow: hidden; }
.bar-fill { height: 100%; background: var(--ink); border-radius: var(--radius-full); }
.bars-caption { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint); margin: 34px 0 16px; }

/* ---------------- Quote / integrity panel ---------------- */
.quote { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; background: var(--surface); max-width: 820px; }
.quote__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint); margin-bottom: 12px; }
.quote p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.quote em { font-style: italic; color: var(--ink); }

/* ---------------- Signature panel (email CTA) ---------------- */
.signature {
  text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px); max-width: 780px; margin-inline: auto;
  background: linear-gradient(180deg, var(--glow), transparent);
}
.signature h2 { margin-bottom: .9rem; }
.signature p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; }
.email-cta-panel .email-cta-address {
  display: inline-block; font-variant-numeric: tabular-nums; font-weight: 600;
  font-size: .96rem; color: var(--ink); border: 1px solid var(--line-strong);
  border-radius: var(--radius-full); padding: 12px 22px; margin: 6px 0 18px;
}
.email-cta-panel .email-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.email-cta-panel .email-cta-response { font-size: .78rem; color: var(--ink-faint); margin-top: 18px; }

/* ---------------- Divider with label ---------------- */
.divider { display: flex; align-items: center; gap: 12px; color: var(--ink-faint); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------------- Tabs (work portfolio) ---------------- */
.wtabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 32px; }
.wtab {
  font: inherit; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; padding: 12px 22px; border-radius: var(--radius-full);
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink-soft);
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.wtab:hover { border-color: var(--ink); color: var(--ink); }
.wtab.is-on { background: var(--ink); border-color: var(--ink); color: var(--bg); }
@media (max-width: 640px) {
  /* bleed to the screen edge so a cut-off chip signals the row scrolls */
  .wtabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .wtabs::-webkit-scrollbar { display: none; }
  .wtab { flex: 0 0 auto; }
}

.work-panel { display: none; }
.work-panel.active { display: block; }

/* ---------------- Video grid ---------------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.video-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #000;
}
.video-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; pointer-events: none;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #f2f2f4;
  background: rgba(11, 11, 13, .78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-full); padding: 6px 12px;
}
.video-frame { position: relative; width: 100%; aspect-ratio: 9 / 15; background: #000; overflow: hidden; }
.video-frame.landscape { aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-to-play poster: cover image + play button, swapped for the player
   iframe only when the visitor clicks. Cards sit on a black surface in both
   themes, so these use fixed dark values like .video-badge does. */
.video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; padding: 0; border: 0; background: #000; cursor: pointer;
}
.video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
  width: 62px; height: 62px; display: grid; place-items: center;
  border-radius: var(--radius-full); color: #fff;
  background: rgba(11, 11, 13, .72); border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.video-play svg { width: 26px; height: 26px; }
.video-poster:hover .video-play,
.video-poster:focus-visible .video-play { background: #fff; border-color: #fff; color: #0b0b0d; }
.video-out {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 16px; font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #f2f2f4;
  background: #0b0b0d; border-top: 1px solid rgba(255, 255, 255, .14);
}
.video-out:hover { color: #fff; }
.video-out svg { width: 12px; height: 12px; flex: none; }
@media (max-width: 1000px) {
  .video-grid { justify-items: center; }
  .video-card { max-width: 340px; width: 100%; }
}
@media (max-width: 520px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------------- Contact detail rows ---------------- */
.contact-rows { border-top: 1px solid var(--line); margin-top: 8px; }
.contact-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 17px 2px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.contact-row .k { color: var(--ink-faint); font-weight: 500; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-row .v { font-weight: 600; text-align: right; word-break: break-word; }

/* ---------------- Footer (dark) ---------------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(44px, 7vw, 76px); background: var(--bg); color: var(--ink); }
.footer__grid { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: space-between; align-items: flex-start; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 10px; }
.footer__links a { color: var(--ink-soft); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__links a:hover { color: var(--ink); }
.footer__legal { color: var(--ink-faint); font-size: .84rem; margin-top: 22px; }
.footer__legal a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------------- Cookie consent bar (injected by consent.js) ----------------
   Floats over both light and dark sections, so it keeps fixed dark styling,
   same as the shop's consent bar. */
.consent {
  position: fixed; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 120;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  width: min(640px, calc(100vw - 24px));
  background: #141417; color: #d6d6dc; border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px; padding: 14px 18px; font-size: .82rem; line-height: 1.5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}
.consent p { margin: 0; flex: 1 1 260px; }
.consent__actions { display: flex; gap: 8px; flex: none; margin-left: auto; }
.consent__btn {
  font: inherit; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: #ffffff; color: #000000; border: 1px solid #ffffff; border-radius: var(--radius-full);
  padding: 9px 18px; cursor: pointer; transition: opacity .2s var(--ease), background .2s var(--ease);
}
.consent__btn:hover { opacity: .9; }
.consent__btn--ghost { background: transparent; color: #f4f4f5; border-color: rgba(255, 255, 255, .24); }
.consent__btn--ghost:hover { background: rgba(255, 255, 255, .06); opacity: 1; }

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