/* ============================================================
   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: 'Inter Tight', 'Archivo', '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 ---------- */
.display {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.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: 800;
  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: 800;
  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);
}
.wordmark {
  font-weight: 800;
  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: 800;
  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: 800;
  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);
  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 · monochrome grid ---------- */
.cisla { padding: clamp(80px, 10vw, 150px) var(--gutter) clamp(36px, 5vw, 72px); }
.cisla-head {
  padding: 0 calc(var(--pad-x) - var(--gutter));
  margin-bottom: clamp(28px, 4vw, 48px);
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cs-cell {
  background: var(--gray);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.4vw, 32px);
  min-height: clamp(200px, 24vh, 260px);
  display: flex;
  flex-direction: column;
}
.cs-cap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cs-cap { font-size: 11.5px; letter-spacing: .14em; color: rgba(0, 0, 0, .6); }
.cs-num {
  margin-top: auto;
  padding-top: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(34px, 3vw, 52px);
}
.cs-sub { margin-top: 10px; font-size: 13px; color: rgba(0, 0, 0, .55); }

.cs-cell--red {
  background: var(--vlna);
  color: #fff;
  grid-column: span 2;
}
.cs-cell--red .cs-cap { color: rgba(255, 255, 255, .8); }
.cs-cell--red .cs-cap-row { border-color: rgba(255, 255, 255, .28); }
.cs-cell--red .cs-num { font-size: clamp(56px, 6vw, 110px); }
.cs-cell--red .cs-sub { color: rgba(255, 255, 255, .75); }

.cs-cell--black {
  background: var(--ink);
  color: #fff;
  grid-column: span 3;
  min-height: 220px;
}
.cs-cell--black .cs-cap { color: rgba(255, 255, 255, .7); }
.cs-cell--black .cs-cap-row { border-color: rgba(255, 255, 255, .22); }
.cs-cell--black .cs-num { font-size: clamp(48px, 6vw, 96px); }
.cs-chip {
  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);
}
.cs-live-off {
  margin-top: auto;
  padding-top: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(24px, 2.6vw, 40px);
  max-width: 900px;
}
.cs-live-on { display: none; }
html.zive-live .cs-live-on { display: block; }
html.zive-live .cs-live-off { display: none; }

.cs-note {
  margin-top: 16px;
  padding: 0 calc(var(--pad-x) - var(--gutter));
  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-num {
  font-size: 14px;
  letter-spacing: .16em;
  color: rgba(0, 0, 0, .45);
  padding-top: 12px;
}
.why-text {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(28px, 3.6vw, 56px);
  max-width: 1100px;
}

/* ---------- KONTAKT ---------- */
.contact-wrap { padding: var(--gutter); }
.contact {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-card);
  padding: clamp(64px, 10vw, 150px) var(--pad-x);
  text-align: center;
}
.contact .display { font-size: clamp(48px, 8vw, 132px); }
.contact-pill {
  display: inline-flex;
  margin-top: 40px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.contact-pill:hover { transform: translateY(-2px); }
.contact-tel {
  display: block;
  margin-top: 22px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}
.contact-note { margin-top: 26px; font-size: 14px; color: rgba(255, 255, 255, .6); }

/* ---------- FOOTER ---------- */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 26px var(--pad-x) 30px;
  font-size: 13.5px;
  color: rgba(0, 0, 0, .55);
}
.footer-mark { font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; transition: color .25s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-note { width: 100%; margin-top: 4px; font-size: 12.5px; color: rgba(0, 0, 0, .45); }

/* ============================================================
   MOBIL
   ============================================================ */
/* ---------- SALES TEAM · Wanda bloky ---------- */
.tim-head { padding: clamp(80px, 10vw, 150px) var(--pad-x) clamp(36px, 5vw, 64px); }
.tim-lead {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--gray);
  min-height: 68vh;
}
.tim-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 6vw, 90px) var(--pad-x);
}
.tl-label {
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(0, 0, 0, .5);
}
.tl-name {
  margin-top: 18px;
  font-size: clamp(56px, 8.5vw, 150px);
  line-height: .9;
  letter-spacing: -0.01em;
}
.tl-txt { max-width: 420px; margin: 24px 0 30px; color: rgba(0, 0, 0, .68); }
.tim-lead-photo { position: relative; min-height: 380px; }
.tim-lead-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.tim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--paper);
  padding-top: 2px;
}
.tim-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 767 / 660;
}
.tim-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* fotky tímu: čiernobiele, na hover sa prefarbia (statický filter
   s transition, nikdy nie scroll-animácia filtra) */
.tim-cell img,
.tim-lead-photo img {
  filter: grayscale(1);
  transition: filter .5s ease;
}
.tim-cell:hover img,
.tim-lead-photo:hover img { filter: grayscale(0); }
.tim-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 45%);
}
.tim-cell figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}
.tc-name { display: block; font-size: clamp(18px, 1.8vw, 26px); line-height: 1.05; }
.tc-role { display: block; margin-top: 5px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.tim-cell--join {
  background: var(--vlna);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 44px);
}
.tim-cell--join::after { content: none; }
.tc-join { font-size: clamp(26px, 2.6vw, 42px); line-height: .95; }
.tc-role--join { margin-top: 12px; }
.tc-ar {
  margin-top: auto;
  font-size: 30px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.tim-cell--join:hover .tc-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-lead { grid-template-columns: 1fr; min-height: 0; }
  .tim-lead-photo { min-height: 0; aspect-ratio: 767 / 620; }
  .tim-lead-photo img { position: static; height: 100%; }
  .tim-grid { grid-template-columns: repeat(2, 1fr); }
  .tim-cell figcaption { left: 14px; right: 14px; bottom: 12px; }
  .tc-name { font-size: 16px; }
  .tc-role { font-size: 10px; }
  .tim-cell--join { padding: 20px; }
  .tc-join { font-size: 22px; }

  .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; }

  .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cs-cell { min-height: 168px; padding: 18px; }
  .cs-cell--red { grid-column: span 2; }
  .cs-cell--black { grid-column: span 2; }
  .cs-cell--wide-m { grid-column: span 2; }
  .cs-num { font-size: 30px; }
  .cs-cell--red .cs-num { font-size: clamp(48px, 14vw, 64px); }
  .cs-cell--black .cs-num { font-size: clamp(38px, 11vw, 56px); }

  .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-num { padding-top: 0; }

  .contact-pill { word-break: break-all; }
}

/* ============================================================
   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; }
}
