/* ============================================================
   RADIO GROUP · BOLD PREMIUM EDITORIAL
   ------------------------------------------------------------
   Biele plátno na takmer čiernom pozadí (rám 8px / 6px mobil),
   Archivo variable (display 800 / condensed wdth 72), plné
   monochromatické plochy, značkové farby len ako bloky.
   Žiadne gradienty vo výplniach; foto overlay = statická rgba.
   Animácie výhradne transform + opacity (nikdy filter).
   ============================================================ */

:root {
  --bg: #101014;
  --ink: #111213;
  --paper: #FFFFFF;
  --gray: #F2F2F3;
  --line: rgba(0, 0, 0, .1);
  --fun: #E60469;
  --vlna: #E7220E;
  --inset: 8px;
  --r-sheet: 18px;
  --r-card: 24px;
  --r-photo: 18px;
  --pad-x: clamp(20px, 4vw, 56px);
  --gutter: clamp(20px, 2.5vw, 36px);
}

@media (max-width: 1023.98px) {
  :root { --inset: 6px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: var(--inset);
  background: var(--bg);
  color: var(--ink);
  font-family: 'Satoshi', 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

::selection { background: var(--fun); color: #fff; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--fun); outline-offset: 3px; }

/* sekcie s kotvami nesmú končiť pod fixnou navigáciou */
#radia, #cisla, #case, #kontakt, #znacky, #preco, #tim { scroll-margin-top: 84px; }

/* ---------- typografické rezy ---------- */
/* Satoshi v ľahkom reze: veľké nadpisy majú tenké, čisté línie */
.display {
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.cond {
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  font-variation-settings: 'wdth' 72;
  font-weight: 700;
  text-transform: uppercase;
}
.num { font-variant-numeric: lining-nums tabular-nums; }

.microlabel {
  display: block;
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(0, 0, 0, .5);
  margin-bottom: 18px;
}
.microlabel--light { color: rgba(255, 255, 255, .55); }
.sec-title { font-size: clamp(40px, 5.5vw, 92px); letter-spacing: -0.025em; }

/* ---------- FOUC guard (duplikát inline pravidiel v <head>) ---------- */
html.reveal-primed [data-reveal] { opacity: 0; }
html.pile-primed #radia .brand-card--fun, html.pile-primed .pile-ghost { visibility: hidden; }

/* ---------- LOADER · editorial preloader ---------- */
html.is-loading, html.is-intro { overflow: hidden; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  color: #fff;
  display: none;
  will-change: transform;
}
html.is-loading .loader { display: block; }
.loader-mark {
  position: absolute;
  top: 26px;
  left: 32px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.loader-tag {
  position: absolute;
  top: 58px;
  left: 32px;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .5);
}
.loader-count {
  position: absolute;
  right: 24px;
  bottom: 10px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -0.03em;
  font-size: clamp(96px, 17vw, 230px);
}
.loader-pct { color: var(--fun); }
.loader-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .12);
}
.loader-bar i {
  position: absolute;
  inset: 0;
  background: var(--fun);
  transform-origin: 0 50%;
  transform: scaleX(0);
}
@media (max-width: 1023.98px) {
  .loader-mark { left: 22px; top: 22px; }
  .loader-tag { left: 22px; top: 52px; }
  .loader-count { right: 16px; }
}

/* ---------- biele plátno + fixný tmavý rám ---------- */
.sheet {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-sheet);
  overflow: clip;
  min-height: calc(100svh - 2 * var(--inset));
}
.frame {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  border: var(--inset) solid var(--bg);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-sheet);
  box-shadow: 0 0 0 calc(var(--inset) + 12px) var(--bg);
}

/* ---------- pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.pill--ink { background: var(--ink); color: #fff; }
.pill--big { padding: 15px 30px; font-size: 16px; }
.pill:hover { transform: translateY(-2px); }

/* ---------- navigácia ---------- */
.nav {
  position: fixed;
  top: var(--inset);
  left: var(--inset);
  right: var(--inset);
  z-index: 80;
  background: var(--paper);
  border-radius: var(--r-sheet) var(--r-sheet) 0 0;
}
.nav::after {
  content: "";
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transition: opacity .35s ease;
}
.nav--scrolled::after { opacity: 1; }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px var(--pad-x);
}
/* tri fragmenty pri wordmarku: rovnaká veľkosť, výška názvu */
.nav-brand { display: flex; align-items: center; gap: 12px; }
.mark-sign { display: flex; align-items: center; gap: 5px; }
.mark-sign i {
  display: block;
  width: 13px;
  height: 13px;
}
.ms-fun { background: var(--fun); border-radius: 999px 999px 3px 3px; }
.ms-vlna { background: var(--vlna); border-radius: 50% 0 50% 50%; }
.ms-ink { background: var(--ink); border-radius: 50%; }

.wordmark {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(0, 0, 0, .72);
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* ---------- fullscreen menu (mobil) ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--paper);
  display: none;
  flex-direction: column;
  padding: calc(var(--inset) + 14px) calc(var(--inset) + 18px);
}
body.menu-open .menu { display: flex; }
body.menu-open { overflow: hidden; }
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
}
.menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.menu-links { display: flex; flex-direction: column; gap: 6px; padding-top: 12px; }
.menu-links a {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(38px, 10vw, 64px);
  text-decoration: none;
  color: var(--ink);
}

/* ---------- HERO ---------- */
.hero { position: relative; }
.hero-pin { min-height: 100svh; }
.hero-head {
  text-align: center;
  padding: clamp(110px, 17svh, 190px) var(--pad-x) clamp(44px, 7svh, 80px);
  will-change: transform;
}
.hero-title {
  font-size: clamp(64px, 11vw, 170px);
  color: var(--ink);
}
.hero-title .plus { color: var(--fun); }
/* maskované riadky pre intro po loaderi (padding kryje spodný ťah "g") */
.hero-title .hl {
  display: block;
  overflow: clip;
  padding-bottom: .12em;
  margin-bottom: -.12em;
}
.hero-title .hl-in { display: inline-block; will-change: transform; }
.hero-sub {
  max-width: 620px;
  margin: 28px auto 0;
  font-size: 17px;
  color: rgba(0, 0, 0, .68);
}
.hero-cta { margin-top: 30px; }

/* ---------- RÁDIÁ · značkové karty ---------- */
.radia {
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* HERO SCÉNA (aktivuje rg.js na desktope): animuje sa LEN prvá karta.
   Fun je full-bleed blok 100svh hneď za hero; scrub ju vytiahne z kopy
   a prekryje ňou celú obrazovku (radius 24 → 0). Vlna a Digital sú
   obyčajné karty v toku pod ňou, bez animácie. Kopu na štarte dopĺňajú
   dekoratívne "duchovia" (červená a čierna platňa), ktoré sa pri
   vyťahovaní stratia. */
html.stage-on .hero-pin { height: 100svh; min-height: 0; }
html.stage-on .radia {
  position: relative;
  padding: var(--gutter) 0;
}
html.stage-on .brand-card { margin: 0 var(--gutter); }
html.stage-on .brand-card--fun {
  position: relative;
  z-index: 2;
  will-change: transform;
}
.pile-ghost { display: none; }
html.stage-on .pile-ghost {
  display: block;
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: var(--gutter);
  height: 70vh;
  border-radius: var(--r-card);
  z-index: 1;
  will-change: transform;
}
.pile-ghost--vlna { background: var(--vlna); }
.pile-ghost--digital { background: var(--ink); }
.brand-card {
  position: relative;
  border-radius: var(--r-card);
  padding: clamp(32px, 5vw, 56px);
  min-height: 72vh;
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 48px);
  will-change: transform;
}
.brand-card--fun { background: var(--fun); z-index: 3; }
.brand-card--vlna { background: var(--vlna); z-index: 2; }
.brand-card--digital { background: var(--ink); z-index: 1; }
.brand-card--vlna .bc-photo { order: -1; }

.bc-copy { display: flex; flex-direction: column; min-width: 0; }
.bc-label { font-size: 12px; letter-spacing: .18em; opacity: .8; }
.bc-title { font-size: clamp(48px, 6.5vw, 104px); margin-top: 14px; }
.bc-tag {
  margin-top: 16px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  opacity: .94;
}
.bc-stats {
  margin-top: auto;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bc-num {
  display: block;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(24px, 2.4vw, 38px);
}
.bc-cap {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  opacity: .75;
}
.bc-link {
  margin-top: 30px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.bc-link .ar { transition: transform .3s cubic-bezier(.2, .8, .2, 1); }
.bc-link:hover .ar { transform: translateX(5px); }

.bc-photo {
  position: relative;
  border-radius: var(--r-photo);   /* prepíše tvarová trieda .masked--* */
  overflow: hidden;
  min-height: 320px;
}
.bc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.bc-phones img {
  width: min(44%, 240px);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
}
.bc-phones img:first-child { transform: rotate(4deg) translateX(6%); z-index: 1; }
.bc-phones img:last-child { transform: rotate(-4deg) translateX(-6%); }

.bc-live {
  display: none;
  margin-top: 24px;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}
html.zive-live .bc-live { display: inline-flex; flex-wrap: wrap; }
.bc-chip {
  font-size: 11px;
  letter-spacing: .16em;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 5px 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fun);
  display: inline-block;
  flex: none;
  animation: ldp 1.6s ease-in-out infinite;
}
.cs-cell--black .live-dot, .brand-card--digital .live-dot { background: var(--fun); }
@keyframes ldp {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

/* ---------- FOTOPÁSY ---------- */
.znacky-head { padding: clamp(80px, 10vw, 150px) var(--pad-x) clamp(36px, 5vw, 64px); }
.band {
  position: relative;
  height: 64vh;
  min-height: 380px;
  overflow: hidden;
}
.band-duo {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}
/* statické stmavenie zdola, kde sedí text (nikdy neanimovať filter) */
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%);
}
.band-ol {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: clamp(24px, 4vw, 48px);
  z-index: 1;
  color: #fff;
}
.band-big {
  display: block;
  font-size: clamp(40px, 7vw, 112px);
  line-height: .95;
  letter-spacing: -0.01em;
}
.band-sm {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .16em;
  opacity: .85;
}

/* ---------- ČÍSLA · brand influence bento ---------- */
.cisla { padding: clamp(80px, 10vw, 150px) var(--gutter) clamp(36px, 5vw, 72px); }
.bi-wrap {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.bi-left {
  padding-left: calc(var(--pad-x) - var(--gutter));
  display: flex;
  flex-direction: column;
}
.bi-title {
  font-size: clamp(48px, 6.4vw, 116px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bi-lead {
  margin-top: clamp(20px, 2.4vw, 32px);
  max-width: 420px;
  color: rgba(0, 0, 0, .62);
}
.bi-badge {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}
.bi-badge b,
.bi-badge i {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-style: normal;
}
.bi-badge b { font-weight: 700; }
.bi-badge i { color: rgba(0, 0, 0, .55); }

/* dva nezávislé stĺpce: obidva končia presne na tej istej linke,
   pomery kariet drží flex (7:5 vľavo, 1:1:1 vpravo) */
.bi-grid {
  display: flex;
  gap: 10px;
  min-height: clamp(520px, 52vw, 780px);
}
.bi-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bi-a { flex: 7 1 auto; }
.bi-d { flex: 5 1 auto; }
.bi-b, .bi-c, .bi-e { flex: 1 1 auto; }

.bi-cell {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.bi-num {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: .95;
  font-size: clamp(28px, 2.6vw, 46px);
}
.bi-cap {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(0, 0, 0, .6);
  max-width: 22ch;
}
.bi-sub {
  margin-top: auto;
  padding-top: 20px;
  max-width: 30ch;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(0, 0, 0, .45);
}

/* farebné varianty: ink = skupina, magenta = Fun, červená = Vlna */
.bi-cell--ink { background: var(--ink); color: #fff; }
.bi-cell--fun { background: var(--fun); color: #fff; }
.bi-cell--vlna { background: var(--vlna); color: #fff; }
.bi-cell--live { background: #000; color: #fff; }
.bi-cell--ink .bi-cap, .bi-cell--fun .bi-cap,
.bi-cell--vlna .bi-cap, .bi-cell--live .bi-cap { color: rgba(255, 255, 255, .82); }
.bi-cell--ink .bi-sub, .bi-cell--fun .bi-sub,
.bi-cell--vlna .bi-sub, .bi-cell--live .bi-sub { color: rgba(255, 255, 255, .6); }
.bi-a .bi-num { font-size: clamp(36px, 3.4vw, 60px); }

/* Bauhaus značka v rohu (plochá, bez tieňa) */
.bi-mark {
  position: absolute;
  right: clamp(22px, 2.2vw, 34px);
  bottom: clamp(22px, 2.2vw, 34px);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
}
.bi-mark::after {
  content: "";
  position: absolute;
  inset: 13px;
  background: var(--fun);
}
.bi-mark--kruh::after { border-radius: 50%; }
.bi-mark--drop::after { border-radius: 50% 0 50% 50%; }
.bi-mark--arch::after { border-radius: 999px 999px 6px 6px; }
.bi-mark--vlna::after { background: var(--vlna); }
.bi-mark--ink { background: var(--ink); }
.bi-mark--ink::after { background: #fff; }

.bi-chip {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, .85);
}
.bi-live-on { display: none; }
html.zive-live .bi-live-on { display: block; }
html.zive-live .bi-live-off { display: none; }

.cs-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(0, 0, 0, .5);
}

/* ---------- CASE STUDIES ---------- */
.cases { padding: clamp(80px, 10vw, 150px) var(--pad-x) 0; }
.cases-head { margin-bottom: clamp(28px, 4vw, 48px); }
.case-list { border-bottom: 1px solid var(--line); }
.case-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid var(--line);
}
.case-name {
  flex: 1;
  min-width: 0;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}
.case-meta {
  font-size: 14px;
  color: rgba(0, 0, 0, .55);
  text-align: right;
}
.case-ar {
  color: var(--fun);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  opacity: 0;
  transform: translateX(-14px);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
}
.case-row:hover .case-ar { opacity: 1; transform: none; }

/* ---------- PREČO RÁDIO ---------- */
.why { padding: clamp(80px, 10vw, 150px) var(--pad-x) clamp(40px, 6vw, 80px); }
.why-head { margin-bottom: 8px; }
.why-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-shape {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  vertical-align: -2px;
  background: var(--fun);
}
.why-shape--vlna { background: var(--vlna); }
.why-shape--ink { background: var(--ink); }
.why-num {
  font-size: 14px;
  letter-spacing: .16em;
  color: rgba(0, 0, 0, .45);
  padding-top: 12px;
}
.why-text {
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(28px, 3.6vw, 56px);
  max-width: 1100px;
}

/* ---------- ZÁVER · dve plochy, magenta karta sa vysúva zdola ----------
   Tmavá plocha je sticky, magenta karta na ňu nabieha v toku (bez JS).
   Vrstvenie: .cta-bright má vyšší z-index a vlastný radius, takže
   pôsobí ako karta vytiahnutá zo spodku obrazovky. */
.cta-stack { position: relative; }
.cta-dark {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
}
.cta-bright {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--fun);
  color: #fff;
  border-radius: var(--r-card) var(--r-card) 0 0;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, .18);
}
.cta-inner {
  width: 100%;
  padding: clamp(72px, 11vh, 130px) var(--pad-x);
}
.cta-title {
  font-size: clamp(40px, 6.4vw, 116px);
  max-width: 15ch;
}
.cta-lead {
  margin-top: clamp(20px, 2.4vw, 32px);
  max-width: 620px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255, 255, 255, .72);
}
.cta-micro { color: rgba(255, 255, 255, .7); }
.cta-actions {
  margin-top: clamp(30px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-actions .pill--ink .ar { transition: transform .3s cubic-bezier(.2, .8, .2, 1); }
.cta-actions .pill--ink:hover .ar { transform: translateX(5px); }
.cta-tel {
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  padding-bottom: 2px;
}
.cta-proof {
  display: block;
  margin-top: 26px;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .62);
}
.cta-foot {
  margin-top: clamp(48px, 9vh, 110px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .78);
}
.footer-mark { font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; transition: opacity .25s ease; }
.footer-links a:hover { opacity: .7; }
.cta-top { text-decoration: none; font-weight: 600; }
.footer-note {
  width: 100%;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
}

/* ---------- BAUHAUS ABECEDA · zdieľaná s Fun rádiom a Vlnou ----------
   Rovnaké border-radius hodnoty ako v /v3/styles.css, aby všetky tri
   značky používali ten istý tvarový slovník. Vždy ploché výplne. */
.masked--kruh    { border-radius: 50%; }
.masked--pill    { border-radius: 999px; }
.masked--arch    { border-radius: 999px 999px 24px 24px; }
.masked--archdol { border-radius: 24px 24px 999px 999px; }
.masked--list    { border-radius: 999px 24px 999px 24px; }
.masked--listop  { border-radius: 24px 999px 24px 999px; }
.masked--kocka   { border-radius: 22px; }
.masked--drop    { border-radius: 50% 0 50% 50%; }


/* ============================================================
   MOBIL
   ============================================================ */
/* ---------- SALES TEAM · Wanda bloky ---------- */
.tim-head { padding: clamp(80px, 10vw, 150px) var(--pad-x) clamp(36px, 5vw, 64px); }
.tim-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.tim-lead-txt { max-width: 560px; margin-top: 12px; color: rgba(0, 0, 0, .62); }
.ts-nav { display: flex; gap: 10px; flex: none; padding-bottom: 6px; }
.ts-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}
.ts-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.ts-btn[disabled] { opacity: .3; pointer-events: none; }

/* ---------- SALES TEAM · horizontálny pás s plynulým scrollom ---------- */
.tim-strip {
  position: relative;
  margin-top: 2px;
  padding: 26px 0 40px;
}
.ts-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.ts-scroller::-webkit-scrollbar { display: none; }
.ts-scroller.is-dragging { cursor: grabbing; }
.ts-track {
  display: flex;
  gap: 14px;
  padding: 0 var(--pad-x);
  width: max-content;
}
.ts-card {
  position: relative;
  flex: none;
  width: clamp(230px, 21vw, 300px);
  text-decoration: none;
  color: inherit;
  -webkit-user-select: none;
  user-select: none;
}
/* editorial rytmus: každá druhá karta je posunutá nižšie */
.ts-card:nth-child(even) { transform: translateY(26px); }
.ts-photo {
  position: relative;
  border-radius: var(--r-photo);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  background: var(--gray);
}
.ts-photo img {
  width: 116%;
  max-width: none;
  height: 100%;
  margin-left: -8%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  transition: filter .5s ease;
  will-change: transform;
  -webkit-user-drag: none;
}
.ts-card:hover .ts-photo img { filter: grayscale(0); }
.ts-card figcaption {
  display: block;
  padding: 16px 2px 0;
}
.ts-name { display: block; font-size: clamp(15px, 1.3vw, 19px); line-height: 1.1; }
.ts-role {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .5);
}
.ts-card--join { display: block; }
.ts-join-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  aspect-ratio: 3 / 3.6;
  border-radius: var(--r-photo);
  background: var(--fun);
  color: #fff;
  padding: clamp(20px, 2vw, 30px);
}
.ts-join { font-size: clamp(22px, 2vw, 32px); line-height: .98; }
.ts-role--join { color: rgba(255, 255, 255, .8); margin-top: 10px; }
.ts-ar {
  margin-top: 18px;
  font-size: 26px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.ts-card--join:hover .ts-ar { transform: translateX(8px); }


@media (max-width: 1023.98px) {
  .nav-links { display: none; }
  .nav-right .pill { display: none; }
  .nav-burger { display: flex; }

  .hero-pin { min-height: 0; }
  .hero-head { padding: clamp(96px, 14svh, 140px) var(--pad-x) 36px; }
  .hero-sub { font-size: 16px; padding: 0 4px; }

  .tim-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ts-btn { width: 46px; height: 46px; }
  .ts-card { width: min(64vw, 260px); }
  .ts-track { gap: 10px; }
  .ts-card:nth-child(even) { transform: translateY(16px); }
  .ts-name { font-size: 15px; }

  .radia { gap: 18px; }
  .brand-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px 22px;
    gap: 22px;
  }
  .brand-card--vlna .bc-photo { order: 0; }
  .bc-stats { padding-top: 28px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .bc-num { font-size: 22px; }
  .bc-cap { font-size: 12px; }
  .bc-photo { min-height: 240px; }
  .bc-phones { min-height: 260px; }
  .bc-phones img { width: min(40%, 170px); }

  .band { height: 48vh; min-height: 320px; }

  .bi-wrap { grid-template-columns: 1fr; }
  .bi-left { padding-left: 0; padding-right: 0; }
  .bi-badge { padding-top: 26px; flex-wrap: wrap; gap: 8px; }
  .bi-grid { flex-direction: column; gap: 8px; min-height: 0; }
  .bi-col { gap: 8px; }
  .bi-cell { min-height: 190px; padding: 20px; }
  .bi-num { font-size: clamp(30px, 8vw, 44px); }
  .bi-a .bi-num { font-size: clamp(42px, 12vw, 64px); }
  .bi-cap { font-size: 13px; max-width: none; }
  .bi-mark { width: 38px; height: 38px; right: 20px; bottom: 20px; }
  .bi-mark::after { inset: 11px; }

  .case-row { flex-wrap: wrap; gap: 8px 16px; }
  .case-name { flex: 1 1 100%; }
  .case-meta { text-align: left; }
  .case-ar { display: none; }

  .why-item { grid-template-columns: 1fr; gap: 10px; }
  .why-shape {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  vertical-align: -2px;
  background: var(--fun);
}
.why-shape--vlna { background: var(--vlna); }
.why-shape--ink { background: var(--ink); }
.why-num { padding-top: 0; }

  .cta-title { font-size: clamp(34px, 9vw, 52px); max-width: none; }
  .cta-lead { font-size: 16px; }
  .cta-actions { gap: 16px; }
  .cta-foot { margin-top: 56px; }
}

/* ============================================================
   REDUCED MOTION · všetko viditeľné a statické
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live-dot { animation: none; }
  .pill, .contact-pill, .bc-link .ar, .case-ar { transition: none; }
  html [data-reveal] { opacity: 1; }
}
