/* ============================================================
   Veterinární klinika LIVE VET s.r.o. — Litoměřice
   Statický prototyp · css/style.css
   Design: vlastní, veterinární obor — teplá neutrální + přírodní zelená
   ============================================================ */

/* ---------- Proměnné (design tokens) ---------- */
:root {
  /* Barvy */
  --bg: #FAF8F3;            /* teplá bílá pozadí stránky */
  --surface: #FFFFFF;       /* karty, panely */
  --surface-2: #F1EDE3;     /* sekundární plochy */
  --ink: #1F2E26;           /* hlavní text (tmavě zelený uhlík) */
  --ink-soft: #4A5A51;      /* sekundární text */
  --brand: #1B6B4D;         /* přírodní zelená — primární akcent */
  --brand-dark: #11503A;    /* tmavší zelená (footer, hover) */
  --brand-soft: #E6F1EB;    /* světle zelená plocha */
  --accent: #B4552D;        /* terakota — pohotovost, upozornění */
  --accent-soft: #F7E9E1;
  --line: #E5DED0;          /* okraje */
  --white: #FFFFFF;

  /* Typografie */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;

  /* Ostatní */
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(31, 46, 38, .06), 0 4px 14px rgba(31, 46, 38, .05);
  --shadow-md: 0 2px 4px rgba(31, 46, 38, .08), 0 12px 32px rgba(31, 46, 38, .10);
  --container: 1140px;
  --header-h: 72px;
}

/* ---------- Reset / základ ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; }
h3 { font-size: 1.3rem; line-height: 1.25; }
h4 { font-size: 1.05rem; }
ul, ol { padding-left: 1.3em; }
::selection { background: var(--brand); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link pro přístupnost */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-dark);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
main { display: block; }

.section { padding: clamp(48px, 7vw, 84px) 0; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.section--soft { background: var(--brand-soft); }
.section--dark { background: var(--brand-dark); color: var(--bg); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head .kicker {
  display: inline-block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.section--dark .kicker { color: #9FD4B8; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }
.section--dark .section-head p { color: #C9DCD2; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand-soft); color: var(--brand-dark); }
.btn-light { background: var(--white); color: var(--brand-dark); }
.btn-light:hover { background: var(--brand-soft); color: var(--brand-dark); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #93451F; color: var(--white); }

/* ---------- Hlavička / navigace ---------- */
/* ---------- Hlavička / navigace ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px rgba(31, 46, 38, .09);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; transition: transform .3s var(--ease, ease); }
.brand:hover .brand-mark { transform: scale(1.06) rotate(-4deg); }
.brand-name { font-weight: 800; font-size: 1.12rem; line-height: 1.15; letter-spacing: -.01em; }
.brand-name small { display: block; font-size: .72rem; font-weight: 700; color: var(--brand); letter-spacing: .1em; text-transform: uppercase; }

/* desktop menu */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.main-nav > ul > li > a {
  display: block;
  padding: 10px 15px;
  border-radius: 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .96rem;
  transition: background .18s ease, color .18s ease;
}
.main-nav > ul > li > a:hover { background: var(--brand-soft); color: var(--brand-dark); }
.main-nav > ul > li > a[aria-current="page"] { background: var(--brand); color: var(--white); }
.main-nav > ul > li > a[aria-current="page"]:hover { background: var(--brand-dark); color: var(--white); }

/* dropdown trigger šipka (CSS trojúhelník) */
.main-nav .has-sub > a { padding-right: 12px; }
.main-nav .has-sub > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
  opacity: .6;
}
.main-nav .has-sub:hover > a::after { transform: rotate(225deg); opacity: 1; }

/* CTA v hlavičce */
.header-cta { display: inline-flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; font-size: .95rem; }
.nav-cta { box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  transition: color .18s, transform .18s;
}
.nav-toggle:hover { color: var(--brand); }
.nav-toggle .ico-x { display: none; }
.nav-toggle.open { color: var(--brand); }
.nav-toggle.open .ico-burger { display: none; }
.nav-toggle.open .ico-x { display: block; }

/* submenu odkazy — bez podtržení */
.main-nav .submenu a { text-decoration: none; }

/* mobilní extra blok (viditelný jen v overlay menu) */
.nav-mobile-extra { display: none; }

.hero {
  background:
    radial-gradient(70% 90% at 88% -10%, rgba(27, 107, 77, .12), transparent 55%),
    linear-gradient(160deg, var(--brand-soft) 0%, var(--bg) 55%);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 9vw, 104px) 0 clamp(48px, 7vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--brand); }
.hero .lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 34em; margin-bottom: 1.4em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.hero-facts b { display: block; font-size: 1.05rem; color: var(--brand-dark); }
.hero-facts span { font-size: .86rem; color: var(--ink-soft); }

.hero-photo { position: relative; }
.placeholder-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--brand-soft);
}

/* ---------- Karty služeb ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0; }
.card h3 a { text-decoration: none; color: var(--ink); }
.card h3 a:hover { color: var(--brand); }
.card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 0; flex: 1; }
.card .more { font-weight: 800; font-size: .93rem; }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  color: var(--brand);
  margin-bottom: 6px;
}

/* ---------- Proč klinika ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .num {
  font-weight: 800;
  color: var(--brand);
  font-size: 1.3rem;
  line-height: 1;
  min-width: 30px;
}
.why-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.why-item p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 0; }

/* ---------- Tým (teaser i stránka) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.team-card .photo { aspect-ratio: 4 / 5; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 18px 20px 20px; }
.team-card h3 { font-size: 1.08rem; margin-bottom: 2px; }
.team-card .role { color: var(--brand); font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.team-card dl { margin: 0; display: grid; gap: 4px; font-size: .9rem; }
.team-card dt { color: var(--ink-soft); font-weight: 700; }
.team-card dd { margin: 0 0 4px; }
.team-note { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Ordinační hodiny / tabulky ---------- */
.hours-box {
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
}
.hours-box h3 { margin-bottom: 14px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .99rem; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table th { font-weight: 800; width: 42%; color: var(--ink); }
.hours-table td { color: var(--ink-soft); }
.hours-table .now { color: var(--brand-dark); font-weight: 800; }
.emergency-note {
  margin-top: 14px;
  background: var(--accent-soft);
  border: 1px solid #E4C3B0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .92rem;
  color: #6E3A1E;
}
.emergency-note b { color: var(--accent); }

/* ---------- Kontaktní blok / mapa ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.contact-list b { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 2px; }
.contact-list .val { font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.contact-list a.val { text-decoration: none; }
.contact-list a.val:hover { color: var(--brand); text-decoration: underline; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Formulář ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: .92rem; }
.form-field input, .form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: 3px solid rgba(27, 107, 77, .35);
  border-color: var(--brand);
}
.form-hint { font-size: .85rem; color: var(--ink-soft); grid-column: 1 / -1; }

/* ---------- Aktuality ---------- */
.news-list { display: grid; gap: 16px; }
.news-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.news-item .date { font-size: .82rem; font-weight: 800; color: var(--brand); letter-spacing: .08em; text-transform: uppercase; }
.news-item h3 { font-size: 1.1rem; margin: 4px 0 6px; }
.news-item p { margin-bottom: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.04rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--ink-soft); }
.faq details ul { margin: 10px 0 0; color: var(--ink-soft); }

/* ---------- Ceník ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--brand-soft); color: var(--brand-dark); font-weight: 800; }
.price-table td:last-child { font-weight: 800; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-note { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Vybavení / laboratoř ---------- */
.device {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s;
}
.device:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.device h3 { margin-bottom: 8px; }
.device p { color: var(--ink-soft); margin-bottom: 8px; }
.device ul { margin: 0 0 8px; color: var(--ink-soft); }
.device .spec { font-size: .9rem; color: var(--ink-soft); }
.device .spec b { color: var(--brand-dark); }
/* laboratoř — karty v mřížce */
.lab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.lab-grid .device { margin-bottom: 0; }
@media (max-width: 860px) {
  .lab-grid { grid-template-columns: 1fr; }
}

/* výhody vlastní laboratoře */
.lab-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(32px, 4vw, 48px);
}
.lben {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s;
}
.lben:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.lben__ico {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
}
.lben__ico svg { width: 26px; height: 26px; }
.lben h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  color: var(--brand-dark);
}
.lben ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lben li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.lben li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .lab-benefits { grid-template-columns: 1fr; }
}

/* ---------- Patička ---------- */
.site-footer { background: var(--brand-dark); color: #C9DCD2; padding: clamp(40px, 6vw, 64px) 0 0; }
.site-footer h3 { color: var(--white); font-size: 1.02rem; margin-bottom: 14px; }
.site-footer a { color: #9FD4B8; text-decoration: none; }
.site-footer a:hover { text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 40px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; font-size: 15px; }
.footer-grid p { font-size: .95rem; margin-bottom: 8px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name small { color: #9FD4B8; }
/* logo v patičce — přiměřená velikost, na začátku footeru */
.footer-logo { text-align: center; padding-bottom: 26px; }
.footer-logo img { width: 130px; height: auto; display: inline-block; }
/* logo v hlavičce */
.brand-logo { height: 64px; width: auto; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(250, 248, 243, .15);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #9FB8AC;
}

/* ---------- Mobilní menu (celoobrazovkové overlay) ---------- */
@media (max-width: 1080px) {
  /* backdrop-filter na .site-header vytváří containing block pro position:fixed
     → mobilní menu (inset:0) by se roztáhlo jen přes hlavičku (132 px) a otevíralo
     by se "za stránkou". Na mobilu blur rušíme — header má 92 % krytí i bez něj. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 120; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + 10px) 26px 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity .3s var(--ease, ease), transform .3s var(--ease, ease), visibility .3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .main-nav > ul > li { border-bottom: 1px solid var(--line); }
  .main-nav > ul > li > a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.45rem, 5.6vw, 1.9rem);
    letter-spacing: -.01em;
    padding: 15px 6px;
    border-radius: 0;
    color: var(--ink);
  }
  .main-nav > ul > li > a:hover { background: transparent; color: var(--brand); }
  .main-nav > ul > li > a[aria-current="page"] { background: transparent; color: var(--brand); }
  .main-nav .has-sub > a { padding-right: 12px; }
  .main-nav .has-sub > a::after { border-color: var(--brand); }
  .main-nav .has-sub.open > a::after { transform: rotate(225deg); }

  /* akordeon submenu */
  .main-nav .submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease, ease);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 18px;
    margin: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav .has-sub.open .submenu { max-height: 320px; }
  .main-nav .submenu::before { display: none; }
  .main-nav .submenu a {
    padding: 11px 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
  }
  .main-nav .submenu a:hover { background: var(--brand-soft); color: var(--brand-dark); }

  /* kontakt + CTA v overlay menu */
  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-extra .btn-block { width: 100%; justify-content: center; }
  .nav-mobile-tel, .nav-mobile-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.02rem;
  }
  .nav-mobile-tel svg { color: var(--brand); }
  .nav-mobile-mail { color: var(--ink-soft); font-size: .95rem; }
  .nav-mobile-hours {
    margin: 4px 0 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--ink-soft);
  }
  body.menu-open { overflow: hidden; }
  .nav-cta { display: none; }
}

  .header-cta .btn-phone-label { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hours-box { padding: 20px; }
  body { font-size: 16px; }
}

/* ---------- CTA banner (rezervace) ---------- */
/* rychlý kontakt — velké karty */
.kquick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.kq {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s;
}
.kq:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.kq__ico {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  transition: background .2s, color .2s;
}
.kq:hover .kq__ico { background: var(--brand); color: var(--white); }
.kq__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.kq__body b { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.kq__val { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.25; color: var(--ink); }
.kq__body small { font-size: 12px; line-height: 1.4; color: var(--ink-soft); }
.kq__go {
  margin-left: auto;
  align-self: center;
  font-weight: 700;
  color: var(--brand);
  opacity: .5;
  transition: opacity .2s, transform .25s var(--ease, ease);
}
.kq:hover .kq__go { opacity: 1; transform: translateX(4px); }
.kq--cta { background: linear-gradient(160deg, var(--brand-dark), var(--brand)); border-color: transparent; }
.kq--cta .kq__ico { background: rgba(255,255,255,.16); color: var(--white); }
.kq--cta .kq__body b { color: rgba(255,255,255,.75); }
.kq--cta .kq__val { color: var(--white); }
.kq--cta .kq__body small { color: rgba(255,255,255,.8); }
.kq--cta .kq__go { color: var(--white); opacity: .8; }
.kq--cta:hover { border-color: transparent; box-shadow: 0 20px 50px rgba(12, 30, 22, .35); }
.kq--cta:hover .kq__ico { background: rgba(255,255,255,.28); }
@media (max-width: 1080px) {
  .kquick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .kquick-grid { grid-template-columns: 1fr; }
}

/* formulář a mapa — vylepšení */
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 6px; }
.form-hint { font-size: 13px; color: var(--ink-soft); }
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

.cta-banner {
  background: linear-gradient(140deg, var(--brand-dark), var(--brand));
  color: var(--bg);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.cta-banner h2, .cta-banner h3 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #C9DCD2; margin-bottom: 0; max-width: 42em; }
.cta-banner .btn { flex-shrink: 0; }

/* ---------- Rezervace (REZERVACE.html) ---------- */
.res-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.res-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 20px; }
.res-day {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.res-day .dow { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.res-day .free { display: block; font-size: .78rem; color: var(--brand); margin-top: 3px; }
.res-day.disabled { opacity: .45; cursor: not-allowed; }
.res-day.selected { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 0 0 2px rgba(27,107,77,.25); }
.res-day.past { opacity: .4; cursor: not-allowed; }

.res-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.slot {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 9px 6px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  color: var(--brand-dark);
  transition: all .15s ease;
}
.slot:hover:not(:disabled) { border-color: var(--brand); background: var(--brand-soft); }
.slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.slot.selected { background: var(--brand); border-color: var(--brand); color: var(--white); }
.res-info { font-size: .92rem; color: var(--ink-soft); margin-bottom: 14px; }
.res-confirm {
  display: none;
  background: var(--brand-soft);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--brand-dark);
}
.res-confirm.visible { display: block; }
.res-note { font-size: .88rem; color: var(--ink-soft); margin-top: 14px; }

@media (max-width: 960px) {
  .res-layout { grid-template-columns: 1fr; }
  .res-week { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Pohybová redukce ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- laboratorní galerie (fotky přístrojů) ---------- */
.lab-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.lab-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.lab-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.lab-gallery figcaption {
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
/* ============================================================
   DROPDOWN MENU (Klinika) — desktop
   ============================================================ */
.main-nav li { position: relative; }
.main-nav .has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; z-index: 59; }
.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 215px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(31, 46, 38, .16), 0 6px 18px rgba(31, 46, 38, .07);
  padding: 8px;
  z-index: 60;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.main-nav .submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--surface);
  filter: drop-shadow(0 -1px 1px rgba(31,46,38,.08));
}
.main-nav .has-sub:hover .submenu,
.main-nav .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.main-nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.main-nav .submenu a:hover { background: var(--brand-soft); color: var(--brand-dark); }

/* ============================================================
   INFOGRAPHIC — Příprava na návštěvu
   ============================================================ */
.info-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 clamp(32px, 5vw, 56px);
}
.info-h2 em { font-style: italic; color: var(--brand); }

/* kroky — časová osa */
.steps { position: relative; display: flex; flex-direction: column; gap: clamp(24px, 4vw, 40px); }
.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  opacity: .25;
}
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; }
.step__num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--bg);
}
.step__body {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 320px);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.step:hover .step__body { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step__text h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2.6vw, 26px); margin: 0 0 10px; }
.step__text p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 8px; }
.step__note {
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px !important;
  color: var(--ink) !important;
}
.step__media { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.step__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: var(--brand-soft);
}
.btn-sm { padding: 9px 16px; font-size: .88rem; }

/* hladovky */
.fast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.fast {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
}
.fast b { font-family: var(--font-display); font-size: 22px; color: var(--brand); line-height: 1; }
.fast span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.fast--long b { color: var(--accent); }
.fast--long { border-color: rgba(180, 85, 45, .4); }
.fast--none b { color: var(--ok, #2E8B57); }
.fast--none { border-color: rgba(46, 139, 87, .4); }

/* co s sebou — icon chips */
.step__media--icons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.icon-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}
.icon-chip span { font-size: 26px; line-height: 1; }

/* checklist v kroku 3 */
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pohotovost — tmavý pás */
.pohotovost { background: var(--brand-dark); color: var(--white); }
.pohotovost .kicker--light { color: #FFC9A3; }
.pohotovost h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.6vw, 40px); margin: 10px 0 0; }
.pohotovost h2 em { font-style: italic; color: #FFC9A3; }
.pohotovost__grid { display: grid; grid-template-columns: minmax(200px, 320px) 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.pohotovost__items { display: grid; gap: 14px; }
.pohotovost__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
}
.pohotovost__item b { font-size: 15px; }
.pohotovost__item span { font-size: 13.5px; color: rgba(255, 255, 255, .78); line-height: 1.5; }

/* rychlá kontrola */
.check-big {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  background: var(--surface);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.check-big h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3.4vw, 38px); margin: 0 0 22px; }
.check-big h2 em { font-style: italic; color: var(--brand); }
.check-final { list-style: none; margin: 0 0 26px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.check-final li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--ink); }
.cb {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.check-big__cta { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
  .step__body { grid-template-columns: 1fr; }
  .step__media--icons { grid-template-columns: repeat(4, 1fr); }
  .pohotovost__grid { grid-template-columns: 1fr; }
  .check-final { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .step { grid-template-columns: 44px 1fr; gap: 12px; }
  .steps::before { left: 21px; }
  .step__num { width: 44px; height: 44px; font-size: 16px; box-shadow: 0 0 0 5px var(--bg); }
  .fast-grid { grid-template-columns: 1fr; }
  .step__media--icons { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LANDING PAGE — nová hlavní stránka (svěží, živá, moderní)
   ============================================================ */
/* hero */
.land-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(52% 60% at 12% 8%, rgba(27, 107, 77, .14), transparent 60%),
    radial-gradient(44% 55% at 92% 20%, rgba(180, 85, 45, .10), transparent 60%),
    linear-gradient(165deg, var(--brand-soft) 0%, var(--bg) 48%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 88px) 0;
}
.land-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.land-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.land-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.land-title em { font-style: italic; color: var(--brand); }
.land-sub {
  font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 26px;
}
.land-sub b { color: var(--brand-dark); }
.land-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
/* trust badge → ikonové karty */
.land-trust { list-style: none; display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 10px; margin: 0; padding: 0; }
.land-trust__item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 9px 14px 9px 10px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease, ease), box-shadow .2s var(--ease, ease), border-color .2s;
}
.land-trust__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.land-trust__item .lt-ico {
  width: 38px; height: 38px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; border-radius: 11px;
  background: var(--brand-soft);
}
.land-trust__item b { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.land-trust__item small { display: block; font-size: 11px; color: var(--ink-soft); line-height: 1.2; }
.lt-ico { font-size: 14px; }

/* hero media + plovoucí karty */
.land-hero__media { position: relative; }
.land-hero__img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(31, 46, 38, .22);
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 14px 40px rgba(31, 46, 38, .16);
  animation: float 5s ease-in-out infinite;
}
.float-card b { display: block; font-size: 13px; line-height: 1.2; }
.float-card small { display: block; font-size: 11px; color: var(--ink-soft); }
.float-card__ico { font-size: 22px; }
.float-card--ct { top: 6%; left: -26px; animation-delay: 0s; }
.float-card--posudek { bottom: 22%; right: -22px; animation-delay: 1.2s; }
.float-card--pohotovost { bottom: -4%; left: 14%; animation-delay: 2.1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* marquee */
.land-marquee {
  background: var(--brand-dark);
  color: var(--white);
  overflow: hidden;
  padding: 13px 0;
  border-block: 1px solid rgba(255, 255, 255, .08);
}
.land-marquee__track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.land-marquee__track span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
}
.land-marquee__track i { color: #FFC9A3; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .land-marquee__track { animation: none; flex-wrap: wrap; }
}

/* head sekcí */
.land-head { max-width: 720px; margin: 0 0 clamp(30px, 4.5vw, 52px); }
.land-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.08;
  margin: 8px 0 12px;
}
.land-head h2 em { font-style: italic; color: var(--brand); }
.land-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0; }

/* 3 unikáty — karty s fotkou */
.land-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease);
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, var(--brand-soft), transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::after { opacity: 1; }
.why-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease, ease);
}
.why-card:hover > img { transform: scale(1.04); }
.why-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 26px;
  z-index: 1;
}
.why-card__num {
  position: absolute;
  top: -34px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  color: var(--surface);
  text-shadow: 0 2px 18px rgba(31, 46, 38, .45);
}
.why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0; padding-right: 52px; }
.why-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.why-card__tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 5px 12px;
  position: relative;
  z-index: 1;
}
.why-card--posudek .why-card__tag { background: var(--accent-soft); color: var(--accent); }
.why-card--pohotovost .why-card__tag { background: var(--brand-soft); color: var(--brand); }

/* features grid */
.land-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.feat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s var(--ease, ease), border-color .2s, box-shadow .2s;
}
.feat:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.feat__ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.feat h3 { font-size: 16px; margin: 0 0 3px; }
.feat p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; margin: 0; }
.feat__go { margin-left: auto; font-size: 18px; color: var(--brand); opacity: 0; transform: translateX(-6px); transition: all .2s; }
.feat:hover .feat__go { opacity: 1; transform: none; }

/* statistiky (tmavé) */

.land-review-sec .container { position: relative; }
/* recenze */
.land-review {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(24px, 4vw, 48px);
}
.land-review__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.lrb {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: 999px;
  padding: 6px 13px;
}
.land-review__stars { font-size: 26px; color: #F5B301; letter-spacing: 3px; margin-bottom: 18px; }
.land-review__stars span { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: 0; margin-left: 8px; }
.land-review blockquote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.8vw, 27px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 14px;
  font-style: italic;
}
.land-review__src { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* CTA */
.land-cta { padding: clamp(40px, 6vw, 72px) 0; }
.land-cta__box {
  text-align: center;
  padding: clamp(40px, 7vw, 76px) clamp(24px, 5vw, 60px);
  border-radius: calc(var(--radius) * 1.6);
  background:
    radial-gradient(70% 90% at 85% -10%, rgba(255, 201, 163, .25), transparent 55%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
}
.land-cta__box h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4.4vw, 50px); margin: 0 0 12px; line-height: 1.1; }
.land-cta__box h2 em { font-style: italic; color: #FFC9A3; }
.land-cta__box p { color: rgba(255, 255, 255, .85); font-size: 16.5px; margin: 0 0 26px; }
.land-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.land-cta__box .btn-primary { background: var(--white); color: var(--brand-dark); }
.land-cta__box .btn-primary:hover { background: #FFC9A3; }
.land-cta__box .btn-outline { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.land-cta__box .btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }

/* responzivita */
@media (max-width: 960px) {
  .land-hero__grid { grid-template-columns: 1fr; }
  .land-why { grid-template-columns: 1fr; }
  .float-card--ct { left: 8px; }
  .float-card--posudek { right: 8px; }
}
@media (max-width: 560px) {
  .float-card { padding: 8px 10px; }
  .float-card b { font-size: 12px; }
  .float-card small { font-size: 10px; }
  .float-card--ct { top: 4%; left: 4px; }
  .float-card--posudek { bottom: 18%; right: 4px; }
  .float-card--pohotovost { bottom: -3%; left: 8%; }
}

/* ============================================================
   NAVIGACE v2 — úplně nové menu (underline, 2 dropdowny)
   ============================================================ */
/* desktop: položky bez pill, s animovaným podtržením */
.main-nav > ul > li > a {
  background: transparent !important;
  border-radius: 0;
  padding: 9px 6px;
  position: relative;
  color: var(--ink);
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease, ease);
}
.main-nav > ul > li > a:hover { color: var(--brand-dark); background: transparent !important; }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav > ul > li > a[aria-current="page"] { color: var(--brand); background: transparent !important; }
.main-nav > ul > li > a[aria-current="page"]:hover { color: var(--brand-dark); background: transparent !important; }

/* šipka u dropdownů */
.main-nav .has-sub > a { padding-right: 16px; }
.main-nav .has-sub > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: .65;
  transition: transform .2s ease, opacity .2s ease;
}
.main-nav .has-sub:hover > a::after,
.main-nav .has-sub.open > a::after { transform: rotate(225deg); opacity: 1; }

/* dropdown panely */
.main-nav .submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(31, 46, 38, .16), 0 6px 18px rgba(31, 46, 38, .07);
  padding: 8px;
  z-index: 60;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.main-nav .submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--surface);
}
.main-nav .has-sub:hover .submenu,
.main-nav .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.main-nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
  background: transparent;
}
.main-nav .submenu a:hover { background: var(--brand-soft); color: var(--brand-dark); }
.main-nav .submenu a[aria-current="page"] { color: var(--brand); background: var(--brand-soft); }

/* CTA v hlavičce */
.header-cta { display: inline-flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; font-size: .95rem; }
.nav-cta { box-shadow: var(--shadow-sm); }

/* mobilní overlay v2 — jemnější fade + slide, lepší položky */
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 120; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + 8px) 26px 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .28s var(--ease, ease), transform .28s var(--ease, ease), visibility .28s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .main-nav > ul > li { border-bottom: 1px solid var(--line); }
  .main-nav > ul > li > a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 5.8vw, 2rem);
    letter-spacing: -.01em;
    padding: 16px 4px;
    color: var(--ink);
    background: transparent !important;
  }
  .main-nav > ul > li > a::after { display: none; }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a[aria-current="page"] { color: var(--brand); background: transparent !important; }

  /* akordeon */
  .main-nav .submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease, ease);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav .has-sub.open .submenu { max-height: 340px; }
  .main-nav .submenu::before { display: none; }
  .main-nav .submenu a {
    padding: 12px 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: normal;
  }
  .main-nav .submenu a:hover { background: var(--brand-soft); color: var(--brand-dark); }
  .main-nav .submenu a[aria-current="page"] { color: var(--brand); background: transparent; }

  /* kontakt + CTA v overlay menu */
  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-extra .btn-block { width: 100%; justify-content: center; }
  .nav-mobile-tel, .nav-mobile-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.02rem;
  }
  .nav-mobile-tel svg { color: var(--brand); }
  .nav-mobile-mail { color: var(--ink-soft); font-size: .95rem; }
  .nav-mobile-hours { margin: 4px 0 0; text-align: center; font-size: 12.5px; color: var(--ink-soft); }
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   SLUŽBY — vtipné jednobarevné ikony
   ============================================================ */
.svc-ico {
  width: 26px;
  height: 26px;
  color: var(--brand);
  display: block;
  stroke-width: 2;
}
.card .svc-ico {
  padding: 14px;
  background: var(--brand-soft);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: transform .25s var(--ease, ease), background .2s ease, color .2s ease;
}
.card:hover .svc-ico {
  transform: translateY(-3px);
  background: var(--brand);
  color: var(--white);
}
h2 .svc-ico {
  width: 22px;
  height: 22px;
  padding: 9px;
  background: var(--brand-soft);
  border-radius: 11px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px 6px 0;
  color: var(--brand);
}
.section--tint h2 .svc-ico { background: var(--accent-soft); color: var(--accent); }
@media (max-width: 560px) {
  .card .svc-ico { width: 22px; height: 22px; padding: 11px; border-radius: 13px; }
  h2 .svc-ico { width: 20px; height: 20px; padding: 8px; margin-right: 8px; }
}

/* titulky: žádná kurzíva — zvýraznění barvou */
h1 em, h2 em, h3 em, .land-title em, .klinika-title em, .klinika-bigtext em,
.land-cta__box h2 em, .klinika-cta__box h2 em, .info-h2 em, .check-big h2 em,
.page-cta__box h2 em, .pohotovost h2 em {
  font-style: normal;
  color: var(--brand);
}
.section--dark h2 em, .land-cta__box h2 em, .klinika-cta__box h2 em, .page-cta__box h2 em { color: #FFC9A3; }
h1 em, .land-title em, .klinika-title em { color: var(--brand); }
/* display font víc tučný */
h1, h2, h3, .land-title, .klinika-title, .klinika-bigtext { font-weight: 700; }

/* ============================================================
   NAVIGACE v3 — čistá, jednoduchá, funkční
   ============================================================ */
/* desktop */
.main-nav > ul > li > a {
  background: transparent !important;
  border-radius: 0;
  padding: 10px 16px;
  position: relative;
  color: var(--ink);
  font-weight: 700;
  font-size: .97rem;
}
.main-nav > ul > li > a::after { display: none; }
.main-nav > ul > li > a:hover { background: var(--brand-soft) !important; color: var(--brand-dark); }
.main-nav > ul > li > a[aria-current="page"] { background: var(--brand) !important; color: var(--white) !important; }
.main-nav > ul > li > a[aria-current="page"]:hover { background: var(--brand-dark) !important; color: var(--white) !important; }

/* šipka dropdownů */
.main-nav .has-sub > a { padding-right: 12px; }
.main-nav .has-sub > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
  opacity: .6;
  transition: transform .2s ease;
}
.main-nav .has-sub:hover > a::after,
.main-nav .has-sub.open > a::after { transform: rotate(225deg); }

/* dropdown panely */
.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(31, 46, 38, .16), 0 6px 18px rgba(31, 46, 38, .07);
  padding: 8px;
  z-index: 60;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.main-nav .submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--surface);
}
.main-nav .has-sub:hover .submenu,
.main-nav .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.main-nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
  background: transparent !important;
}
.main-nav .submenu a:hover { background: var(--brand-soft) !important; color: var(--brand-dark); }
.main-nav .submenu a[aria-current="page"] { color: var(--brand); background: var(--brand-soft) !important; }

/* mobilní overlay v3 — čistý fullscreen */
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 120; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + 12px) 24px 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s var(--ease, ease), transform .25s var(--ease, ease), visibility .25s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 6px; border-top: 1px solid var(--line); padding-top: 14px; }
  .main-nav > ul > li { border: none; }
  .main-nav > ul > li > a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.35rem, 5vw, 1.7rem);
    padding: 13px 14px;
    border-radius: 0;
    color: var(--ink);
    background: transparent !important;
  }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a[aria-current="page"] { background: var(--brand) !important; color: var(--white) !important; }

  /* akordeon */
  .main-nav .submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease, ease);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 14px;
    margin: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav .has-sub.open .submenu { max-height: 360px; }
  .main-nav .submenu::before { display: none; }
  .main-nav .submenu a {
    padding: 11px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: normal;
    border-radius: 10px;
  }
  .main-nav .submenu a:hover,
  .main-nav .submenu a[aria-current="page"] { background: var(--brand-soft) !important; color: var(--brand-dark); }

  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-extra .btn-block { width: 100%; justify-content: center; }
  .nav-mobile-tel, .nav-mobile-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.02rem;
  }
  .nav-mobile-tel svg { color: var(--brand); }
  .nav-mobile-mail { color: var(--ink-soft); font-size: .95rem; }
  .nav-mobile-hours { margin: 4px 0 0; text-align: center; font-size: 12.5px; color: var(--ink-soft); }
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   KLINIKA v2 — o klinice, karty s fotkami, galerie
   ============================================================ */
.klinika-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.klinika-about__media { position: relative; }
.klinika-about__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.klinika-about__media2 {
  position: absolute;
  width: 46% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 16px !important;
  border: 5px solid var(--surface);
  bottom: -34px;
  right: -18px;
  box-shadow: var(--shadow-md) !important;
}
.klinika-about__text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.1;
  margin: 8px 0 16px;
}
.klinika-about__text p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 12px; }
.klinika-about__list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.klinika-about__list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 14.5px;
}
.klinika-about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sekce O KLINICE — 100% výška + stats blok */
.klinika-about-sec {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.klinika-about { position: relative; }
.klinika-stats-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 36px);
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}
.kstat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.kstat__ico {
  width: 34px;
  height: 34px;
  flex: none;
  padding: 7px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-top: 3px;
}
.kstat__txt { display: flex; flex-direction: column; gap: 2px; }
.kstat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  color: var(--brand-dark);
}
.kstat__label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.kstat__note {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* 4 pilíře — karty s fotkami */
.klinika-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.kcard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease);
}
.kcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.kcard img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease, ease);
}
.kcard:hover img { transform: scale(1.04); }
.kcard__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.kcard__body h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0; }
.kcard__body p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; flex: 1; }
.kcard__go { font-weight: 700; font-size: 14px; color: var(--brand); }
.kcard:hover .kcard__go { color: var(--accent); }

/* galerie */
.klinika-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.klinika-gallery figure { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.klinika-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.klinika-gallery figcaption { padding: 10px 14px; font-size: 13px; font-weight: 600; }
.klinika-gallery__cta { margin-top: 24px; text-align: center; }
@media (max-width: 860px) {
  .klinika-about { grid-template-columns: 1fr; }
  .klinika-about__media2 { right: 8px; }
  .klinika-stats-block { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .klinika-stats-block { grid-template-columns: 1fr; }
}

/* fotky v obsahu stránek */
.content-foto {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.content-foto--wide { width: min(100%, 980px); }
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
.content-grid-2 img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); }
@media (max-width: 720px) {
  .content-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   KLINIKA hero v2 — obrázek bez pozadí
   ============================================================ */
.klinika-hero2 {
  min-height: 100vh;
  min-height: 100svh; /* mobilní prohlížeče — bez skoku při scroll baru */
  display: flex;
  align-items: center;
}
.klinika-hero2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  max-width: 860px;
}
.klinika-hero2__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.klinika-hero2__img {
  width: min(340px, 78%);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(31, 46, 38, .28));
  animation: heroFloat 5.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 900px) {
  .klinika-hero2__grid { grid-template-columns: 1fr; }
  .klinika-hero2__img { width: min(280px, 70%); margin-top: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .klinika-hero2__img { animation: none; }
}

/* ============================================================
   FOOTER v2 — více sloupců + informační panely
   ============================================================ */
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-brand-col p { max-width: 300px; }
.footer-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.fpanel {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 17px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
}
.fpanel__note { color: #FFC9A3; font-size: 12.5px; }
/* adresa + logo v patičce vedle sebe */
.footer-addr { display: flex; align-items: center; gap: 16px; }
.footer-addr__logo { height: 80px; width: auto; flex: none; }
.footer-addr__txt p { font-size: 13.5px; line-height: 1.45; margin-bottom: 2px; }
@media (max-width: 1000px) {
  .footer-panels { grid-template-columns: repeat(2, 1fr); }
}
.fpanel__ico {
  font-size: 24px;
  line-height: 1.2;
  flex-shrink: 0;
}
.fpanel b { display: block; font-size: 14px; margin-bottom: 4px; }
.fpanel span { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.75); }
.fpanel a { color: #9FD4B8; text-decoration: none; }
.fpanel a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom a { color: #9FD4B8; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-panels { grid-template-columns: repeat(2, 1fr); }
  .footer-panels .fpanel { padding: 12px 14px; }
}

/* ============================================================
   CLEAN styl (vybavení + laboratoř) — světlý hero + mřížka karet
   ============================================================ */
.clean-hero {
  background:
    linear-gradient(180deg, rgba(250, 248, 243, .98) 0%, rgba(250, 248, 243, .92) 60%, rgba(250, 248, 243, .86) 100%),
    var(--hero-img) center / cover no-repeat;
}
.clean-hero .section-head { max-width: 860px; }
.clean-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  margin: 8px 0 16px;
}
.clean-hero p { max-width: 640px; font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); }

.clean-grid-sec { padding-top: clamp(28px, 4vw, 48px); }
.clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cgrid-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s;
}
.cgrid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--brand); }
.cgrid-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--brand-dark);
}
.cgrid-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) {
  .clean-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .clean-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REZERVACE v2 — jednovrstvý systém (kalendář + časy + formulář)
   ============================================================ */
/* hero + formulář dohromady 100 % výšky obrazovky */
.rsv-main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h, 76px));
  min-height: calc(100svh - var(--header-h, 76px));
}
.rsv-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
}
.rsv-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.rsv-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: start;
}
.rsv-left, .rsv-right { display: flex; flex-direction: column; gap: 20px; }
.rsv-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
}
.rsv-panel--form { position: sticky; top: calc(var(--header-h) + 16px); }
.rsv-panel__head h2 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 6px; }
.rsv-hint { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 14px; }
.rsv-pick { color: var(--brand); }

/* kalendář */
.rsv-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.rsv-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 4px 8px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .15s ease;
}
.rsv-day:hover { border-color: var(--brand); background: var(--brand-soft); }
.rsv-day--today { border-color: var(--accent); }
.rsv-day--sel { border-color: var(--brand); background: var(--brand); color: var(--white); }
.rsv-day--sel .rsv-day__cap { color: rgba(255,255,255,.85); }
.rsv-day--full { opacity: .5; cursor: not-allowed; }
.rsv-day__name { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .75; }
.rsv-day__num { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.1; }
.rsv-day__cap { font-size: 10px; font-weight: 600; color: var(--brand); }
.rsv-day__cap--full { color: var(--accent); }

/* sloty */
.rsv-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
}
.rsv-slot {
  padding: 10px 6px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-family: var(--font-mono, monospace);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  cursor: pointer;
  transition: all .15s ease;
}
.rsv-slot:hover:not(:disabled) { border-color: var(--brand); background: var(--brand-soft); }
.rsv-slot--sel { border-color: var(--brand); background: var(--brand); color: var(--white); }
.rsv-slot--taken {
  opacity: .45;
  cursor: not-allowed;
  text-decoration: line-through;
  color: var(--ink-soft);
  background: var(--bg);
}

/* formulář */
.rsv-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rsv-field { display: flex; flex-direction: column; gap: 5px; }
.rsv-field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.rsv-field input, .rsv-field select {
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  transition: border-color .15s ease;
}
.rsv-field input:focus, .rsv-field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(27,107,77,.12); }
.rsv-field input.rsv-input--err { border-color: var(--bad, #D64545); }
.rsv-err { font-size: 11.5px; color: var(--bad, #D64545); min-height: 0; }
.rsv-privacy { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin: 14px 0; }
.btn-block { width: 100%; justify-content: center; }

/* potvrzení */
.rsv-done { text-align: center; padding: clamp(32px, 6vw, 64px); max-width: 640px; margin: 0 auto; }
.rsv-done__ico {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn .5s var(--ease, ease);
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.rsv-done__code {
  font-family: var(--font-mono, monospace);
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 3px 10px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .rsv-layout { grid-template-columns: 1fr; }
  .rsv-panel--form { position: static; }
  .rsv-days { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .rsv-days { grid-template-columns: repeat(3, 1fr); }
  .rsv-form__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ANIMACE — scroll-driven (2026-08-18)
   html.js prefix: bez JS zůstává obsah viditelný
   ============================================================ */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
html.js .reveal.is-in,
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
/* stagger pro 5 kroků „Cesta k ošetření“ */
html.js .steps .step:nth-child(1) { --d: 0ms; }
html.js .steps .step:nth-child(2) { --d: 130ms; }
html.js .steps .step:nth-child(3) { --d: 260ms; }
html.js .steps .step:nth-child(4) { --d: 390ms; }
html.js .steps .step:nth-child(5) { --d: 520ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   POHOTOVOST — vylepšený blok (2026-08-18)
   ============================================================ */
.pohotovost__lead { margin: 14px 0 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 34ch; }
.pohotovost__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: var(--white); }
.pohotovost__hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.pohotovost__hours > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}
.pohotovost__hours b { font-size: 13.5px; color: #FFC9A3; }
.pohotovost__hours span { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.4; }
@media (max-width: 640px) {
  .pohotovost__hours { grid-template-columns: 1fr; }
}

/* ============================================================
   OPRAVY 2026-08-18 (pokračování)
   ============================================================ */
/* mobilní akordeon: neviditelný most nesmí překrývat položky */
@media (max-width: 1080px) {
  .main-nav .has-sub::after { display: none; }
}

/* hero s fotkou (.hero--foto) — chybělo celé CSS */
.hero--foto {
  position: relative;
  background:
    linear-gradient(90deg, rgba(250,248,243,.96) 0%, rgba(250,248,243,.86) 45%, rgba(250,248,243,.45) 100%),
    var(--hero-img) center / cover no-repeat;
}
/* hero--foto: pozadí scrolluje s obsahem (background-attachment:fixed
   způsobovalo v Safari artefakty — pohyb/zachvěvy prvků uvnitř hero,
   viz .hero-kocka/.hero-kralik) */
.hero--foto { background-attachment: scroll; }

/* jemný scroll parallax pro obrázky s data-parallax (JS) */
[data-parallax] { will-change: transform; }

/* hero full-width s fotkou (kontakt) */
.hero--foto-full {
  min-height: 100vh;
  min-height: 100svh; /* mobilní prohlížeče */
  display: flex;
  align-items: center;
  padding: clamp(72px, 11vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(12, 30, 22, .80) 0%, rgba(12, 30, 22, .48) 55%, rgba(12, 30, 22, .18) 100%),
    var(--hero-img) center / cover no-repeat;
}
.hero--foto-full .section-head h1,
.hero--foto-full .section-head p { color: #fff; }
.hero--foto-full .kicker { color: #FFC9A3; }
.hero--foto-full .section-head a { color: #9FD4B8; text-decoration: underline; }

/* ============================================================
   HERO homepage — úpravy 2026-08-18 (trust line, kočka, CTA dominance)
   ============================================================ */
/* primární CTA v hero je jasně dominantní (větší než sekundární) */
.hero-actions .btn-primary {
  padding: 15px 30px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
}
/* nenápadný informační řádek pod CTA (trust line) */
.section-head .lv-trust {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-soft);
  line-height: 1.55;
}
.lv-trust b { color: var(--brand-dark); }
@media (max-width: 560px) {
  .section-head .lv-trust { font-size: 12.5px; letter-spacing: .02em; }
}
/* mobil: CTA pod sebou na plnou šířku (duplikát pravidla na konci souboru
   kvůli dřívějšímu konfliktu v kaskádě — garantuje aplikaci) */
@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
}
/* kočičí pacient vykukuje z pravého dolního rohu OBRAZOVKY (jen desktop).
   position: fixed → kotva k viewportu: při scrollování zvíře zůstává
   na stejném místě na monitoru (oprava 2026-08-19: bylo position:absolute,
   kočka odjížděla s hero sekcí). transform posune obrázek částečně
   za pravý/spodní okraj → vidět je jen hlava, tělo „schované za rohem". */
.hero-kocka {
  position: fixed;
  right: 0;
  bottom: 0;
  width: clamp(63px, 6.75vw, 90px); /* o 25 % menší než dříve (84–120 px) */
  height: auto;
  z-index: 90; /* nad obsahem stránky (z 1–60), pod hlavičkou (100) */
  transform: translate(calc(-14% - 8px), 32%); /* posunuto doleva do záběru (2026-08-19) */
  filter: drop-shadow(0 16px 24px rgba(31, 46, 38, .26));
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-kocka { display: none; }
}

/* ============================================================
   VYBAVENÍ hero v2 — emocionální claim + pes s brýlemi (2026-08-18)
   Scoped na .vyb-hero, ostatní stránky se nemění.
   Typografie škáluje podle šířky I výšky viewportu (min(vw, vh)),
   hero vyplní celou první obrazovku (100svh) a obsah je vycentrovaný.
   ============================================================ */
.vyb-hero {
  min-height: 100vh;
  min-height: 100svh; /* mobilní prohlížeče — bez skoku při scroll baru */
  display: flex;
  align-items: center;
}
.vyb-hero .section-head { max-width: 900px; }
.vyb-hero .kicker {
  font-size: clamp(13px, 1.15vw, 15px);
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.vyb-hero h1 {
  font-size: clamp(38px, min(7vw, 11vh), 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.vyb-hero p {
  max-width: 680px;
  font-size: clamp(16px, min(2.1vw, 3.4vh), 20px);
  line-height: 1.6;
}
.vyb-hero .hero-actions { margin-bottom: 24px; }
.vyb-hero .btn-primary {
  padding: 17px 34px;
  font-size: 1.08rem;
}
.vyb-hero .lv-trust { font-size: 14px; }
/* pes s brýlemi — cutout v pravém dolním rohu hero (jen desktop,
   skrývá ho už .hero-kocka @media max-width:900px).
   VYBAVENÍ má vlastní design: pes zůstává absolutní uvnitř hero
   (NE fixed jako kočka/králík), proto explicitní position:absolute. */
.hero-kocka.vyb-pes {
  position: absolute;
  width: clamp(150px, min(16vw, 20vh), 240px);
  bottom: clamp(20px, 5vh, 56px);
  right: clamp(20px, 6vw, 90px);
  z-index: 2;
  transform: rotate(-3deg);
}
/* mobil: utáhnout H1, aby se claim vešel na 2 čisté řádky */
@media (max-width: 560px) {
  .vyb-hero h1 { letter-spacing: -0.04em; }
}

/* králičí pacient (klinika) — stejný vzor jako .hero-kocka:
   position: fixed → vykukuje z pravého dolního rohu OBRAZOVKY
   a při scrollování zůstává na místě (oprava 2026-08-19) */
.hero-kralik {
  position: fixed;
  right: 0;
  bottom: 0;
  width: clamp(76px, 7.5vw, 112px);
  height: auto;
  z-index: 90;
  transform: translate(20%, 25%);
  filter: drop-shadow(0 14px 22px rgba(31, 46, 38, .25));
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-kralik { display: none; }
}

/* ============================================================
   PRIprava-navstevy: Rychlá kontrola — text 1 sloupec + pes napravo
   (bez obrysu) + FAQ členěný do skupin (2026-08-18)
   ============================================================ */
.check-big--psa {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  border: 0;
}
.check-big--psa .check-big__text { min-width: 0; }
.check-big--psa .check-final { grid-template-columns: 1fr; gap: 10px 0; margin-bottom: 24px; }
.check-big--psa .check-big__foto {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  /* pes stojí na spodní hraně bloku (přes spodní padding karty) */
  margin-bottom: calc(-1 * clamp(28px, 5vw, 56px));
}
.check-big--psa .check-big__foto img {
  height: 100%;
  max-height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(31, 46, 38, .28));
}
.faq-group { margin-bottom: clamp(30px, 4vw, 46px); }
.faq-group__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 16px;
}
.faq-group__title::before {
  content: "";
  width: 8px;
  height: 22px;
  border-radius: 4px;
  background: var(--brand);
  flex-shrink: 0;
}
.faq-group .faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.faq-group .faq details { margin-bottom: 0; }
@media (max-width: 900px) {
  .check-big--psa { grid-template-columns: 1fr; }
  .check-big--psa .check-big__foto img { height: auto; width: min(280px, 70%); margin: 6px auto 0; }
}
@media (max-width: 860px) {
  .faq-group .faq { grid-template-columns: 1fr; }
}

/* REZERVACE hero: slabší overlay, aby byla fotka (pes) vidět
   — .hero--foto gradient by ji jinak skoro celou potlačil (2026-08-18) */
.hero.rsv-hero {
  background:
    linear-gradient(90deg, rgba(250,248,243,.92) 0%, rgba(250,248,243,.78) 42%, rgba(250,248,243,.38) 100%),
    var(--hero-img) center / cover no-repeat;
}

/* ============================================================
   SLUŽBY (index) — text vlevo, pes vpravo (2026-08-18)
   ============================================================ */
.sluzby-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(30px, 4.5vw, 52px);
}
.sluzby-grid .land-head { margin: 0; }
.sluzby-pes-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.sluzby-pes {
  width: 106%;
  max-width: none;
  height: auto;
  filter: none;
}
@media (max-width: 860px) {
  .sluzby-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRO PACIENTY (hlavní stránka) — quick karty + info grid (2026-08-18)
   Přesunuto ze staging/pro-pacienty-v2.html po schválení.
   ============================================================ */
.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.quick-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start; }
.quick-card__ico { font-size: 26px; line-height: 1; }
.quick-card b { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 6px; }
.quick-card span { display: block; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.quick-card a { color: var(--brand); font-weight: 600; }
.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 40px); align-items: start; }
@media (max-width: 760px) { .info-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   KONTAKT REDESIGN 2026-08-19 — prémiová kontaktní stránka
   ============================================================ */

/* --- Hero: cinematic 70–78 vh, tmavý gradient zleva doprava --- */
.hero--kontakt {
  min-height: clamp(560px, 74vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    linear-gradient(90deg, rgba(9, 28, 20, .88) 0%, rgba(9, 28, 20, .64) 38%, rgba(9, 28, 20, .28) 68%, rgba(9, 28, 20, .04) 100%),
    var(--hero-img) center / cover no-repeat;
}
.hero--kontakt .section-head { text-shadow: 0 1px 28px rgba(9, 28, 20, .38); }
.hero--kontakt .section-head { max-width: 660px; margin: 0; }
.hero--kontakt .kicker { color: #FFC9A3; font-size: 13px; font-weight: 700; letter-spacing: .16em; }
.hero--kontakt h1 {
  color: #fff;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  max-width: 640px;
  margin: 12px 0 18px;
}
.hero--kontakt .section-head p {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 560px;
}
.hero--kontakt .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }
.hero--kontakt .hero-actions .btn { min-height: 52px; padding: 14px 30px; font-size: 1.02rem; }
/* sekundární tlačítko na tmavé fotografii — světlé, bez skla */
.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .2); color: #fff; border-color: rgba(255, 255, 255, .55); }
/* status "Nyní otevřeno/zavřeno" — chip u mapy (původní umístění) */
.map-head__side { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.open-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6FBF8F;
  flex: none;
  box-shadow: 0 0 0 4px rgba(111, 191, 143, .18);
}
.open-status--closed .open-status__dot { background: #E0966F; box-shadow: 0 0 0 4px rgba(224, 150, 111, .18); }
.open-status__txt b { display: block; font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.open-status__txt small { display: block; font-size: 12.5px; color: var(--ink-soft); line-height: 1.35; }

/* --- Rychlý kontaktní pruh (překrývá spodní hranu hero) --- */
.kquick { position: relative; z-index: 6; padding: 0 0 clamp(56px, 8vw, 110px); }
@media (min-width: 901px) {
  .kquick--overlap { margin-top: clamp(-92px, -7vw, -60px); }
}
.kquick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.kq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.kq:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(27, 107, 77, .35); text-decoration: none; }
.kq__ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  transition: background .25s ease, color .25s ease;
}
.kq:hover .kq__ico { background: var(--brand); color: #fff; }
.kq__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.kq__body b { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.kq__val { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 1.7vw, 23px); line-height: 1.25; color: var(--ink); }
.kq__body small { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.kq__go { margin-top: auto; font-weight: 800; color: var(--brand); opacity: 0; transform: translateX(-4px); transition: opacity .25s ease, transform .25s ease; }
.kq:hover .kq__go { opacity: 1; transform: translateX(0); }
.kq--cta {
  background: linear-gradient(150deg, var(--brand-dark) 0%, var(--brand) 100%);
  border: none;
  color: #fff;
}
.kq--cta .kq__ico { background: rgba(255, 255, 255, .16); color: #fff; }
.kq--cta:hover .kq__ico { background: rgba(255, 255, 255, .3); color: #fff; }
.kq--cta .kq__body b { color: rgba(255, 255, 255, .72); }
.kq--cta .kq__val { color: #fff; }
.kq--cta .kq__body small { color: rgba(255, 255, 255, .8); }
.kq--cta .kq__go { color: #fff; opacity: .85; transform: none; }
.kq--cta:hover { border-color: transparent; box-shadow: var(--shadow-md); }
@media (max-width: 1080px) {
  .kquick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .kquick-grid { grid-template-columns: 1fr; }
  .kquick { padding-bottom: clamp(48px, 9vw, 72px); }
}

/* --- Sekce s větším odstupem (premium whitespace) --- */
.section--roomy { padding: clamp(64px, 9vw, 124px) 0; }

/* --- Kontaktní údaje: asymetrická hierarchie (telefon >> banka) --- */
.contact-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5.5vw, 80px); align-items: start; }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }
.contact-primary__divider { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }
.k-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--brand); margin-bottom: 10px; }
.k-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  transition: color .2s ease;
}
.k-phone:hover { color: var(--brand); }
.k-phone--alt { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; color: var(--ink); display: inline-block; text-decoration: none; }
.k-phone--alt:hover { color: var(--brand); }
.k-mail { font-size: clamp(19px, 2vw, 23px); font-weight: 700; color: var(--ink); text-decoration: none; transition: color .2s ease; }
.k-mail:hover { color: var(--brand); }
.k-note { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-top: 10px; }
.k-note a { font-weight: 700; }
.contact-facts { display: grid; }
.contact-fact {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-fact:first-child { padding-top: 0; }
.contact-fact:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-fact .cf-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.contact-fact b { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 3px; }
.contact-fact .cf-val { font-size: 16.5px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.contact-fact .cf-val a { color: var(--ink); text-decoration: none; }
.contact-fact .cf-val a:hover { color: var(--brand); text-decoration: underline; }
.contact-fact .cf-sub { font-size: 13.5px; color: var(--ink-soft); }

/* --- Ordinační hodiny + pohotovost: dva velké panely --- */
.hours-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .hours-hero { grid-template-columns: 1fr; } }
.hours-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.hours-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.hours-panel--ord::before { background: linear-gradient(90deg, var(--brand), #2E8B63); }
.hours-panel--poh::before { background: linear-gradient(90deg, var(--accent), #D98A5B); }
.hours-panel__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hours-panel__head .h-ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.hours-panel--ord .h-ico { background: var(--brand-soft); color: var(--brand); }
.hours-panel--poh .h-ico { background: var(--accent-soft); color: var(--accent); }
.hours-panel h3 { margin: 0; font-size: clamp(20px, 2.2vw, 25px); font-weight: 700; }
.hours-panel__label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; margin-top: 3px; }
.hours-panel--ord .hours-panel__label { color: var(--brand); }
.hours-panel--poh .hours-panel__label { color: var(--accent); }
.hours-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 4px;
  animation: kpulse 2.2s ease-out infinite;
}
@keyframes kpulse {
  0% { box-shadow: 0 0 0 0 rgba(180, 85, 45, .4); }
  70% { box-shadow: 0 0 0 10px rgba(180, 85, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(180, 85, 45, 0); }
}
@media (prefers-reduced-motion: reduce) { .hours-pulse { animation: none; } }
.hours-rows { list-style: none; margin: 0; padding: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hours-row:first-child { padding-top: 0; }
.hours-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-row__days { font-weight: 700; color: var(--ink); font-size: 15.5px; }
.hours-row__time { font-weight: 800; font-size: 16.5px; text-align: right; }
.hours-panel--ord .hours-row__time { color: var(--brand-dark); }
.hours-panel--poh .hours-row__time { color: #8A3E1C; }
.hours-row small { display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.hours-panel__note {
  margin-top: 20px;
  padding: 13px 16px;
  border-radius: 13px;
  font-size: 13.5px;
  line-height: 1.55;
}
.hours-panel--ord .hours-panel__note { background: var(--brand-soft); color: var(--brand-dark); }
.hours-panel--poh .hours-panel__note { background: var(--accent-soft); color: #8A3E1C; }
.hours-panel__note a { font-weight: 800; }

/* --- Důležité upozornění: elegantní note card (ne error lišta) --- */
.knote {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(120deg, #FBF1EA 0%, var(--surface) 70%);
  border: 1px solid rgba(180, 85, 45, .22);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  max-width: 880px;
  box-shadow: var(--shadow-sm);
}
.knote__ico {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.knote h3 { margin: 0 0 5px; font-size: 17px; font-weight: 800; color: #8A3E1C; }
.knote p { margin: 0; font-size: 15px; line-height: 1.6; color: #6E4A38; }
.knote a { color: #8A3E1C; font-weight: 800; }
@media (max-width: 640px) { .knote { flex-direction: column; } }

/* --- Kde nás najdete + mapa --- */
.map-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.map-head .maddr { font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--ink); margin: 0; }
.map-head .maddr small { display: block; font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-top: 2px; }
.map-frame { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-frame iframe { display: block; width: 100%; height: clamp(380px, 52vw, 540px); border: 0; }

/* ============================================================
   FOOTER v3 2026-08-19 — pre-footer CTA + asymetrický footer
   (jedna sdílená struktura na všech stránkách)
   ============================================================ */
.prefooter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0C2E20 0%, #13452F 52%, #1B6B4D 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 92px) 0;
}
.prefooter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 320px at 88% 18%, rgba(255, 201, 163, .1), transparent 62%);
  pointer-events: none;
}
.prefooter__inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.prefooter .kicker {
  color: #FFC9A3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  display: block;
  margin-bottom: 12px;
}
.prefooter h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin: 0 0 8px; max-width: 580px; }
.prefooter p { color: rgba(255, 255, 255, .82); font-size: 16.5px; margin: 0; }
.prefooter__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.prefooter .btn { min-height: 52px; padding: 14px 30px; font-size: 1.02rem; }
.prefooter .btn-outline { border-color: rgba(255, 255, 255, .45); color: #fff; }
.prefooter .btn-outline:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .7); }
@media (max-width: 760px) {
  .prefooter__inner { flex-direction: column; align-items: flex-start; }
  .prefooter__actions { width: 100%; }
  .prefooter__actions .btn { flex: 1 1 100%; }
}

/* Hlavní footer — hluboká tmavá zelená */
.site-footer--v3 { background: #0B2419; color: #A9C4B5; padding: clamp(64px, 7vw, 96px) 0 0; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06); }
.site-footer--v3 .footer-main {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 3.6vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.site-footer--v3 .footer-brand { max-width: 340px; display: block; margin: 0; }
.site-footer--v3 .footer-brand__logo { height: 64px; width: auto; }
.site-footer--v3 .footer-brand__desc { font-size: 14.5px; line-height: 1.6; color: #93B3A2; margin: 16px 0 20px; max-width: 300px; }
.site-footer--v3 .footer-brand__addr { font-style: normal; font-size: 15px; line-height: 1.65; color: #C6D9CE; margin-top: 16px; }
.site-footer--v3 .footer-brand__addr a { color: #9FD4B8; font-weight: 700; text-decoration: none; }
.site-footer--v3 .footer-brand__addr a:hover { color: #fff; }
.site-footer--v3 .footer-brand__id { font-size: 12.5px; color: #7C9C8B; margin-top: 16px; }
.site-footer--v3 h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 18px;
}
.site-footer--v3 .footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer--v3 .footer-col a {
  color: #A9C4B5;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: color .2s ease, transform .2s ease;
}
.site-footer--v3 .footer-col a:hover { color: #fff; transform: translateX(3px); }
.site-footer--v3 .footer-contact .footer-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
  display: inline-block;
  transition: color .2s ease;
}
.site-footer--v3 .footer-contact .footer-phone:hover { color: #FFD9C2; }
.site-footer--v3 .footer-contact .footer-phone--alt {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: #C6D9CE;
  display: block;
  margin-top: 6px;
}
.site-footer--v3 .footer-contact .footer-mail {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #C6D9CE;
  text-decoration: none;
  margin-top: 14px;
  transition: color .2s ease;
}
.site-footer--v3 .footer-contact .footer-mail:hover { color: #fff; }
.footer-hours { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #9FD4B8; margin-bottom: 10px; }
.footer-label--poh { color: #FFB98F; margin-top: 18px; }
.footer-hours__row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; line-height: 1.6; color: #C6D9CE; }
.footer-hours__row b { color: #fff; font-weight: 700; }
.footer-hours__note { display: block; font-size: 12.5px; line-height: 1.5; color: #FFB98F; margin-top: 10px; }
.site-footer--v3 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7C9C8B;
}
.site-footer--v3 .footer-bottom a { color: #9FD4B8; text-decoration: none; }
.site-footer--v3 .footer-bottom a:hover { color: #fff; }
@media (max-width: 1080px) {
  .site-footer--v3 .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer--v3 .footer-brand { grid-column: 1 / -1; max-width: none; }
  .site-footer--v3 .footer-brand__desc { max-width: 420px; }
}
@media (max-width: 820px) {
  .site-footer--v3 .footer-main { grid-template-columns: 1fr 1fr; }
  .site-footer--v3 .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer--v3 .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .site-footer--v3 .footer-brand { order: 1; }
  .site-footer--v3 .footer-contact { order: 2; grid-column: auto; }
  .site-footer--v3 .footer-col { order: 3; }
}

/* webdo24 atribuce — jemný oddělovač od footeru */
.webdo24-bar { border-top: 1px solid rgba(255, 255, 255, .06); }

/* ============================================================
   HOME „Naše péče“ v3 (2026-08-19) — text vlevo + pes vpravo
   (obrázek maximálně velký, aby se vešel), služby jako
   3-sloupcové karty → odkazy na detaily sluzby.html#…
   ============================================================ */
.hp-areas__top {
  display: grid;
  grid-template-columns: 1fr; /* text nad fotkou, fotka vycentrovaná na prostředek */
  gap: clamp(28px, 3.5vw, 44px);
  align-items: center;
  margin-bottom: clamp(34px, 4.5vw, 56px);
}
.hp-areas .hp-sec-head { margin: 0; }
.hp-areas__foto {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-areas .sluzby-pes {
  position: static;
  width: min(100%, 880px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.hp-areas__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 0;
}
.hp-area {
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(27, 107, 77, .22);
  border-bottom: 1px solid rgba(27, 107, 77, .22);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hp-area:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(27, 107, 77, .45); }
.hp-area p { padding-right: 0; }
.hp-area__go { top: 20px; right: 20px; }
@media (max-width: 1080px) {
  .hp-areas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hp-areas__top { grid-template-columns: 1fr; }
  .hp-areas .sluzby-pes { width: min(100%, 560px); margin: 0 auto; }
}
@media (max-width: 640px) {
  .hp-areas__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME hero v2 (2026-08-19) — výřez z hero-klinika.jpg (buldok),
   zrcadlený (hero-home-mirrored.jpg): hlava vlevo nahoře,
   výška hero zmenšena o 15 % (100svh → 85svh)
   ============================================================ */
.home-hero {
  /* overlay o ~15 pb slabší než .hero--foto (96/86/45 → 81/71/30):
     fotka výraznější, text vlevo zůstává čitelný */
  background:
    linear-gradient(90deg, rgba(250, 248, 243, .81) 0%, rgba(250, 248, 243, .71) 45%, rgba(250, 248, 243, .30) 100%),
    var(--hero-img) 0% 15% / 115% auto no-repeat;
    /* 2026-08-19: zoom na LEVOU část fotky → zvíře v záběru doprava */
  min-height: 85svh;
  min-height: 85vh;
}
.home-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.75rem);
}
.home-hero .section-head p {
  font-size: 1.05rem;
  max-width: 560px;
}
/* užší obrazovky: hlava psa drží v záběru vlevo nahoře (po zrcadlení) */
@media (max-width: 900px) {
  .home-hero {
    background-position: 38% 12%;
    background-size: auto, cover;
  }
  .home-hero .section-head p { font-size: 1.05rem; }
}

/* ============================================================
   HOMEPAGE REDESIGN v2 — sekce pod hero (2026-08-19)
   Scoped .hp-* třídy pro index.html. HERO zůstává LOCKED.
   Rytmus: 01 brand(cream) → 02 umbrella(white) → 03 areas(sage)
   → 04 diag(white) → 05 journey(surface-2) → 06 people(white)
   → 07 trust(sage) → 08 hospital(cream) → 09 prefooter(dark)
   ============================================================ */

/* ---------- společná typografie sekcí ---------- */
.hp-brand, .hp-umbrella, .hp-areas, .hp-diag, .hp-journey, .hp-people, .hp-trust, .hp-hospital {
  padding: clamp(88px, 11vw, 148px) 0;
}
.hp-h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  margin: 10px 0 18px;
  font-weight: 700;
}
.hp-h2--xl { font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; }
.hp-h2 em { color: var(--brand); font-style: normal; }
.hp-lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.hp-brand .kicker, .hp-umbrella .kicker, .hp-areas .kicker, .hp-diag .kicker,
.hp-journey .kicker, .hp-people .kicker, .hp-trust .kicker, .hp-hospital .kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hp-sec-head { max-width: 780px; margin: 0 0 clamp(36px, 5vw, 60px); }
.hp-sec-head p { font-size: 17px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* ---------- trust řádek (01, 08) ---------- */
.hp-trustline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.hp-trustline li { font-size: 14px; font-weight: 700; color: var(--ink); }
.hp-trustline__sep { color: var(--brand); font-size: 13px; font-weight: 400; }
.hp-brand .hp-trustline li { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.hp-brand .hp-trustline__sep { color: var(--brand); }

/* ---------- 01 brand statement ---------- */
.hp-brand { padding-top: clamp(104px, 13vw, 176px); padding-bottom: clamp(104px, 13vw, 176px); }
.hp-brand__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hp-brand__head .kicker { margin-bottom: 24px; }
.hp-brand__text .hp-lead { margin-bottom: 34px; }

/* ---------- 02/04/06/08 split layout ---------- */
.hp-umbrella, .hp-diag, .hp-people { background: var(--surface); }
.hp-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hp-split--media-left { grid-template-columns: 1.15fr 1fr; }
.hp-split--people, .hp-split--hospital { grid-template-columns: 1fr 1.1fr; }
.hp-split__media { position: relative; }
.hp-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.hp-benefits {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 18px;
}
.hp-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.hp-benefits svg { flex: none; width: 22px; height: 22px; margin-top: 3px; color: var(--brand); }
.hp-benefits b { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.hp-benefits span { display: block; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

/* ---------- 03 areas (2×3 editorial grid) ---------- */
.hp-areas { background: var(--brand-soft); }
.hp-areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(32px, 4.5vw, 56px);
  border-top: 1px solid rgba(27, 107, 77, .28);
}
.hp-area {
  position: relative;
  display: block;
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-bottom: 1px solid rgba(27, 107, 77, .28);
  text-decoration: none;
  color: var(--ink);
}
.hp-area:hover { text-decoration: none; }
.hp-area__num {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--brand);
  margin-bottom: 14px;
}
.hp-area h3 {
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
  transition: color .2s var(--ease, ease);
}
.hp-area p { margin: 0; padding-right: 36px; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.hp-area__go {
  position: absolute;
  top: clamp(28px, 3.6vw, 42px);
  right: 2px;
  font-size: 20px;
  line-height: 1;
  color: var(--brand);
  transition: transform .25s var(--ease, ease);
}
.hp-area:hover h3 { color: var(--brand-dark); }
.hp-area:hover .hp-area__go { transform: translateX(6px); }
.hp-areas__cta { margin-top: clamp(30px, 4vw, 44px); }

/* ---------- 04 diagnostics & technologie ---------- */
.hp-split--diag { grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 5.5vw, 88px); }
.hp-diag__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hp-diag__previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(40px, 5vw, 68px);
}
.hp-diag__prev { margin: 0; }
.hp-diag__prev-img { overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-sm); }
.hp-diag__prev-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s var(--ease, ease);
}
.hp-diag__prev:hover .hp-diag__prev-img img { transform: scale(1.03); }
.hp-diag__prev figcaption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- 05 journey (4 kroky + spojnice) ---------- */
.hp-journey { background: var(--surface-2); }
.hp-journey__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hp-journey__steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 107, 77, .38) 10%, rgba(27, 107, 77, .38) 90%, transparent);
}
.hp-journey__step { position: relative; text-align: center; padding: 0 clamp(12px, 2vw, 26px); }
.hp-journey__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid rgba(27, 107, 77, .35);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-dark);
}
.hp-journey__txt h3 { font-size: clamp(18px, 1.7vw, 21px); font-weight: 700; margin: 0 0 8px; }
.hp-journey__txt p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- 06 people ---------- */
.hp-since {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 30px;
  padding: 20px 26px;
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  border-radius: 0 14px 14px 0;
}
.hp-since b {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-dark);
}
.hp-since span { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- 07 trust (velký citát) ---------- */
.hp-trust { background: var(--brand-soft); }
.hp-trust__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hp-trust__inner .kicker { margin-bottom: 22px; }
.hp-trust__quote {
  margin: clamp(28px, 4vw, 46px) auto 0;
  max-width: 840px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 33px);
  font-weight: 500;
  line-height: 1.42;
  color: var(--ink);
}
.hp-trust__src {
  margin: 24px 0 0;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- 08 hospital ---------- */
.hp-hospital { background: var(--bg); }

/* ---------- pohotovost řádek v prefooteru ---------- */
.hp-pohotovost {
  margin-top: clamp(30px, 4.5vw, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
}
.hp-pohotovost b { color: #fff; font-weight: 700; }
.hp-pohotovost a { color: #FFC9A3; font-weight: 700; text-decoration: none; }
.hp-pohotovost a:hover { text-decoration: underline; }
.hp-pohotovost__sep { opacity: .55; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hp-brand, .hp-umbrella, .hp-areas, .hp-diag, .hp-journey, .hp-people, .hp-trust, .hp-hospital {
    padding: clamp(72px, 10vw, 96px) 0;
  }
  .hp-brand__grid, .hp-split, .hp-split--media-left, .hp-split--diag, .hp-split--people, .hp-split--hospital {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 44px);
  }
  .hp-brand__text { max-width: 640px; }
  .hp-areas__grid { grid-template-columns: 1fr; }
  .hp-diag__previews { grid-template-columns: 1fr; gap: 26px; }
  .hp-journey__steps { grid-template-columns: 1fr; gap: 30px; }
  .hp-journey__steps::before {
    top: 32px;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(27, 107, 77, .38) 10%, rgba(27, 107, 77, .38) 90%, transparent);
  }
  .hp-journey__step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; text-align: left; padding: 0; }
  .hp-journey__num { margin: 0; }
  .hp-journey__txt h3 { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-area__go, .hp-diag__prev-img img { transition: none; transform: none; }
}

/* ============================================================
   DIAGNOSTIKA & TECHNOLOGIE — vybaveni.html redesign (2026-08-19)
   Scoped blok: .dx-* třídy jen pro novou prezentační stránku.
   Ostatní stránky se nemění.
   ============================================================ */

/* ---------- HERO: asymetrický split, text vlevo + foto CT vpravo ---------- */
.dx-hero {
  position: relative;
  background:
    radial-gradient(80% 90% at 8% -10%, rgba(27, 107, 77, .10), transparent 60%),
    linear-gradient(160deg, var(--brand-soft) 0%, var(--bg) 62%);
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 8vw, 96px);
}
.dx-hero__grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.dx-hero__content { max-width: 660px; }
.dx-hero .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.dx-hero h1 {
  font-size: clamp(38px, min(5.8vw, 9vh), 66px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.dx-hero__perex {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34em;
  margin: 0 0 26px;
}
.dx-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  font-size: 1.06rem;
}
.dx-hero__cta svg { transition: transform .25s ease; }
.dx-hero__cta:hover svg { transform: translateY(3px); }
.dx-trust-line {
  margin: 22px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-soft);
  line-height: 1.55;
}
.dx-trust-line b { color: var(--brand-dark); }
.dx-hero__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.dx-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% 50%;
  display: block;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}
.dx-hero__media:hover .dx-hero__img { transform: scale(1.02); }
.dx-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 243, .5) 0%, rgba(250, 248, 243, .1) 32%, transparent 62%);
  pointer-events: none;
}
.dx-hero__chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- TRUST STRIP — tmavě zelený pás pod hero ---------- */
.dx-trust {
  background: linear-gradient(120deg, #0C2E20 0%, #13452F 60%, #1B6B4D 100%);
  color: #E9F3ED;
  padding: clamp(18px, 2.4vw, 26px) 0;
}
.dx-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}
.dx-trust__item {
  font-size: clamp(13.5px, 1.2vw, 15.5px);
  font-weight: 600;
  letter-spacing: .02em;
}
.dx-trust__sep { color: #FFC9A3; font-size: 12px; }

/* ---------- obecná sekce + PROČ NA TOM ZÁLEŽÍ (editorial split) ---------- */
.dx-section { padding: clamp(88px, 11vw, 150px) 0; }
.dx-why__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.dx-why__left .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.dx-why__left h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.dx-why__right { max-width: 540px; }
.dx-why__right p {
  font-size: clamp(16.5px, 1.4vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.dx-why__right p:last-child { margin-bottom: 0; }

/* ---------- VYBAVENÍ + CT feature ---------- */
.dx-equip {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.dx-equip__head { max-width: 780px; }
.dx-equip__head h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: -0.02em;
}
.dx-equip__head p { max-width: 660px; }
.dx-ct {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  margin-top: clamp(40px, 5.5vw, 68px);
}
.dx-ct__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.dx-ct__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}
.dx-ct__media:hover .dx-ct__img { transform: scale(1.02); }
.dx-ct__media::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(12, 46, 32, .38));
  pointer-events: none;
}
.dx-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.dx-label i {
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  display: block;
}
.dx-ct__body h3 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.dx-ct__body > p {
  font-size: clamp(16px, 1.3vw, 17.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 54ch;
}
.dx-ct__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.dx-ct__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}
.dx-ct__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- RTG / ZUBNÍ RTG / SONOGRAFIE — 3-col grid bez karet ---------- */
.dx-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.4vw, 48px);
}
.dx-method {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.dx-method__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dx-method__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
}
.dx-method__ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.dx-method:hover .dx-method__ico { background: var(--brand); color: var(--white); }
.dx-method h3 {
  font-size: clamp(19px, 1.7vw, 22px);
  margin: 0 0 10px;
}
.dx-method p {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
  max-width: 34ch;
}

/* ---------- ENDOSKOPIE + ARTROSKOPIE — editorial split ---------- */
.dx-scope {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.dx-scope__head { margin-bottom: clamp(44px, 6vw, 72px); }
.dx-scope__head h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.dx-scope__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.dx-scope__row + .dx-scope__row { margin-top: clamp(56px, 8vw, 100px); }
.dx-scope__num {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.dx-scope__text h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.dx-scope__text > p {
  font-size: clamp(16px, 1.35vw, 17.5px);
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0;
  max-width: 46ch;
}
.dx-scope__note {
  margin-top: 16px !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  max-width: 40ch;
}
.dx-scope__media--stack { position: relative; }
.dx-scope__img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: block;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}
.dx-scope__img-main:hover { transform: scale(1.02); }
.dx-scope__img-detail {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: min(46%, 250px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
}
.dx-scope__row--b { grid-template-columns: 1fr 1fr; }
.dx-scope__pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
  border-left: 4px solid var(--accent);
  padding-left: 22px;
  max-width: 18ch;
}
.dx-scope__text--right { justify-self: end; }

/* ---------- OD PŘÍZNAKU K ODPOVĚDI — procesní timeline ---------- */
.dx-process__head { max-width: 720px; }
.dx-process__steps {
  list-style: none;
  margin: clamp(36px, 5vw, 60px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
  position: relative;
}
.dx-process__steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 72%, var(--accent) 100%);
  opacity: .25;
  z-index: 0;
}
.dx-step { position: relative; z-index: 1; }
.dx-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 20px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.dx-step:hover .dx-step__num { background: var(--brand); color: var(--white); border-color: var(--brand); }
.dx-step h3 {
  font-size: clamp(18px, 1.6vw, 21px);
  margin: 0 0 10px;
}
.dx-step p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
  max-width: 30ch;
}

/* ---------- JEDNA KLINIKA, NAVAZUJÍCÍ PÉČE ---------- */
.dx-chain {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.dx-chain__flow {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin: clamp(32px, 4vw, 52px) 0 clamp(44px, 5.5vw, 72px);
}
.dx-chain__step {
  flex: 1 1 180px;
  background: var(--brand-soft);
  border-radius: 18px;
  padding: 22px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dx-chain__step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.dx-chain__ico {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dx-chain__step b {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.dx-chain__step small {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.dx-chain__arrow {
  align-self: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform .25s ease;
}
.dx-chain__step:hover + .dx-chain__arrow { transform: translateX(4px); }
.dx-chain__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.dx-chain__foot-text p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0;
}
.dx-chain__foot-text b { color: var(--ink); }
.dx-chain__plan { margin: 0; justify-self: center; }
.dx-chain__plan img {
  width: min(100%, 430px);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: block;
  background: var(--white);
}
.dx-chain__plan figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- OPERAČNÍ TECHNOLOGIE ---------- */
.dx-surgery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}
.dx-surgery__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
}
.dx-surgery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}
.dx-surgery__media:hover img { transform: scale(1.02); }
.dx-surgery__item h3 {
  font-size: clamp(19px, 1.8vw, 23px);
  margin: 18px 0 10px;
}
.dx-surgery__item p {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
  max-width: 40ch;
}

/* ---------- ANESTEZIE / BEZPEČNOST — tmavá sekce ---------- */
.dx-anesthesia {
  background:
    radial-gradient(70% 90% at 88% -10%, rgba(27, 107, 77, .5), transparent 60%),
    linear-gradient(135deg, #0B2419 0%, #11503A 68%, #1B6B4D 100%);
  color: #E9F3ED;
  border-block: 1px solid rgba(255, 255, 255, .06);
}
.dx-anesthesia__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.dx-anesthesia .kicker { color: #FFC9A3; }
.dx-anesthesia h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.dx-anesthesia p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
  color: rgba(233, 243, 237, .85);
  margin: 0 0 26px;
  max-width: 52ch;
}
.dx-anesthesia__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.dx-anesthesia__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #E9F3ED;
}
.dx-anesthesia__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 201, 163, .16);
  border: 1px solid rgba(255, 201, 163, .55);
}
.dx-anesthesia__media { margin: 0; }
.dx-anesthesia__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  display: block;
}

/* ---------- HOSPITALIZACE ---------- */
.dx-hospital { background: var(--surface-2); }
.dx-hospital__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.dx-hospital h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.dx-hospital p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}
.dx-hospital__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.dx-hospital__facts li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.dx-hospital__facts svg { color: var(--brand); flex: 0 0 auto; margin-top: 2px; }
.dx-hospital__facts b { color: var(--ink); font-weight: 700; }

/* ---------- VÍCE TECHNOLOGIÍ ≠ VÍCE VYŠETŘENÍ — velká typografie ---------- */
.dx-measure__inner { max-width: 960px; }
.dx-measure .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.dx-measure h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 16ch;
}
.dx-measure__lead {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  max-width: 46ch;
  margin: 0 0 16px;
}
.dx-measure__sub {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* ---------- KDY MŮŽE BÝT POTŘEBA POKROČILEJŠÍ DIAGNOSTIKA ---------- */
.dx-when {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.dx-when__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.4vw, 44px);
}
.dx-when__item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.dx-when__num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.dx-when__item p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 40ch;
}
.dx-when__note {
  margin: clamp(32px, 4vw, 48px) 0 0;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
}
.dx-when__note b { color: var(--ink); }

/* ---------- FAQ ---------- */
.dx-faq__list { max-width: 840px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .dx-hero__grid,
  .dx-why__grid,
  .dx-ct,
  .dx-scope__row,
  .dx-scope__row--b,
  .dx-anesthesia__grid,
  .dx-hospital__grid,
  .dx-chain__foot { grid-template-columns: 1fr; }
  .dx-ct__body { max-width: 560px; }
  .dx-scope__text--right { justify-self: start; }
  .dx-scope__pull { display: none; }
  .dx-chain__foot-text { order: 2; }
  .dx-process__steps { grid-template-columns: 1fr 1fr; }
  .dx-process__steps::before { display: none; }
}
@media (max-width: 860px) {
  .dx-methods__grid { grid-template-columns: 1fr; }
  .dx-method { max-width: 520px; }
}
@media (max-width: 700px) {
  .dx-section { padding: clamp(70px, 16vw, 96px) 0; }
  .dx-hero { padding-top: clamp(48px, 12vw, 72px); }
  .dx-hero__media { aspect-ratio: 4 / 3; }
  .dx-hero h1 { font-size: clamp(36px, 9.5vw, 50px); letter-spacing: -0.03em; }
  .dx-hero__chip { left: 14px; bottom: 14px; }
  .dx-methods__grid,
  .dx-when__grid,
  .dx-surgery__grid { grid-template-columns: 1fr; }
  .dx-process__steps { grid-template-columns: 1fr; gap: 0; }
  .dx-process__steps::before {
    display: block;
    left: 33px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    height: auto;
    right: auto;
    background: linear-gradient(180deg, rgba(27, 107, 77, .4), rgba(180, 85, 45, .4));
  }
  .dx-step {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding-bottom: 38px;
  }
  .dx-step__num { margin-bottom: 0; }
  .dx-chain__flow { flex-direction: column; align-items: stretch; }
  .dx-chain__arrow { transform: rotate(90deg); align-self: center; margin: 2px 0; }
  .dx-chain__step:hover + .dx-chain__arrow { transform: rotate(90deg) translateX(3px); }
  .dx-scope__img-detail { right: 10px; bottom: 10px; }
}

/* prefers-reduced-motion: vypnout transformace na hover */
@media (prefers-reduced-motion: reduce) {
  .dx-hero__img,
  .dx-ct__img,
  .dx-scope__img-main,
  .dx-surgery__media img { transition: none; }
  .dx-hero__media:hover .dx-hero__img,
  .dx-ct__media:hover .dx-ct__img,
  .dx-scope__img-main:hover,
  .dx-surgery__media:hover img { transform: none; }
  .dx-chain__step:hover,
  .dx-chain__step:hover + .dx-chain__arrow,
  .dx-chain__arrow,
  .dx-hero__cta:hover svg { transform: none; }
}

/* pes (cutout) v nové sekci Co řešíme — vpravo nahoře, bez rámečku (2026-08-19) */
/* pes (cutout) v sekci Naše péče — výrazný dekor vykukující z pravého
   horního rohu; scrolluje se sekcí (NE fixed); overflow: clip sekce
   ořízne přesah → žádný horizontal scrollbar (2026-08-19) */
.hp-areas {
  position: relative;
  overflow: clip;
}
.hp-areas .sluzby-pes {
  position: absolute;
  top: -30px;
  right: -18px;
  width: clamp(260px, 25vw, 420px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
/* tablet — menší, aby nezasahoval do headline */
@media (max-width: 1200px) and (min-width: 901px) {
  .hp-areas .sluzby-pes {
    width: clamp(180px, 22vw, 230px);
    top: -20px;
    right: -10px;
  }
}
/* mobil — výrazně menší, vykukuje zprava nahoře, neblokuje obsah */
@media (max-width: 900px) {
  .hp-areas .sluzby-pes {
    display: block;
    width: clamp(110px, 32vw, 160px);
    top: -14px;
    right: -10px;
  }
}

/* ============================================================
   FOOTER v4 — ORDINAČNÍ HODINY jako první sloupec zleva (2026-08-19)
   Zbytek obsahu přizpůsoben výšce bloku hodin+pohotovosti.
   ============================================================ */
/* footer může být širší než obsah stránky — sloupce se vejdou */
.site-footer--v3 .container { max-width: 1280px; }
.site-footer--v3 .footer-main {
  grid-template-columns: 1.5fr 2.1fr 1fr 1fr 1fr 1.15fr;
  gap: clamp(24px, 2.6vw, 40px);
}
/* hodiny = samostatný první sloupec (bez oddělovače z kontakt sloupce) */
.site-footer--v3 .footer-hours {
  margin: 0;
  padding: 0;
  border: 0;
}
/* zbytek obsahu se vejde do výšky bloku hodin — brand horizontálně */
.site-footer--v3 .footer-brand {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 14px;
}
.site-footer--v3 .footer-brand__logo {
  grid-column: 1;
  grid-row: 1 / span 3;
  height: 52px;
  width: auto;
}
.site-footer--v3 .footer-brand__desc {
  grid-column: 2;
  grid-row: 1;
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 10px;
  max-width: none;
}
.site-footer--v3 .footer-brand__addr { grid-column: 2; grid-row: 2; font-size: 13px; line-height: 1.6; }
.site-footer--v3 .footer-brand__id { grid-column: 2; grid-row: 3; margin-top: 10px; font-size: 11px; }

/* tablet: 3 sloupce, hodiny vlevo nahoře */
@media (max-width: 1100px) {
  .site-footer--v3 .footer-main { grid-template-columns: repeat(3, 1fr); }
  .site-footer--v3 .footer-hours { grid-column: 1; grid-row: 1; }
  .site-footer--v3 .footer-col:nth-of-type(1) { grid-column: 2; grid-row: 1; }
  .site-footer--v3 .footer-col:nth-of-type(2) { grid-column: 3; grid-row: 1; }
  .site-footer--v3 .footer-brand { grid-column: 1 / -1; grid-row: 2; max-width: none; }
  .site-footer--v3 .footer-col:nth-of-type(3) { grid-column: 1; grid-row: 3; }
  .site-footer--v3 .footer-contact { grid-column: 2; grid-row: 3; }
}

/* menší tablet: 2 sloupce, hodiny na plnou šířku (interně 2 sloupce) */
@media (max-width: 820px) {
  .site-footer--v3 .footer-main { grid-template-columns: 1fr 1fr; }
  .site-footer--v3 .footer-hours,
  .site-footer--v3 .footer-brand,
  .site-footer--v3 .footer-col:nth-of-type(1),
  .site-footer--v3 .footer-col:nth-of-type(2),
  .site-footer--v3 .footer-col:nth-of-type(3),
  .site-footer--v3 .footer-contact { grid-column: auto; grid-row: auto; }
  .site-footer--v3 .footer-hours { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .site-footer--v3 .footer-hours .footer-label--poh,
  .site-footer--v3 .footer-hours .footer-hours__note { grid-column: 1 / -1; }
  .site-footer--v3 .footer-brand { grid-column: 1 / -1; }
  .site-footer--v3 .footer-contact { grid-column: 1 / -1; }
}

/* mobil: 1 sloupec, hodiny první */
@media (max-width: 640px) {
  .site-footer--v3 .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .site-footer--v3 .footer-hours,
  .site-footer--v3 .footer-brand,
  .site-footer--v3 .footer-col:nth-of-type(1),
  .site-footer--v3 .footer-col:nth-of-type(2),
  .site-footer--v3 .footer-col:nth-of-type(3),
  .site-footer--v3 .footer-contact { grid-column: auto; grid-row: auto; order: 0; }
  .site-footer--v3 .footer-hours { display: block; }
  .site-footer--v3 .footer-hours .footer-label--poh,
  .site-footer--v3 .footer-hours .footer-hours__note { grid-column: auto; }
  .site-footer--v3 .footer-brand { order: 1; }
  .site-footer--v3 .footer-contact { order: 2; }
  .site-footer--v3 .footer-col { order: 3; }
}

/* ============================================================
   KONTAKT hero — fotka budovy viditelná (2026-08-19)
   Světlejší overlay: budova (vpravo) prosvítá, text vlevo čitelný.
   ============================================================ */
.hero--kontakt {
  background:
    linear-gradient(90deg, rgba(9, 28, 20, .52) 0%, rgba(9, 28, 20, .28) 35%, rgba(9, 28, 20, .10) 65%, rgba(9, 28, 20, .02) 100%),
    var(--hero-img) center / cover no-repeat;
}

/* ============================================================
   KONTAKT mapa 100 % šířky viewportu (2026-08-19)
   .map-frame je mimo .container — plná šířka, bez rámečku
   ============================================================ */
section[aria-labelledby="mapa"] .map-frame {
  margin-top: clamp(30px, 4.5vw, 52px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
section[aria-labelledby="mapa"] .map-frame iframe {
  width: 100%;
  height: clamp(360px, 58vh, 560px);
  display: block;
  border: 0;
}

/* ============================================================
   HOME „Naše péče“ v4 (2026-08-19) — FINÁLNÍ (na konci, aby
   přebil starší .hp-areas .sluzby-pes absolutní pravidla):
   text nahoře + cutout PSA VYCENTROVANÝ na prostředek stránky
   (BEZ rámečku, pozadí i stínu — čistý transparentní cutout),
   služby jako karty níže → odkazy na detaily sluzby.html#…
   ============================================================ */
.hp-areas__top {
  display: grid;
  grid-template-columns: 1fr; /* text nad fotkou, fotka na prostředku */
  gap: clamp(28px, 3.5vw, 44px);
  align-items: center;
  margin-bottom: clamp(34px, 4.5vw, 56px);
}
.hp-areas .hp-sec-head { margin: 0; }
.hp-areas__foto {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-areas .sluzby-pes {
  position: static !important;
  width: min(100%, 880px) !important;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  top: auto;
  right: auto;
  z-index: auto;
}
.hp-areas__grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px;
  border-top: 0;
}
.hp-area {
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(27, 107, 77, .22);
  border-bottom: 1px solid rgba(27, 107, 77, .22);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hp-area:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(27, 107, 77, .45); }
.hp-area p { padding-right: 0; }
.hp-area__go { top: 20px; right: 20px; }
@media (max-width: 1080px) {
  .hp-areas__grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 900px) {
  .hp-areas__top { grid-template-columns: 1fr; }
  .hp-areas .sluzby-pes { width: min(100%, 560px) !important; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hp-areas__grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   KONTAKT hero — FINÁLNÍ gradient čitelnosti (2026-08-19, na konci):
   bílý text musí zůstat čitelný i na světlejších částech fotky;
   pravá třetina zůstává průhledná, aby byla budova vidět.
   ============================================================ */
.hero--kontakt {
  background:
    linear-gradient(90deg, rgba(9, 28, 20, .86) 0%, rgba(9, 28, 20, .62) 38%, rgba(9, 28, 20, .26) 68%, rgba(9, 28, 20, .03) 100%),
    var(--hero-img) center / cover no-repeat;
}
/* odkazy v hero textu (Připravte se na návštěvu, Časté dotazy) —
   světle zelená, aby byly na tmavém gradientu vidět (mimo .btn) */
.hero--kontakt .section-head a:not(.btn) {
  color: #9FD4B8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero--kontakt .section-head a:not(.btn):hover { color: #fff; }

/* kontakt: mapa přímo navazuje na sekci Rezervace a kontakt (pre-footer) — bez mezery */
.section[aria-labelledby="mapa"] { padding-bottom: 0; }

/* ============================================================
   FOOTER v3 — FINÁLNÍ úpravy (2026-08-19, na konci):
   logo NAD názvem firmy (přebije případný grid/flex řádek),
   parallax wrapper pro fotky v sekcích
   ============================================================ */
.site-footer--v3 .footer-brand { display: block !important; grid-template-columns: none !important; }
.site-footer--v3 .footer-brand__logo { display: block; margin-bottom: 16px; }
.parallax-wrap { overflow: hidden; border-radius: 20px; }
.parallax-wrap img { transform: scale(1.08); will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .parallax-wrap img { transform: none; }
}

/* ============================================================
   HOMEPAGE FINAL POLISH (2026-08-19) — statistiky, proof points,
   trust statement + recenze. Na konci css (vyhrává kaskádu).
   ============================================================ */

/* ---------- 01 Proč LIVE VET: prémiové statistiky ---------- */
.hp-stats {
  list-style: none;
  margin: clamp(48px, 6vw, 84px) 0 0;
  padding: clamp(36px, 4.5vw, 60px) 0 0;
  border-top: 1px solid rgba(27, 107, 77, .2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3.2vw, 52px);
}
.hp-stat { display: flex; flex-direction: column; gap: 6px; }
.hp-stat b {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.hp-stat__label { font-size: 15px; font-weight: 700; color: var(--ink); }
.hp-stat__note { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 900px) {
  .hp-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .hp-stats { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- 06 Tým: proof points ---------- */
.hp-proofs {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hp-proofs li {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid rgba(27, 107, 77, .18);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ---------- 07 Důvěra: statement + recenze ---------- */
.hp-trust__quote {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.3;
}
.hp-trust__src { margin-top: 26px; }
.hp-trust__review {
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid rgba(27, 107, 77, .22);
  max-width: 640px;
}
.hp-trust__review-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.hp-trust__src--review { margin-top: 16px; font-size: 11.5px; }

/* ============================================================
   PREFOTER v2 — zvířata (retrívr + kočka) vpravo (2026-08-19)
   Text vlevo (55–60 %), zvířata vpravo vyrůstají ze spodní hrany.
   ============================================================ */
.prefooter--zvirata {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 50vw, 640px);
  display: flex;
  align-items: center;
}
.prefooter--zvirata .prefooter__content {
  position: relative;
  z-index: 2;
  max-width: min(600px, 56vw);
}
.prefooter--zvirata .prefooter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.prefooter--zvirata .prefooter__note {
  margin: 18px 0 0;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
}
.prefooter--zvirata .prefooter__zvirata {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: min(38vw, 500px);
  height: auto;
  z-index: 1;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
}

/* tablet: zvířata o něco menší, obsah zúžený — bez překryvu textu */
@media (max-width: 1100px) and (min-width: 821px) {
  .prefooter--zvirata .prefooter__zvirata { width: min(36vw, 420px); right: 2%; }
  .prefooter--zvirata .prefooter__content { max-width: min(600px, 54vw); }
}

/* mobil: obsah nahoře, zvířata pod ním — vyrůstají ze spodní hrany */
@media (max-width: 820px) {
  .prefooter--zvirata { display: block; min-height: 0; padding-bottom: 0; }
  .prefooter--zvirata .prefooter__content { max-width: none; }
  .prefooter--zvirata .prefooter__zvirata {
    position: static;
    display: block;
    width: 90%;
    max-width: 380px;
    height: auto;
    margin: 30px auto 0;
  }
}

/* ============================================================
   FIX mobilní menu (2026-08-19): podpoložky submenu musí být
   vždy tmavé na světlém podkladu — duplikace na konec css,
   aby pravidlo vyhrálo kaskádu v každém browseru (vzor:
   obchvat rozbité kaskády kolem ř. 805).
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav .submenu { background: var(--surface) !important; }
  .main-nav .submenu a { color: var(--ink) !important; }
  .main-nav .submenu a:hover { background: var(--brand-soft) !important; color: var(--brand-dark) !important; }
}

/* ============================================================
   KONTAKT — Firemní údaje na JEDNOM řádku (2026-08-19):
   GPS + IČO/DIČ + Bankovní spojení vedle sebe (3 sloupce),
   oddělovač mezi položkami; ≤720px zpět na 1 sloupec.
   ============================================================ */
section[aria-labelledby="kontakt-udaje"] .contact-facts {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
section[aria-labelledby="kontakt-udaje"] .contact-fact {
  border-bottom: 0;
  padding: 0;
}
section[aria-labelledby="kontakt-udaje"] .contact-fact + .contact-fact {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 40px);
}
@media (max-width: 720px) {
  section[aria-labelledby="kontakt-udaje"] .contact-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  section[aria-labelledby="kontakt-udaje"] .contact-fact {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  section[aria-labelledby="kontakt-udaje"] .contact-fact + .contact-fact {
    border-left: 0;
    padding-left: 0;
  }
  section[aria-labelledby="kontakt-udaje"] .contact-fact:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* ============================================================
   MOBILNÍ MENU — submenu položky: po hover tmavě šedý text
   (2026-08-19). Na konci → vyhrává kaskádu i nad duplicitními
   bloky @media (max-width:1080px) výše.
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav .submenu a:hover {
    color: #444 !important;
  }
}

/* ============================================================
   HOME hero — fotka posunutá doprava o 15 % + overlay
   průhlednější o 15 % (2026-08-19). Jen home; klinika beze změny.
   Původní overlay: rgba(250,248,243,.96/.86/.45) → ×0,85
   ============================================================ */
.hero--foto.hero--home {
  background:
    linear-gradient(90deg, rgba(250,248,243,.82) 0%, rgba(250,248,243,.73) 45%, rgba(250,248,243,.38) 100%),
    var(--hero-img) 65% center / cover no-repeat;
}

/* ============================================================
   CUTOUTY ZVÍŘAT — vstupní/odchodové efekty (2026-08-19).
   Různé chování: kočka a králík se vykouknou při načtení a
   zůstanou (fixed), pes v „Naše péče“ a Rychlá kontrola dropnou
   při scrollu, prefooter zvířata přijedou zprava, pes v FAQ hero
   se objeví při vstupu do viewportu a při odscrollování zmizí.
   ============================================================ */

/* 1) KOČKA (home hero, fixed) — vykoukne z rohu při načtení */
@keyframes kocka-in {
  from { opacity: 0; transform: translate(calc(-14% - 8px), 68%); }
  to   { opacity: 1; transform: translate(calc(-14% - 8px), 32%); }
}
.hero-kocka { animation: kocka-in .9s cubic-bezier(.22, 1, .36, 1) .2s both; }

/* 2) KRÁLÍK (klinika hero, fixed) — vykoukne o chvíli později */
@keyframes kralik-in {
  from { opacity: 0; transform: translate(20%, 62%); }
  to   { opacity: 1; transform: translate(20%, 25%); }
}
.hero-kralik { animation: kralik-in 1s cubic-bezier(.22, 1, .36, 1) .55s both; }

/* 3) PES v „Naše péče“ (home) — drop s mírným přestřelem po objevení sekce */
@keyframes pes-drop {
  0%   { opacity: 0; transform: translateY(26px) scale(.94); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hp-areas__foto.reveal.in .sluzby-pes { animation: pes-drop .85s cubic-bezier(.22, 1, .36, 1) both; }

/* 4) PES Rychlá kontrola (pro-pacienty) — slide-up po objevení bloku */
@keyframes pes-check-in {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.check-big--psa.reveal.in .check-big__foto img { animation: pes-check-in .8s cubic-bezier(.22, 1, .36, 1) .15s both; }

/* 5) PREFOTER zvířata — příjezd zprava (nahrazuje default translateY reveal) */
.prefooter__zvirata.reveal { transform: translateX(48px); }
html.js .prefooter__zvirata.reveal.in { transform: none; }

/* 6) PES v FAQ hero (pes-labrador) — vykukuje vpravo dole; při scrollu
      do viewportu se objeví, při odscrollování jemně zmizí (scroll-driven) */
.hero-peek-pes {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(150px, 17vw, 240px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  transform: translate(18%, 30%);
  filter: drop-shadow(0 14px 22px rgba(31, 46, 38, .22));
}
@supports (animation-timeline: view()) {
  .hero-peek-pes {
    animation: peek-pes linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes peek-pes {
    0%   { opacity: 0; transform: translate(18%, 60%); }
    18%  { opacity: 1; transform: translate(18%, 30%); }
    82%  { opacity: 1; transform: translate(18%, 30%); }
    100% { opacity: 0; transform: translate(18%, 12%); }
  }
}

/* Respekt k preferenci omezeného pohybu */
@media (prefers-reduced-motion: reduce) {
  .hero-kocka, .hero-kralik, .hero-peek-pes { animation: none; }
  .prefooter__zvirata.reveal { transform: none; }
  .hp-areas__foto.reveal.in .sluzby-pes,
  .check-big--psa.reveal.in .check-big__foto img { animation: none; }
}

/* ============================================================
   SCROLL INDIKÁTOR — „scrollujte dál“ v hero s 100svh
   (2026-08-19, klinika.html — jediné 100% hero na webu)
   ============================================================ */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: calc(var(--header-h, 72px) + 22px);
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(31, 46, 38, .5);
  background: rgba(250, 248, 243, .55);
  border: 1px solid rgba(31, 46, 38, .12);
  transition: color .25s ease, background .25s ease;
  animation: scroll-hint 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--brand); background: rgba(250, 248, 243, .92); }
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1; }
}
@media (max-width: 900px) {
  .hero-scroll { bottom: calc(var(--header-h, 72px) + 14px); width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

/* FAQ hero s vykukujícím psem — přesah cutoutu oříznout (2026-08-19) */
.hero:has(> .hero-peek-pes) { overflow: clip; }

/* ============================================================
   PREFOTER „Rezervace a kontakt“ — VÝRAZNÁ animace (2026-08-19):
   obsah vjíždí zdola po prvcích (stagger z JS --d, dráha 44px),
   zvířata přilétají z prava s bounce přestřelem.
   ============================================================ */
html.js .prefooter__content .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--d, 0ms);
}
html.js .prefooter__content .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* CTA tlačítka — navíc jemný nárůst velikosti */
html.js .prefooter__actions.reveal { transform: translateY(44px) scale(.96); }
html.js .prefooter__actions.reveal.in { transform: none; }

/* zvířata — výrazný bounce z prava (přestřel → doraz na místo) */
@keyframes zvirata-bounce-in {
  0%   { opacity: 0; transform: translateX(180px); }
  55%  { opacity: 1; transform: translateX(-16px); }
  75%  { transform: translateX(7px); }
  100% { opacity: 1; transform: translateX(0); }
}
html.js .prefooter__zvirata.reveal.in {
  animation: zvirata-bounce-in 1.2s cubic-bezier(.22, 1, .36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  html.js .prefooter__content .reveal { opacity: 1; transform: none; transition: none; }
  html.js .prefooter__zvirata.reveal.in { animation: none; }
}

/* ============================================================
   KLINIKA — redesign (2026-08-19): tmavý kinematografický hero,
   6 karet hodnot, timeline s roky. Na konci css (vyhrává kaskádu).
   ============================================================ */
/* --- tmavý hero: tým kliniky, bílý text, teplý akcent --- */
.hero--klinika {
  background:
    linear-gradient(90deg, rgba(9, 28, 20, .92) 0%, rgba(9, 28, 20, .72) 40%, rgba(9, 28, 20, .32) 70%, rgba(9, 28, 20, .06) 100%),
    var(--hero-img) 62% center / cover no-repeat;
}
.hero--klinika .section-head { max-width: 720px; margin: 0; }
.hero--klinika .kicker { color: #9FD4B8; }
.hero--klinika h1 { color: #fff; }
.hero--klinika h1 .accent { color: #F5A96E; }
.hero--klinika .section-head p { color: rgba(255, 255, 255, .92); max-width: 580px; }
.hero--klinika .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }
.hero--klinika .hero-actions .btn { min-height: 52px; padding: 14px 30px; font-size: 1.02rem; }
.hero--klinika .btn-outline { border-color: rgba(255, 255, 255, .55); color: #fff; }
.hero--klinika .btn-outline:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .75); }
.hero--klinika .hero-scroll { color: rgba(255, 255, 255, .8); }

/* --- hodnoty: 6 karet s ikonami --- */
.klinika-vals-sec { background: var(--surface-2); }
.klinika-vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}
.klinika-val {
  background: var(--surface);
  border: 1px solid rgba(27, 107, 77, .22);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.klinika-val:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.klinika-val__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 18px;
}
.klinika-val h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.klinika-val p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 980px) {
  .klinika-vals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .klinika-vals { grid-template-columns: 1fr; }
}

/* --- timeline: roky v kruzích (přebije čísla 01–04) --- */
.klinika-timeline .hp-journey__num { font-size: 15px; letter-spacing: .02em; }

/* ============================================================
   LABORATOŘ (laborator.html) — redesign v kvalitě homepage
   (2026-08-19). Scoped .lb-* třídy, vzor dx-hero (vybavení).
   ============================================================ */
.lb-hero {
  position: relative;
  background:
    radial-gradient(80% 90% at 8% -10%, rgba(27, 107, 77, .10), transparent 60%),
    linear-gradient(160deg, var(--brand-soft) 0%, var(--bg) 62%);
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 8vw, 96px);
}
.lb-hero__grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.lb-hero__content { max-width: 660px; }
.lb-hero .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.lb-hero h1 {
  font-size: clamp(38px, min(5.8vw, 9vh), 66px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.lb-hero__perex {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34em;
  margin: 0 0 28px;
}
.lb-hero__trust { margin-top: 22px; }
.lb-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(31, 46, 38, .20), 0 12px 28px rgba(31, 46, 38, .10);
}
.lb-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-hero__chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(250, 248, 243, .92);
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(31, 46, 38, .16);
}

/* trust strip — laboratoř v číslech */
.lb-trust {
  background: linear-gradient(120deg, #0C2E20 0%, #13452F 60%, #1B6B4D 100%);
  color: #E9F3ED;
  padding: clamp(18px, 2.4vw, 26px) 0;
}
.lb-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
}
.lb-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13.5px, 1.2vw, 15.5px);
  font-weight: 500;
  color: rgba(233, 243, 237, .92);
}
.lb-trust__item svg { color: #7FD1A8; flex-shrink: 0; }
.lb-trust__item b { color: #fff; font-weight: 700; }

/* proč vlastní laboratoř — editorial split + 3 kroky */
.lb-why { padding: clamp(64px, 8vw, 110px) 0; }
.lb-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.lb-why__head .hp-h2 { margin-top: 0; }
.lb-why__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.lb-why__steps { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.lb-why__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: clamp(20px, 2.6vw, 30px);
  border-bottom: 1px solid var(--line);
}
.lb-why__step:last-child { border-bottom: 0; padding-bottom: 0; }
.lb-why__num {
  font-family: var(--font-display, 'Space Grotesk'), sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.lb-why__step h3 { margin: 0 0 6px; font-size: 19px; }
.lb-why__step p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: 15.5px; }

/* co umíme vyšetřit — karty s ikonami */
.lb-scope { padding: clamp(64px, 8vw, 110px) 0; }
.lb-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.lb-scope__card {
  background: var(--surface);
  border: 1px solid rgba(27, 107, 77, .18);
  border-radius: 18px;
  padding: clamp(22px, 2.2vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lb-scope__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(27, 107, 77, .4); }
.lb-scope__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.lb-scope__card h3 { margin: 0 0 8px; font-size: 17.5px; line-height: 1.25; }
.lb-scope__card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

/* přístroje — 3 sloupce */
.lb-devices { padding: clamp(64px, 8vw, 110px) 0; }
.lb-devices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.lb-device {
  background: var(--surface);
  border-top: 3px solid var(--brand);
  border-radius: 0 0 16px 16px;
  padding: clamp(20px, 2.2vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lb-device:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lb-device h3 { margin: 0 0 10px; font-size: 16.5px; line-height: 1.3; }
.lb-device p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.lb-device b { color: var(--brand-dark); font-weight: 700; }

/* galerie přístrojů */
.lb-gallery { padding: clamp(64px, 8vw, 110px) 0; }
.lb-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.lb-gallery__item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lb-gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.lb-gallery__item figcaption {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* kdy je laboratoř potřeba */
.lb-when { padding: clamp(64px, 8vw, 110px) 0; }
.lb-when__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.lb-when__item {
  background: var(--surface);
  border: 1px solid rgba(27, 107, 77, .18);
  border-radius: 18px;
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow-sm);
}
.lb-when__num {
  display: inline-block;
  font-family: var(--font-display, 'Space Grotesk'), sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: 12px;
}
.lb-when__item h3 { margin: 0 0 8px; font-size: 18px; }
.lb-when__item p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.lb-when__note {
  margin: clamp(24px, 3vw, 36px) 0 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.lb-when__note a { color: var(--brand); font-weight: 700; }

/* breakpointy */
@media (max-width: 1080px) {
  .lb-scope__grid { grid-template-columns: repeat(3, 1fr); }
  .lb-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .lb-hero { padding-top: clamp(48px, 12vw, 72px); }
  .lb-hero__grid { grid-template-columns: 1fr; }
  .lb-hero__media { aspect-ratio: 16 / 10; }
  .lb-hero h1 { font-size: clamp(36px, 9.5vw, 50px); letter-spacing: -0.03em; }
  .lb-hero__chip { left: 14px; bottom: 14px; }
  .lb-why__grid { grid-template-columns: 1fr; }
  .lb-scope__grid { grid-template-columns: repeat(2, 1fr); }
  .lb-devices__grid { grid-template-columns: repeat(2, 1fr); }
  .lb-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .lb-when__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .lb-scope__grid { grid-template-columns: 1fr; }
  .lb-devices__grid { grid-template-columns: 1fr; }
  .lb-gallery__grid { grid-template-columns: 1fr; }
}
