/* =========================================================================
   DISK Podcast — web (nový design dle dokumentace + screenshotů)
   Nadpisy: Barlow Condensed · Text: Barlow
   Barvy: #003359 (navy), #66cc33 (zelená). Tlačítka: bílý text.
   ========================================================================= */

:root {
  --navy:       #003359;
  --navy-2:     #002740;
  --navy-soft:  #0a4674;
  --green:      #66cc33;
  --green-dark: #57b528;
  --green-soft: #eef8e6;

  --ink:        #0d2c4f;
  --muted:      #5b6b7b;
  --line:       #e4e9ef;
  --paper:      #ffffff;
  --bg:         #f4f7f9;   /* světlý modro-šedý podklad */
  --bg-2:       #eef3f7;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 2px rgba(13,44,79,.05), 0 4px 14px rgba(13,44,79,.05);
  --shadow:     0 6px 16px rgba(13,44,79,.08), 0 20px 44px rgba(13,44,79,.10);
  --shadow-lg:  0 10px 24px rgba(13,44,79,.10), 0 34px 70px rgba(13,44,79,.16);

  --wrap: 1200px;
  --gap:  clamp(60px, 8vw, 120px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: Barlow, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 16px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 700; text-decoration: none; }
.skip-link:focus { transform: none; }
:where(a,button,input,textarea,summary):focus-visible { outline: 3px solid rgba(102,204,51,.65); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  color: var(--navy); margin: 0 0 .4em; line-height: 1.05;
  font-weight: 700; letter-spacing: .002em; text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 5.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.4rem); }
p { margin: 0 0 1.05em; }
.green { color: var(--green); }

.container { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--gap); position: relative; }
.section--bg { background: var(--bg); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* --- Eyebrow + section head --------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Barlow, sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 14px;
}
.eyebrow--pill {
  background: var(--green-soft); color: var(--green-dark);
  padding: 8px 16px; border-radius: 999px; letter-spacing: .06em;
}
.eyebrow--pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.section--navy .eyebrow { color: var(--green); }

.sec-head { max-width: 680px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.sec-head .eyebrow { justify-content: center; }
.sec-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section--navy .sec-head p { color: rgba(255,255,255,.75); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(102,204,51,.34); }
.btn--green:hover { background: var(--green-dark); box-shadow: 0 12px 26px rgba(102,204,51,.42); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--sm { padding: 10px 20px; font-size: .94rem; }
.btn--block { width: 100%; }

.link-eshop {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-dark); font-weight: 600; font-size: .9rem; text-decoration: none;
}
.link-eshop:hover { color: var(--green); }
.link-eshop svg { width: 14px; height: 14px; }

/* --- Navbar -------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 70;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px rgba(13,44,79,.06); }
.nav__inner { display: flex; align-items: center; gap: 26px; min-height: 74px; }
.nav__logo img { height: 38px; width: auto; display: block; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--navy); text-decoration: none; font-weight: 500; font-size: .96rem; position: relative; }
.nav__links .btn--green { color: #fff; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--green); border-radius: 2px; transition: right .25s var(--ease); }
.nav__links a:not(.btn):hover::after { right: 0; }
.nav__toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { display: block; position: relative; margin: 0 auto; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; }
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }

/* --- Hero ---------------------------------------------------------------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); padding-block: clamp(64px,7vw,106px); position: relative; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -1; width: min(72vw,920px); aspect-ratio: 1; right: -22%; top: -55%; border-radius: 50%; background: radial-gradient(circle, rgba(102,204,51,.17) 0%, rgba(102,204,51,.06) 42%, transparent 70%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.96fr); gap: clamp(46px,6vw,82px); align-items: center; }
.hero__content { animation: rise-in .9s var(--ease) both; }
.hero h1 { margin: 0 0 22px; font-size: clamp(3rem,5.2vw,4.55rem); letter-spacing: -.025em; }
.hero h1 span { display: block; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero__text { font-size: clamp(1.06rem,1.4vw,1.2rem); color: var(--muted); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__cta .btn svg { transition: transform .25s var(--ease); }
.hero__cta .btn:hover svg { transform: translateX(3px); }
.hero__cta .btn--ghost:hover svg { transform: scale(1.08); }
.hero__stats { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 40px; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats b { font-family: "Barlow Condensed", sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__stats span { font-size: .86rem; color: var(--muted); margin-top: 3px; }

.hero__media { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.hero__media figure { margin: 0; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); animation: tile-float 9s ease-in-out infinite; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.hero__media figure:nth-child(2) { animation-delay: -.6s; }
.hero__media figure:nth-child(3) { animation-delay: -1.1s; }
.hero__media figure:nth-child(4) { animation-delay: -2.2s; }
.hero__media figure:hover { transform: scale(1.018); box-shadow: var(--shadow-lg); z-index: 2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
@keyframes rise-in { from { opacity: 0; transform: translateY(26px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes tile-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-7px) rotate(-.2deg); } }

/* --- Karty (obecné) ------------------------------------------------------ */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--podcast-formats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--bg-2); color: var(--navy); display: grid; place-items: center; margin-bottom: 18px; transition: background-color .22s, color .22s; }
.card:hover .card__icon { background: var(--green); color: #fff; }
.card__icon svg { width: 24px; height: 24px; }
#sluzby .card__icon { width: 72px; height: 60px; border-radius: 0; background: transparent; display: grid; place-items: center; margin-bottom: 30px; overflow: hidden; }
#sluzby .card:hover .card__icon { background: transparent; }
#sluzby .card__icon img { width: 66px; height: 56px; object-fit: contain; object-position: left center; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card__benefit { display: block; margin-top: 14px; font-size: .86rem; font-weight: 600; color: var(--green-dark); }

.benefit__illustration { width: 92px; height: 80px; object-fit: cover; object-position: center; margin-bottom: 18px; }
.format__illustration { width: 92px; height: 80px; object-fit: cover; object-position: center; margin-bottom: 18px; }

/* --- Průvodce (iframe) --------------------------------------------------- */
/* podklad sekce přesně odpovídá pozadí uvnitř průvodce, aby nebyl vidět přechod */
#pruvodce { background: #f4f5f7; padding-block: clamp(40px,5vw,72px); }
/* průvodce splývá se stránkou — žádný rámeček ani podklad navíc */
.guide-embed { background: none; border: 0; border-radius: 0; box-shadow: none; }
.guide-embed iframe { width: 100%; border: 0; display: block; min-height: 560px; background: none; }
html.guide-modal-open,
body.guide-modal-open { overflow: hidden; }
html.guide-modal-open #pruvodce-frame {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100dvh !important;
  min-height: 100dvh;
  background: #f4f5f7;
}
.guide-teaser { display: grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:clamp(28px,5vw,70px); padding:clamp(30px,5vw,58px); border:1px solid var(--line); border-radius:var(--radius-xl); background:#fff; box-shadow:var(--shadow); }
.guide-teaser h2 { margin:8px 0 12px; }
.guide-teaser p { margin:0; color:var(--muted); max-width:720px; }
@media(max-width:720px){ .guide-teaser{grid-template-columns:1fr}.guide-teaser .btn{width:100%} }
.guide-personas { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px; }
.guide-persona { position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:22px; background:var(--navy); box-shadow:var(--shadow); color:#fff; text-decoration:none; transition:transform .25s var(--ease),box-shadow .25s; }
.guide-persona:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.guide-persona img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.guide-persona::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(13,44,79,0) 34%,rgba(13,44,79,.9) 100%); }
.guide-persona__badge { position:absolute; z-index:2; top:16px; left:16px; padding:5px 12px; border-radius:999px; background:var(--green); color:var(--navy); font-size:.8rem; font-weight:850; }
.guide-persona__cap { position:absolute; z-index:2; left:0; right:0; bottom:0; padding:20px; }
.guide-persona__cap b { display:block; font-family:"Barlow Condensed",sans-serif; font-size:1.65rem; line-height:1.05; }
.guide-persona__cap small { display:block; margin-top:6px; color:#dce5ee; font-size:.92rem; }
.guide-persona__cap strong { display:block; margin-top:12px; color:var(--green); font-size:.9rem; }
@media(max-width:720px){.guide-personas{grid-template-columns:1fr}.guide-persona,.guide-persona:last-child{grid-column:auto;aspect-ratio:16/10}.guide-persona__cap{padding:22px}.guide-persona__cap b{font-size:1.9rem}}

/* --- Řešení pro každého -------------------------------------------------- */
.solutions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.solution { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); }
.solution img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.solution:hover img { transform: scale(1.05); }
.solution::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,25,44,.9) 0%, rgba(0,25,44,.35) 42%, transparent 68%); }
.solution__label { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; color: #fff; }
.solution__label b { font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; font-weight: 700; display: block; }
.solution__label span { font-size: .92rem; color: rgba(255,255,255,.82); }

/* --- Produktové sety (carousel) ----------------------------------------- */
.sets { position: relative; }
.sets__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3*22px)/4); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; }
.sets__track::-webkit-scrollbar { display: none; }
.set { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.set:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.set__media { position: relative; aspect-ratio: 1; background: #fff; border-bottom: 1px solid var(--line); }
.set__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.set__badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; background: var(--green); color: #fff; }
.set__badge[data-badge="Akce"] { background: #ff7a3d; }
.set__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.set__name { font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.3; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.set__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: auto; }
.set__price b { font-family: "Barlow Condensed", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.set__price s { display: block; font-size: .82rem; color: var(--muted); }
.sets__arrows { display: flex; gap: 10px; position: absolute; top: -68px; right: 0; }
.sets__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer; display: grid; place-items: center; transition: background-color .18s, color .18s, border-color .18s; }
.sets__arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.sets__arrow svg { width: 18px; height: 18px; }
.sets__cta { text-align: center; margin-top: 36px; }

/* --- Realizace (rozbalovací pruh) --------------------------------------- */
/* harmonika: ve výchozím stavu vše zavřené a bez textu, otevírá se najetím myši */
.realz { display: flex; gap: 14px; height: 440px; }
.realz__item { position: relative; flex: 1; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: flex .5s var(--ease); min-width: 0; }
.realz__item:hover, .realz__item:focus-within { flex: 2.6; }
.realz__item img { width: 100%; height: 100%; object-fit: cover; }
.realz__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,20,36,.86), rgba(0,20,36,.15) 55%, rgba(0,20,36,.35)); opacity: .55; transition: opacity .4s var(--ease); }
.realz__item:hover::after, .realz__item:focus-within::after { opacity: 1; }
.realz__cap { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .3s ease .08s, transform .35s var(--ease); }
.realz__item:hover .realz__cap, .realz__item:focus-within .realz__cap { opacity: 1; transform: none; }
.realz__cap b { font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; font-weight: 700; display: block; line-height: 1.1; }
.realz__cap span { font-size: .88rem; color: rgba(255,255,255,.8); }
.realz__arrow { position: absolute; z-index: 2; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--navy); display: grid; place-items: center; opacity: 0; transition: opacity .3s; text-decoration: none; }
.realz__item:hover .realz__arrow, .realz__item:focus-within .realz__arrow { opacity: 1; }
.realz__arrow svg { width: 18px; height: 18px; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 2px 24px; transition: border-color .2s; }
.faq details[open] { border-color: var(--green); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 30px 20px 0; position: relative; font-weight: 600; color: var(--navy); font-size: 1.04rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 2px; top: 50%; width: 12px; height: 12px; margin-top: -7px; border-right: 2px solid var(--green-dark); border-bottom: 2px solid var(--green-dark); transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq p { color: var(--muted); margin: 0 0 20px; }

/* --- Kontakt ------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,56px); align-items: start; }
.contact__info h2 { margin-bottom: 14px; }
.contact__lead { color: var(--muted); font-size: 1.08rem; }
.contact__meta { display: flex; flex-wrap: wrap; gap: 30px; margin: 26px 0; }
.contact__meta h4 { font-family: Barlow, sans-serif; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.contact__meta a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 600; text-decoration: none; }
.contact__meta a:hover { color: var(--green-dark); }
.contact__meta svg { width: 16px; height: 16px; color: var(--green-dark); }
.contact__meta small { display: block; color: var(--muted); font-weight: 400; margin-top: 3px; }
.phone-status { display: inline-flex; align-items: center; gap: 7px; margin-top: 7px; padding: 5px 10px; border-radius: 999px; font-size: .77rem; font-weight: 700; line-height: 1.2; }
.phone-status i { width: 8px; height: 8px; flex: none; border-radius: 50%; }
.phone-status.is-online { color: #267313; background: #eaf8e5; }
.phone-status.is-online i { background: #55b936; box-shadow: 0 0 0 4px rgba(85,185,54,.15), 0 0 12px rgba(85,185,54,.65); animation: status-pulse 2s ease-in-out infinite; }
.phone-status.is-offline { color: #a72d2d; background: #fff0f0; }
.phone-status.is-offline i { background: #d94a4a; box-shadow: 0 0 0 4px rgba(217,74,74,.13), 0 0 10px rgba(217,74,74,.45); }
@keyframes status-pulse { 50% { box-shadow: 0 0 0 6px rgba(85,185,54,.05), 0 0 16px rgba(85,185,54,.75); } }
@media (prefers-reduced-motion: reduce) { .phone-status.is-online i { animation: none; } }
.contact__tip { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; font-size: .95rem; color: var(--muted); }
.contact__tip svg { width: 22px; height: 22px; color: var(--green-dark); flex: none; }
.contact__tip a { color: var(--green-dark); font-weight: 600; text-decoration: none; }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: clamp(26px,3vw,38px); }
.contact__form h3 { margin-bottom: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; font: inherit; color: var(--ink); padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); transition: border-color .18s, box-shadow .18s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(102,204,51,.18); background: #fff; }
.field--hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.45; text-align: center; }
.form-status { min-height: 1.45em; margin: 8px 0 0; color: var(--green-dark); font-size: .88rem; font-weight: 600; text-align: center; }
.contact__form button:disabled { cursor: wait; opacity: .72; }

/* --- Split (text + obrázek) ---------------------------------------------- */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(30px,5vw,64px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__text h2 { margin-bottom: 18px; }
.split__text p { color: var(--muted); }
.split__note { border-left: 3px solid var(--green); padding-left: 16px; color: var(--navy) !important; font-weight: 600; }
.split__media { margin: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; }
.split .btn { margin-top: 8px; }
.mt-lg { margin-top: clamp(38px,5vw,60px); }

/* --- Footer -------------------------------------------------------------- */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding-block: clamp(52px,6vw,80px) 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
/* Bílo-zelená varianta loga přímo na tmavém pozadí patičky */
.footer__logo { height: 64px; width: auto; margin-bottom: 18px; display: block; background: transparent; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer__contact { display: grid; gap: 8px; margin: 16px 0 20px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); text-decoration: none; font-size: .94rem; }
.footer__contact a:hover { color: var(--green); }
.footer__contact svg { width: 15px; height: 15px; }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; font-family: Barlow, sans-serif; font-weight: 700; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .94rem; }
.footer__list a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer__list a:hover { color: var(--green); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background-color .18s, transform .18s; }
.footer__social a:hover { background: var(--green); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__social a.youtube img { display: block; width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer__bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.5); }
.footer__bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer__bottom a:hover { color: var(--green); }

/* --- Reveal -------------------------------------------------------------- */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--rd, 0ms); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media img { max-height: 380px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 560px; }
  .contact { grid-template-columns: 1fr; }
  .sets__track { grid-auto-columns: calc((100% - 22px)/2); }
  .solutions { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  /* na dotykových zařízeních není hover — dlaždice zůstávají otevřené s textem */
  .realz { flex-direction: column; height: auto; }
  .realz__item { height: 220px; flex: none; }
  .realz__item:hover { flex: none; }
  .realz__cap { opacity: 1; transform: none; }
  .realz__item::after { opacity: 1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 18px; box-shadow: var(--shadow); }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 12px; }
  .nav__toggle { display: block; }
  .grid--4 { grid-template-columns: 1fr; }
  .grid--podcast-formats { grid-template-columns: 1fr; }
  .sets__track { grid-auto-columns: 82%; }
  .sets__arrows { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
