/* ELLER studio — investiční web. Brand tokeny, fonty, komponenty. */

/* ---------- Fonty (self-hosted) ---------- */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
/* Playfair italic: latinka základ */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-italic-400.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
/* Playfair italic: Latin Extended (č ř ž ě ů ď ť ň š …) */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-italic-400-ext.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Brand tokeny ---------- */
:root {
  --krem:    #fdf8eb;
  --paper:   #f6f3ef;
  --tmave:   #182f23;
  --zelena:  #274f34;
  --sage:    #96b5a0;
  --zlata:   #e2b85a;
  --zlata-t: #c99a3f;   /* tmavší zlatá pro text na světlém (kontrast) */
  --inkoust: #182f23;
  --uhel:    #0c0c0d;
  --line:    rgba(24,47,35,.14);
  --line-d:  rgba(230,215,180,.18);
}

/* ---------- Základ ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--krem);
  color: var(--inkoust);
  font-family: "Clash Display", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: "Clash Display", sans-serif; font-weight: 700; line-height: 1.05; margin: 0; }
.serif-it { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 400; }
a { color: inherit; }

/* ---------- Layout helpery ---------- */
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--krem  { background: var(--krem); }
.section--paper { background: var(--paper); }
.section--dark  { background: var(--tmave); color: var(--krem); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--krem); }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--zlata-t); margin: 0 0 18px;
}
.section--dark .eyebrow { color: var(--zlata); }
.lead { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5; max-width: 62ch; }
.muted { color: rgba(24,47,35,.62); }
.section--dark .muted { color: rgba(253,248,235,.66); }
.gold { color: var(--zlata-t); }
.section--dark .gold { color: var(--zlata); }
.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--dark .hairline { background: var(--line-d); }

/* ---------- Nadpisy sekcí ---------- */
.h-sec { font-size: clamp(30px, 4.4vw, 50px); letter-spacing: -.01em; }
.h-sec .code { color: var(--zlata-t); }
.section--dark .h-sec .code { color: var(--zlata); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: .01em;
  padding: 15px 26px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--zlata); color: var(--tmave); }
.btn--gold:hover { background: #eec877; }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--inkoust); }
.section--dark .btn--ghost { color: var(--krem); }
.btn--ghost:hover { background: rgba(24,47,35,.06); }
.section--dark .btn--ghost:hover { background: rgba(253,248,235,.08); }
.btn--ondark { background: var(--zlata); color: var(--tmave); }
.btn--ondark:hover { background: #eec877; }

/* ---------- Stahovací tlačítka ---------- */
.dl-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dl-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--zlata-t); }
.btn-dl {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-weight: 700; font-size: 14.5px; padding: 12px 20px;
  border: 1px solid var(--line); background: rgba(255,255,255,.5); color: var(--inkoust);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.btn-dl:hover { border-color: var(--zlata); background: rgba(226,184,90,.12); transform: translateY(-1px); }
.btn-dl svg { color: var(--zlata-t); flex: none; }
.nav .navdl {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: .02em; padding: 8px 13px;
  border: 1px solid var(--line); opacity: .9; transition: border-color .2s, opacity .2s;
}
.nav .navdl:hover { opacity: 1; border-color: var(--zlata); color: var(--zlata-t); }
.nav .navdl svg { flex: none; }
@media (max-width: 860px) { .nav.open .navdl { border-color: var(--line-d); color: var(--krem); } }

/* ---------- Chip nabídky ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 40px; }
.chip {
  display: flex; flex-direction: column; gap: 5px;
  padding-left: 16px; border-left: 3px solid var(--zlata);
}
.chip b { font-size: 27px; font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.chip span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--zlata-t); }
@media (max-width: 560px) { .chips { gap: 24px; } }

/* ---------- KPI karty ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 52px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 52px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
.kpi { border: 0; background: none; padding: 22px 0 0; border-top: 3px solid var(--line); transition: border-color .35s ease; }
.kpi:hover { border-top-color: var(--zlata); }
.section--dark .kpi { border-top-color: var(--line-d); }
.section--dark .kpi:hover { border-top-color: var(--zlata); }
.kpi .label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--zlata-t); }
.section--dark .kpi .label { color: var(--zlata); }
.kpi .num {
  font-size: clamp(38px, 5vw, 56px); font-weight: 700; line-height: 1.02; margin: 14px 0 6px; letter-spacing: -.02em;
  background-image: linear-gradient(115deg, currentColor 42%, rgba(255,255,255,.92) 50%, currentColor 58%);
  background-size: 250% 100%; background-position: 155% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.kpi:hover .num { animation: num-shine 2s ease; }
@keyframes num-shine { 0% { background-position: 155% 0; } 100% { background-position: -55% 0; } }
@media (prefers-reduced-motion: reduce) { .kpi:hover .num { animation: none; } }
.kpi .unit { font-size: 15px; }

/* Nabídka: 5 statů na jeden řádek, menší písmo */
.kpi-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px 28px; }
.kpi-row .kpi { padding: 18px 0 0; }
.kpi-row .kpi .label { font-size: 11px; letter-spacing: .08em; }
.kpi-row .kpi .num { font-size: clamp(22px, 2vw, 29px); margin: 10px 0 5px; white-space: nowrap; }
.kpi-row .kpi .unit { font-size: 12.5px; }
@media (max-width: 900px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .kpi-row { grid-template-columns: 1fr; } }

/* ---------- Zvýrazněný blok (Podstata / pointa) ---------- */
.callout {
  border: 0; border-left: 3px solid var(--zlata); background: none;
  padding: 4px 0 4px 26px; font-size: clamp(17px, 2vw, 20px); line-height: 1.6;
}
.callout b { font-weight: 700; }

/* ---------- Karty (role, milníky, jistoty) ---------- */
.card { border: 0; background: none; padding: 22px 0 0; border-top: 2px solid var(--zlata); }
.section--dark .card { background: none; border-top-color: var(--zlata); }
.card .top { display: none; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { margin: 0; font-size: 15.5px; line-height: 1.6; }

.rowcard { border: 0; border-bottom: 1px solid var(--line); padding: 24px 0; display: flex; gap: 24px; align-items: center; }
.rowcard:last-child { border-bottom: 0; }
.section--dark .rowcard { border-bottom-color: var(--line-d); }
.rowcard .k { font-weight: 700; color: var(--zlata-t); white-space: nowrap; min-width: 200px; }
.section--dark .rowcard .k { color: var(--zlata); }
.ricon { flex: none; width: 48px; height: 48px; border-radius: 50%; background: rgba(226,184,90,.16); color: var(--zlata-t); display: flex; align-items: center; justify-content: center; }
@media (max-width: 620px) { .rowcard { flex-direction: column; align-items: flex-start; gap: 12px; } .rowcard .k { min-width: 0; } }

/* Ilustrační ikona v kartě role */
.card .cicon { display: inline-flex; width: 56px; height: 56px; border-radius: 50%; background: rgba(226,184,90,.16); color: var(--zlata-t); align-items: center; justify-content: center; margin-bottom: 18px; }

/* ---------- Tým (kruhové avatary) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 28px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 32px 18px; } }
.member { text-align: center; }
.member figure { margin: 0; }
.member .ph {
  width: 172px; max-width: 100%; aspect-ratio: 1/1; border-radius: 50%;
  object-fit: cover; object-position: center 22%; display: block; margin: 0 auto;
  border: 3px solid var(--zlata); background: var(--sage);
}
@media (max-width: 560px) { .member .ph { width: 132px; } }
.member h3 { font-size: 20px; margin: 20px 0 5px; }
.member .role { font-size: 12.5px; color: var(--zlata-t); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.member p { font-size: 14.5px; line-height: 1.55; margin: 12px auto 0; color: rgba(24,47,35,.72); max-width: 25ch; }

/* ---------- Smyčka (statická infografika) ---------- */
.loop { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; margin-top: 8px; }
@media (max-width: 820px) { .loop { grid-template-columns: 1fr; } }
.loop .node { border: 0; padding: 8px 0; background: none; }
.loop .center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 26px; text-align: center; min-width: 180px;
}
.loop .center .dot { width: 12px; height: 12px; background: var(--zlata); border-radius: 50%; margin: 14px 0; }
.loop .node .ic { color: var(--zlata); margin-bottom: 16px; display: block; }
.loop .node h4 { margin: 0 0 12px; font-size: clamp(22px, 2.4vw, 28px); font-family: "Clash Display"; font-weight: 700; }
.loop .node p { margin: 0; font-size: 15.5px; color: rgba(253,248,235,.74); line-height: 1.55; }

/* ---------- Timeline (harmonogram) ---------- */
.wave { border: 0; padding: 24px 0 0; background: none; border-top: 2px solid var(--zlata); }
.wave .when { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--zlata-t); text-transform: uppercase; }
.wave .amt { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; margin: 6px 0 16px; }
.wave ul { margin: 0; padding: 0; list-style: none; }
.wave li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 15px; line-height: 1.5; }
.wave li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--zlata); }

/* ---------- Odrážky obecně ---------- */
.ticks { list-style: none; margin: 14px 0 0; padding: 0; }
.ticks li { position: relative; padding-left: 24px; margin-bottom: 11px; font-size: 15.5px; line-height: 1.5; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 2px; background: var(--zlata); }

/* ---------- Video ---------- */
.videowrap { position: relative; border: 1px solid var(--line); overflow: hidden; background: #000; }
.videowrap video { display: block; width: 100%; height: auto; }
.videowrap .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(24,47,35,.28); border: 0; cursor: pointer; transition: background .2s; width: 100%;
}
.videowrap .play:hover { background: rgba(24,47,35,.14); }
.videowrap .play .circle {
  width: 84px; height: 84px; border-radius: 50%; background: var(--zlata);
  display: flex; align-items: center; justify-content: center; color: var(--tmave);
}
.videowrap .play.hidden { display: none; }

/* ---------- Navigace ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled { background: rgba(253,248,235,.92); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); padding: 12px 24px; }
.nav .logo { height: 26px; width: auto; display: block; }
.nav .navlinks { display: flex; gap: 26px; align-items: center; }
.nav .navlinks a { text-decoration: none; font-size: 14.5px; font-weight: 500; opacity: .8; }
.nav .navlinks a:hover { opacity: 1; color: var(--zlata-t); }
.nav .navcta { font-weight: 700; font-size: 14.5px; padding: 10px 18px; background: var(--zlata); color: var(--tmave); text-decoration: none; }
.nav .burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
@media (max-width: 860px) {
  .nav .navlinks { display: none; }
  .nav .burger { display: block; }
  .nav.open .navlinks {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: 0; left: 0;
    background: var(--tmave); padding: 20px 24px; gap: 16px;
  }
  .nav.open .navlinks a { color: var(--krem); opacity: .9; }
}

/* ---------- Reveal animace (progressive: skryté jen když běží JS) ---------- */
html.reveal-on .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
html.reveal-on .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.reveal-on .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Footer ---------- */
.foot { font-size: 14px; line-height: 1.7; }
.foot .disc { font-size: 12.5px; color: rgba(253,248,235,.5); max-width: 70ch; margin-top: 22px; }
.foot a { color: var(--zlata); text-decoration: none; }

/* ---------- Hero: 2 sloupce + kruhová fotka + pečeť ---------- */
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }
.hero-photo { position: relative; width: min(440px, 100%); margin: 0 auto; aspect-ratio: 1/1; }
.hero-photo > img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  border-radius: 50%; border: 4px solid var(--zlata);
}
.seal { position: absolute; left: -4px; bottom: 8px; width: 132px; height: 132px; animation: seal-spin 26s linear infinite; }
.seal svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 6px 16px rgba(24,47,35,.18)); }
@keyframes seal-spin { to { transform: rotate(360deg); } }
@media (max-width: 520px) { .seal { width: 100px; height: 100px; } }
@media (prefers-reduced-motion: reduce) { .seal { animation: none; } }

/* ---------- Grafy (Chart.js) ---------- */
.chart-card { border: 0; background: none; padding: 0; }
.chart-head h3 { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--zlata-t); margin: 0 0 22px; }
.chart-box { position: relative; height: 400px; }
.chart-box--sm { height: 300px; }
@media (max-width: 640px) { .chart-box { height: 320px; } .chart-box--sm { height: 260px; } }
.split-chart { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: stretch; }
@media (max-width: 860px) { .split-chart { grid-template-columns: 1fr; } }
.split-chart .callout { display: flex; align-items: center; }
.harmo-split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 20px; align-items: start; }
@media (max-width: 860px) { .harmo-split { grid-template-columns: 1fr; } }
.waves { display: grid; gap: 16px; }

/* ---------- Časová osa (milníky) ---------- */
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 10px; bottom: 14px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-left: 52px; padding-bottom: 46px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--zlata); border: 4px solid var(--krem); box-shadow: 0 0 0 1.5px var(--zlata);
}
.tl-year { font-family: "Clash Display", sans-serif; font-weight: 700; font-size: 24px; line-height: 1; }
.tl-sub { color: var(--zlata-t); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; margin: 8px 0 4px; }
.tl-item .ticks { margin-top: 12px; max-width: 60ch; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .tl-item::before { transition: transform .3s ease, box-shadow .3s ease; }
  .tl-item:hover::before { transform: scale(1.25); box-shadow: 0 0 0 4px rgba(226,184,90,.25); }
}

/* ---------- Plovoucí dekorace u časové osy ---------- */
.tl-deco { position: absolute; top: 150px; right: 0; bottom: 10px; width: 42%; pointer-events: none; z-index: 0; }
.tl-deco .fi { position: absolute; color: var(--zlata); opacity: .32; animation: tl-float var(--t, 8s) ease-in-out var(--d, 0s) infinite; }
.tl-deco .fi svg { display: block; width: 100%; height: 100%; }
@keyframes tl-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
#milniky .timeline { position: relative; z-index: 1; }
@media (max-width: 900px) { .tl-deco { display: none; } }
@media (prefers-reduced-motion: reduce) { .tl-deco .fi { animation: none; } }

/* ---------- Atmosférický pás ---------- */
.band { position: relative; height: clamp(280px, 42vw, 460px); overflow: hidden; }
.band > img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.band--right > img { object-position: center top; }
.band-overlay { position: absolute; inset: 0; display: flex; align-items: center; background: linear-gradient(90deg, rgba(24,47,35,.9) 0%, rgba(24,47,35,.55) 55%, rgba(24,47,35,.25) 100%); }
.band-quote { color: var(--krem); font-size: clamp(23px, 3.6vw, 42px); line-height: 1.24; max-width: 1160px; width: 100%; margin: 0 auto; padding: 0 24px; }
.band--center .band-overlay { justify-content: center; background: linear-gradient(0deg, rgba(24,47,35,.82) 0%, rgba(24,47,35,.52) 100%); }
.band--center .band-quote { text-align: center; max-width: 920px; }

/* ---------- Accordion (jistota) ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  font-weight: 700; font-size: 18px; color: var(--inkoust);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: color .2s ease;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 26px; font-weight: 400; color: var(--zlata-t); line-height: 1; flex: none; }
.acc[open] summary::after { content: "\2013"; }
.acc summary:hover { color: var(--zlata-t); }
.acc-body { padding: 0 4px 24px; font-size: 16px; line-height: 1.65; color: rgba(24,47,35,.72); max-width: 82ch; }

/* ---------- Tabulka projekce ---------- */
.ptable-wrap { overflow-x: auto; }
.ptable { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 560px; }
.ptable thead th { background: var(--tmave); color: var(--krem); text-align: right; padding: 18px 22px; font-weight: 700; font-size: 15px; white-space: nowrap; }
.ptable thead th:first-child { text-align: left; }
.ptable thead th span { display: block; font-weight: 400; font-size: 11.5px; opacity: .68; margin-top: 4px; letter-spacing: .02em; }
.ptable tbody td { text-align: right; padding: 17px 22px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.ptable tbody td:first-child { text-align: left; font-weight: 500; }
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable td.col-hi { color: var(--zelena); font-weight: 700; background: rgba(226,184,90,.08); }
.ptable thead th.col-hi { color: var(--zlata); background: var(--tmave); }
.ptable .row-accent td { background: rgba(226,184,90,.13); font-weight: 700; }
.ptable .row-accent td.col-hi { background: rgba(226,184,90,.22); }

/* ---------- Moderní hover interakce ---------- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  /* Karty rolí a milníků: zvednutí + rozzáření ikony */
  .card { transition: transform .3s ease, border-top-color .3s ease; }
  .card:hover { transform: translateY(-5px); border-top-color: var(--zlata); }
  .card .cicon { transition: background .3s ease, color .3s ease, transform .3s ease; }
  .card:hover .cicon { background: var(--zlata); color: var(--tmave); transform: scale(1.08) rotate(-4deg); }

  /* Tým: zvětšení avataru + jméno zlatě */
  .member .ph { transition: transform .35s ease, box-shadow .35s ease; }
  .member:hover .ph { transform: scale(1.05); box-shadow: 0 12px 32px rgba(24,47,35,.18); }
  .member h3 { transition: color .25s ease; }
  .member:hover h3 { color: var(--zlata-t); }

  /* Vize: zlatá ikona + zvýraznění klíče */
  .rowcard .ricon { transition: background .3s ease, color .3s ease, transform .3s ease; }
  .rowcard:hover .ricon { background: var(--zlata); color: var(--tmave); transform: scale(1.1); }
  .rowcard .k { transition: color .25s ease; }
  .rowcard:hover .k { color: var(--zlata); }

  /* Tabulka projekce: zvýraznění řádku pod myší */
  .ptable tbody td { transition: background .25s ease; }
  .ptable tbody tr:hover td { background: rgba(226,184,90,.1); }
  .ptable tbody tr:hover td.col-hi { background: rgba(226,184,90,.26); }

  /* Hero staty: lesk přes číslo */
  .chip { transition: border-color .3s ease; }
  .chip b {
    background-image: linear-gradient(115deg, currentColor 42%, rgba(255,255,255,.9) 50%, currentColor 58%);
    background-size: 250% 100%; background-position: 155% 0;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .chip:hover b { animation: num-shine 2s ease; }

  /* Nav odkazy: podtržení zleva */
  .nav .navlinks a:not(.navcta):not(.navdl) { position: relative; }
  .nav .navlinks a:not(.navcta):not(.navdl)::after {
    content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
    background: var(--zlata); transition: width .25s ease;
  }
  .nav .navlinks a:not(.navcta):not(.navdl):hover::after { width: 100%; }
  .nav .navcta { transition: background .2s ease, transform .2s ease, color .2s ease; }
  .nav .navcta:hover { background: #eec877; transform: translateY(-1px); color: #000; }

  /* Video: play tlačítko zvětšení */
  .videowrap .play .circle { transition: transform .3s ease; }
  .videowrap:hover .play .circle { transform: scale(1.09); }

  /* Accordion: posun titulku */
  .acc summary { transition: color .2s ease, padding-left .25s ease; }
  .acc summary:hover { padding-left: 10px; }

  /* Stahovací tlačítka v liště */
  .nav .navdl svg { transition: transform .25s ease; }
  .nav .navdl:hover svg { transform: translateY(2px); }
}

/* ---------- Utility ---------- */
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
