/* Violet — Club 21 homepage concept. Graphite with purple; sleek, minimal, spacious. */

:root {
  --bg: #0E0E12;
  --surface: #17171D;
  --surface-2: #1F1F27;
  --border: #2A2A35;
  --text: #F5F5F7;
  --muted: #9C9CAF;
  --accent: #7C5CFF;
  --accent-2: #A78BFA;
  --win: #4ADE80;

  --font-head: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-card: 16px;
  --r-tile: 12px;
  --r-pill: 999px;

  --container: 1280px;
  --gutter: 16px;
  --gap: 16px;
  --section: 56px;
  --tile-w: 148px;
  --topbar-h: 64px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 180ms;
}

@media (min-width: 768px) {
  :root { --gutter: 24px; --gap: 18px; --tile-w: 172px; --section: 72px; }
}
@media (min-width: 1200px) {
  :root { --gutter: 32px; --gap: 20px; --tile-w: 196px; --section: 88px; }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 15px/1.5 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; margin: 0; }
h2 { font-size: 22px; line-height: 1.2; }
h3 { font-size: 18px; line-height: 1.25; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
svg { display: block; }

:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -48px; z-index: 100; padding: 10px 14px; background: var(--accent); color: #fff; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* Shared primitives */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}
.eyebrow {
  display: inline-block;
  font: 600 12px/1 var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.link {
  color: var(--accent-2);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.link:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: 10px;
  font: 600 15px/1 var(--font-head);
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; font-weight: 700; }
.btn--primary:hover { background: var(--accent-2); color: #0E0E12; }
.btn--ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--accent-2); }
.btn--lg { height: 48px; padding: 0 26px; font-size: 16px; }
.btn:active { transform: translateY(1px); }

/* 1. Top bar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 14, 18, .72);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.logo__mark { width: 30px; height: 30px; }
.logo__word { font: 700 19px/1 var(--font-head); letter-spacing: -0.02em; }
.logo__word span { color: var(--accent-2); }

.topbar__nav { display: none; align-items: center; gap: 4px; }
.topbar__nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.topbar__nav a:hover { color: var(--text); background: var(--surface-2); }
.topbar__nav a.is-active { color: var(--text); }
.topbar__nav-lang { display: none; }

.search {
  display: none; align-items: center; gap: 8px;
  flex: 1 1 auto; max-width: 320px; height: 40px;
  margin-left: auto;
  padding: 0 12px 0 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  transition: border-color var(--dur) var(--ease);
}
.search:focus-within { border-color: var(--accent-2); color: var(--text); }
.search svg { width: 18px; height: 18px; flex: 0 0 auto; }
.search input { flex: 1 1 auto; min-width: 0; background: none; border: 0; outline: 0; color: var(--text); }
.search input::placeholder { color: var(--muted); }
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.lang {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.lang:hover, .lang[aria-expanded="true"] { color: var(--text); background: var(--surface-2); }
.lang svg { width: 18px; height: 18px; }
.lang .chev { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.lang[aria-expanded="true"] .chev { transform: rotate(180deg); }
.topbar__lang, .footer__lang, .topbar__nav-lang { position: relative; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 180px;
  padding: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}
.lang__menu--up { top: auto; bottom: calc(100% + 8px); left: 0; right: auto; }
.lang__menu li {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
}
.lang__menu li:hover { background: var(--surface); color: var(--text); }
.lang__menu li[aria-selected="true"] { color: var(--text); }
.lang__menu li[aria-selected="true"]::after { content: "✓"; float: right; color: var(--accent-2); }

.topbar__lang { display: none; }
.topbar__auth { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.topbar__auth .btn { height: 38px; padding: 0 14px; }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}
.menu-btn svg { width: 20px; height: 20px; }

/* Mobile drawer: nav drops down under the bar */
.topbar__nav.is-open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; left: var(--gutter); right: var(--gutter); top: calc(var(--topbar-h) + 8px);
  padding: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}
.topbar__nav.is-open a { padding: 12px 14px; font-size: 16px; }
.topbar__nav.is-open .topbar__nav-lang { display: block; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
.topbar__nav.is-open .lang { width: 100%; justify-content: flex-start; }
.topbar__nav.is-open .lang__menu { position: static; box-shadow: none; border: 0; padding: 0 0 4px 0; background: transparent; }

@media (min-width: 640px) {
  .search { display: flex; margin-left: auto; }
  .topbar__auth { margin-left: 0; }
}
@media (min-width: 1024px) {
  .topbar__nav { display: flex; }
  .topbar__lang { display: block; }
  .menu-btn { display: none; }
  .topbar__nav.is-open { position: static; flex-direction: row; padding: 0; background: none; border: 0; box-shadow: none; }
  .topbar__nav.is-open .topbar__nav-lang { display: none; }
}

/* 2. Hero */
.hero { position: relative; padding-top: 24px; }
.hero__glow {
  position: absolute; left: 50%; top: -120px; z-index: -1;
  width: 900px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(124, 92, 255, .32), rgba(124, 92, 255, 0));
  pointer-events: none;
}
.hero__banner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
  padding: 28px 24px 0;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}
.hero__copy { position: relative; z-index: 1; }
.hero h1 { font-size: 30px; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero__plus { display: block; color: var(--accent-2); }
.hero__copy p { color: var(--muted); font-size: 16px; max-width: 42ch; }
.hero__actions { display: flex; align-items: center; gap: 20px; margin-top: 22px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: var(--muted); font-size: 13px; font-weight: 500; }
.hero__facts li { position: relative; padding-left: 14px; }
.hero__facts li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero__stack {
  position: relative; height: 240px; margin: 4px -24px 0;
  overflow: hidden;
}
.stack__tile {
  position: absolute; bottom: -40px;
  width: 150px;
  border-radius: var(--r-tile);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, .55), 0 0 0 4px rgba(124, 92, 255, .12), 0 24px 48px rgba(0, 0, 0, .55), 0 0 60px rgba(124, 92, 255, .25);
  transition: transform 400ms var(--ease);
}
.stack__tile img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.stack__tile--back  { left: 50%; transform: translateX(-140%) rotate(-8deg); bottom: -30px; opacity: .9; }
.stack__tile--mid   { left: 50%; transform: translateX(40%) rotate(8deg); bottom: -30px; opacity: .9; }
.stack__tile--front { left: 50%; transform: translateX(-50%) translateY(-12px); z-index: 2; }

@media (min-width: 768px) {
  .hero { padding-top: 32px; }
  .hero__banner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: center; padding: 44px 44px 44px; gap: 32px; min-height: 380px; }
  .hero h1 { font-size: 40px; }
  .hero__stack { height: 300px; margin: 0; overflow: visible; }
  .stack__tile { width: 176px; bottom: auto; top: 50%; }
  .stack__tile--back  { left: 50%; transform: translate(-118%, -46%) rotate(-9deg); }
  .stack__tile--mid   { left: 50%; transform: translate(18%, -46%) rotate(9deg); }
  .stack__tile--front { left: 50%; transform: translate(-50%, -58%); }
  .hero__banner:hover .stack__tile--back { transform: translate(-126%, -48%) rotate(-11deg); }
  .hero__banner:hover .stack__tile--mid  { transform: translate(26%, -48%) rotate(11deg); }
  .hero__banner:hover .stack__tile--front { transform: translate(-50%, -62%); }
}
@media (min-width: 1200px) {
  .hero__banner { padding: 56px 56px; min-height: 420px; }
  .hero h1 { font-size: 46px; }
  .hero__stack { height: 340px; }
  .stack__tile { width: 200px; }
}

.hero__entries {
  display: grid; grid-template-columns: 1fr; gap: var(--gap);
  margin-top: var(--gap);
}
.entry {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 112px; align-items: center; gap: 16px;
  padding: 22px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.entry:hover { border-color: var(--accent); transform: translateY(-2px); }
.entry h2 { font-size: 20px; margin-bottom: 8px; }
.entry p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.entry .link { font-size: 14px; }
.entry__art {
  width: 112px; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--r-tile);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, .35), 0 12px 30px rgba(0, 0, 0, .5);
  transform: rotate(4deg);
  transition: transform 300ms var(--ease);
}
.entry:hover .entry__art { transform: rotate(0deg) scale(1.03); }
@media (min-width: 768px) {
  .hero__entries { grid-template-columns: 1fr 1fr; }
  .entry { grid-template-columns: 1fr 128px; padding: 28px 28px; }
  .entry__art { width: 128px; }
}

/* 3. Category chips */
.chips { margin-top: var(--section); margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter)); }
.chips__track {
  display: flex; gap: 8px;
  padding: 4px var(--gutter);
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.chips__track::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  height: 38px; padding: 0 16px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font: 600 14px/1 var(--font-head);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--accent-2); }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* 4. Game rows */
.row { margin-top: 40px; }
.row__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.row__tools { display: flex; align-items: center; gap: 16px; }
.row__arrows { display: none; gap: 6px; }
.arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.arrow:hover { color: var(--text); border-color: var(--accent-2); }
.arrow svg { width: 16px; height: 16px; }
@media (min-width: 768px) { .row__arrows { display: flex; } }

.row__track {
  display: flex; gap: var(--gap);
  margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter));
  padding: 4px var(--gutter) 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.row__track::-webkit-scrollbar { display: none; }
.row__track:focus-visible { outline-offset: -2px; }

.tile {
  flex: 0 0 var(--tile-w);
  scroll-snap-align: start;
  display: block;
}
.tile__art {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-tile);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.tile__art img { width: 100%; height: 100%; object-fit: cover; }
.tile:hover .tile__art, .tile:focus-visible .tile__art {
  transform: translateY(-4px);
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, .5), 0 16px 36px rgba(0, 0, 0, .5), 0 0 32px rgba(124, 92, 255, .22);
}
.tile__name, .tile__provider { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.tile__name { margin-top: 10px; font: 600 14px/1.3 var(--font-head); color: var(--text); }
.tile__provider { margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.tile__badge {
  position: absolute; left: 10px; top: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  height: 22px; padding: 0 8px;
  border-radius: var(--r-pill);
  background: rgba(14, 14, 18, .8);
  border: 1px solid var(--border);
  font: 600 11px/1 var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tile__badge i { width: 6px; height: 6px; border-radius: 50%; background: #F87171; }

/* 5. Live bets */
.bets { margin-top: var(--section); overflow: hidden; }
.bets__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.bets h2 { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--win); box-shadow: 0 0 0 4px rgba(74, 222, 128, .18); }
.tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; }
.tab {
  height: 32px; padding: 0 14px;
  border-radius: 7px;
  color: var(--muted);
  font: 600 13px/1 var(--font-head);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.tab:hover { color: var(--text); }
.tab.is-active { background: var(--surface-2); color: var(--text); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bets__table { width: 100%; min-width: 620px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.bets__table th, .bets__table td { padding: 14px 20px; text-align: left; white-space: nowrap; }
.bets__table th { font: 600 12px/1 var(--font-head); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.bets__table td { border-top: 1px solid var(--border); font-size: 14px; }
.bets__table td:first-child { font-weight: 500; }
.bets__table td:nth-child(2) { color: var(--muted); }
.bets__table th:nth-child(n+3), .bets__table td:nth-child(n+3) { text-align: right; }
.bets__table td.win { color: var(--win); font-weight: 500; }
.bets__table td.lose { color: var(--muted); }
.bets__table tbody tr { transition: background-color var(--dur) var(--ease); }
.bets__table tbody tr:hover { background: rgba(255, 255, 255, .02); }

/* 6. Promotions */
.promos { margin-top: var(--section); }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.promos__grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.promo { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; transition: border-color var(--dur) var(--ease); }
.promo:hover { border-color: var(--accent); }
.promo h3 { font-size: 20px; margin-bottom: 8px; }
.promo p { color: var(--muted); font-size: 14px; margin-bottom: 20px; flex: 1 1 auto; }
@media (min-width: 768px) { .promos__grid { grid-template-columns: repeat(3, 1fr); } .promo { padding: 28px; } }

/* 7. VIP */
.vip { margin-top: var(--section); padding: 24px; overflow: hidden; position: relative; }
.vip__head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 16px; }
.vip h2 { font-size: 24px; margin-bottom: 8px; }
.vip__head p { color: var(--muted); max-width: 56ch; }
.ladder { margin-top: 32px; }
.ladder__bar { position: relative; height: 6px; border-radius: 3px; background: var(--surface-2); overflow: hidden; }
.ladder__fill { position: absolute; inset: 0 auto 0 0; width: var(--progress, 0%); border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.ladder__tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 14px; }
.ladder__tiers li { position: relative; display: flex; flex-direction: column; gap: 4px; }
.ladder__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--surface-2); border: 2px solid var(--border); margin-bottom: 4px; }
.ladder__tiers li.is-reached .ladder__dot { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(167, 139, 250, .18); }
.ladder__tiers strong { font: 600 14px/1.2 var(--font-head); }
.ladder__tiers li.is-reached strong { color: var(--accent-2); }
.ladder__tiers span:last-child { color: var(--muted); font-size: 12.5px; line-height: 1.4; }
@media (max-width: 767px) {
  .ladder__tiers { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
  .ladder__tiers span:last-child { display: none; }
  .ladder__tiers strong { font-size: 12px; }
}
@media (min-width: 768px) { .vip { padding: 36px; } .vip h2 { font-size: 28px; } }

/* 8. Payments */
.payments { margin-top: var(--section); display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.payments__coins { padding: 24px; }
.payments__coins h2 { font-size: 18px; margin-bottom: 18px; }
.coins { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.coins li { display: inline-flex; align-items: center; gap: 10px; font: 600 14px/1 var(--font-head); }
.coin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent-2);
  font: 700 15px/1 var(--font-head);
}
.coin--card { border-radius: 8px; width: 40px; height: 28px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.facts li { display: flex; flex-direction: column; gap: 6px; padding: 18px; }
.facts strong { font: 600 15px/1.3 var(--font-head); }
.facts span { color: var(--muted); font-size: 13.5px; line-height: 1.45; }
@media (min-width: 1024px) {
  .payments { grid-template-columns: 1fr 1.4fr; align-items: start; }
  .facts { grid-template-columns: 1fr 1fr; }
}

/* 9. Providers */
.providers { margin-top: var(--section); padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.providers ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; }
.providers li { font: 700 16px/1 var(--font-head); letter-spacing: -0.01em; color: var(--muted); opacity: .8; transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.providers li:hover { color: var(--text); opacity: 1; }

/* 10. Footer */
.footer { margin-top: var(--section); padding: 48px 0 32px; background: var(--surface); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.footer__brand { grid-column: 1 / -1; max-width: 360px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin: 14px 0 18px; }
.footer__brand .lang { background: var(--surface-2); border: 1px solid var(--border); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h3 { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 14px; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
}
.footer__age { display: flex; align-items: center; gap: 12px; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--muted);
  font: 700 12px/1 var(--font-head);
  color: var(--text);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr repeat(4, 1fr); }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .hero__banner:hover .stack__tile--back, .hero__banner:hover .stack__tile--mid, .hero__banner:hover .stack__tile--front,
  .entry:hover, .entry:hover .entry__art, .tile:hover .tile__art { transform: none; }
}
