/*
Theme Name: EcoTherma
Theme URI: https://ecotherma.cz
Author: Svarog
Description: Lehká šablona na míru pro EcoTherma — tepelná čerpadla. Bez frameworků, bez balastu.
Version: 1.5.3
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecotherma
*/

/* ---------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------- */

:root {
  /* Barvy — z návrhu klienta */
  --leaf: #6bb53f;
  --leaf-deep: #4e9a2e;
  --leaf-dark: #132119;
  --ember: #f28a21;
  --ember-soft: #f5a623;

  --ink: #17231b;
  /* Drobné šedé texty — ztmaveno skoro k černé (~10:1 a ~8,5:1 na krémové),
     protože ve světlejších odstínech pořád působily nečitelně. */
  --ink-muted: #2c332d;
  --ink-faint: #363e37;

  /* Základ bílý (dřív krémová #fdffed) — klient chce bílé pozadí všude:
     navbar, podstránky i lepší čitelnost drobných textů. */
  --paper: #ffffff;
  --mint: #f2f7ee;
  --sand: #f5f6ec;
  --line: #e3e9df;

  /* Signature: přenos tepla zvenku dovnitř */
  --transfer: linear-gradient(90deg, var(--leaf) 0%, var(--leaf) 18%, var(--ember-soft) 82%, var(--ember) 100%);

  /* Písmo */
  /* Adam: „font — prilis moderni styl (ma pusobit rodinne)“, Míša: „font“.
     Sora a Instrument Sans byly geometrické grotesky, JetBrains Mono
     programátorský font — a ten seděl na telefonním čísle. Viz fonts.css. */
  --font-display: "Alegreya", Georgia, "Times New Roman", serif;
  --font-body: "Alegreya Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-data: "Alegreya Sans", "Segoe UI", system-ui, sans-serif;

  --fs-display: clamp(2.4rem, 1.4rem + 3.4vw, 4.25rem);
  --fs-h2: clamp(1.85rem, 1.3rem + 1.9vw, 2.85rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  /* Rytmus */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --radius: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------------
   2. Reset
   --------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

ul { list-style: none; padding: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------
   3. Layout primitives
   --------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band {
  padding-block: var(--section-y);
}

.band-mint { background: var(--mint); }
.band-sand { background: var(--sand); }

.band-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: block;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Tmavší zeleň — --leaf-deep (#4e9a2e) měl na bílé jen 3,5:1 (pod AA). */
  color: #3c7d1f;
  margin-bottom: 0.9rem;
}

.band-title { font-size: var(--fs-h2); }

.band-intro {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  color: var(--ink-muted);
  max-width: 38rem;
}

.accent-leaf { color: var(--leaf-deep); }
.accent-ember { color: var(--ember); }

/* Číslo, cena, jednotka — vždy strojově */
.num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------
   4. Buttons
   --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: var(--leaf-deep);
  color: #fff;
}
.btn-solid:hover { background: var(--leaf-dark); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--leaf-deep); color: var(--leaf-deep); }

.btn-ember {
  background: var(--ember);
  color: #fff;
}
.btn-ember:hover { background: #dd7910; }

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------------------------------------------------------------
   5. Header
   --------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}

/* Signature 1/3: přenos tepla — hranice hlavičky */
.masthead::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 2px;
  background: var(--transfer);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}
.brand-eco { color: var(--leaf-deep); }
.brand-therma { color: var(--ink); }

.nav-primary { margin-inline-start: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.7rem);
  margin: 0;
}

.nav-list a {
  position: relative;
  display: block;
  padding-block: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--leaf-deep);
  transition: width 0.28s var(--ease);
}

.nav-list a:hover,
.nav-list .current-menu-item > a { color: var(--ink); }

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after { width: 100%; }

.masthead-phone { flex-shrink: 0; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle-bars { position: relative; }

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
}
.nav-toggle-bars::before { transform: translateY(-6px); }
.nav-toggle-bars::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .masthead-phone { display: none; }

  .nav-primary {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0 var(--gutter) 1.75rem;
    background: #fdffed;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-primary.is-open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a {
    padding-block: 1rem;
    font-size: 1.05rem;
    color: var(--ink);
  }
  .nav-list a::after { display: none; }
}

/* ---------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------- */

.hero {
  padding-block: clamp(3.5rem, 6vw, 6rem) clamp(4rem, 7vw, 6.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-title {
  font-size: var(--fs-display);
  letter-spacing: -0.035em;
}

.hero-lead {
  margin-top: 1.6rem;
  max-width: 34rem;
  font-size: var(--fs-lead);
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* Tři sliby — hairline, žádné bublinové ikony */
.hero-claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.claim-term {
  display: block;
  font-weight: 600;
  font-size: var(--fs-small);
}

.claim-desc {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--fs-small);
  color: var(--ink-faint);
}

.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--mint);
  background-image: linear-gradient(160deg, #dfeed3 0%, #cfe4c0 55%, #f4e2c8 100%);
  background-size: cover;
  background-position: center;
}

.hero-figure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dotace — fakt, ne odznak */
.hero-grant {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 1.05rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
}

.hero-grant-label {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-data);
}

.hero-grant-value {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.hero-grant-note {
  display: block;
  margin-top: 0.2rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 3 / 2; order: -1; }
}

@media (max-width: 560px) {
  .hero-claims { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------------------------------------------------------------
   7. Jak to funguje — jediné místo, kde čísla znamenají pořadí
   --------------------------------------------------------------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Signature 2/3: teplo putuje zvenku dovnitř */
.steps::before {
  content: "";
  position: absolute;
  top: 11px;
  /* Kroužky jsou zarovnané vlevo v 5 sloupcích (∅ 26px). Čára musí jít od
     středu 1. kroužku (13px zleva) k středu 5. — proto asymetricky, ne 6/6 %.
     Dřív začínala moc vpravo a u kroku 1 chyběl kus. */
  left: 13px;
  right: calc(20% - 35px);
  height: 2px;
  background: var(--transfer);
  opacity: 0.75;
}

.step { position: relative; }

.step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-data);
  font-size: 0.7rem;
  font-weight: 500;
}

.step-title {
  margin-top: 1.35rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step-body {
  margin-top: 0.5rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 2.25rem 1.75rem; }
  .steps::before { display: none; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   8. Tepelná čerpadla — produkt se prodává čísly
   --------------------------------------------------------------- */

.pumps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pump {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease);
}

.pump:hover {
  border-color: var(--leaf);
  transform: translateY(-3px);
}

.pump-type {
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.pump-name {
  margin-top: 0.7rem;
  font-size: var(--fs-h3);
}

.pump-for {
  margin-top: 0.55rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.pump-specs {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}

.spec + .spec { border-top: 1px dashed var(--line); }

.spec-key {
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.spec-val {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink);
}

.pump-price {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pump-price-label {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-data);
}

.pump-price-value {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pump-price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--fs-small);
  color: var(--ink-faint);
}

.pumps-foot {
  margin-top: 2.5rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

/* ---------------------------------------------------------------
   9. Reference
   --------------------------------------------------------------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.quote {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

.quote-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.quote-who {
  font-size: var(--fs-small);
  font-weight: 600;
}

.quote-where {
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  color: var(--ink-faint);
  text-align: right;
}

/* ---------------------------------------------------------------
   9b. O nás
   --------------------------------------------------------------- */

.about-body p {
  font-size: var(--fs-lead);
  color: var(--ink-muted);
}

.about-body p + p { margin-top: 1rem; }

.about-body .about-action { margin-top: 1.75rem; }

/* ---------------------------------------------------------------
   10. Poptávka
   --------------------------------------------------------------- */

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.enquiry-points {
  margin-top: 2rem;
}

.enquiry-points li {
  display: flex;
  gap: 0.85rem;
  padding-block: 0.7rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.enquiry-points li + li { border-top: 1px solid var(--line); }

.enquiry-points svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--leaf-deep);
}

.enquiry-direct {
  margin-top: 2rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.enquiry-direct a {
  font-weight: 600;
  color: var(--ink);
  text-decoration-color: var(--leaf);
  text-underline-offset: 3px;
}

.form-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field { margin-bottom: 1.25rem; }

.field-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: var(--fs-small);
  font-weight: 600;
}

.field-optional {
  font-weight: 400;
  color: var(--ink-faint);
}

.field-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field-input::placeholder { color: var(--ink-faint); }

.field-input:focus {
  outline: none;
  border-color: var(--leaf-deep);
  box-shadow: 0 0 0 3px rgba(107, 181, 63, 0.16);
}

textarea.field-input {
  min-height: 118px;
  resize: vertical;
}

select.field-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%235b6b60' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Signature 3/3: tlačítko, kterým se slib naplní */
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--transfer);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 600;
  transition: filter 0.25s var(--ease), transform 0.25s var(--ease);
}

.form-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-faint);
}

.form-consent-box {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  accent-color: var(--leaf-deep);
  cursor: pointer;
}

.form-consent label { cursor: pointer; }

.form-consent a { color: var(--ink-muted); }

.form-note {
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
}

.form-note-ok {
  background: var(--mint);
  border: 1px solid var(--leaf);
  color: var(--leaf-dark);
}

.form-note-bad {
  background: var(--sand);
  border: 1px solid var(--ember);
  color: #8a4a05;
}

@media (max-width: 900px) {
  .enquiry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------------------------------------------------------------
   11. Footer
   --------------------------------------------------------------- */

/* Mrtvé CSS staré patičky (.colophon*) odstraněno — šablona renderuje .foot-v2
   (styl v sekcích 16+). Ověřeno: .colophon není v žádné .php šabloně. */

/* ---------------------------------------------------------------
   11b. Podstránky — sdílené prvky
   --------------------------------------------------------------- */

.duo {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.band-more { margin-top: clamp(2.5rem, 4vw, 3.5rem); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--leaf);
  padding-bottom: 0.2rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.link-more:hover { color: var(--leaf-deep); border-color: var(--ember); }
.link-more:hover .btn-arrow { transform: translateX(3px); }

/* Sestava: plná tabulka parametrů */
.spec-table {
  margin: 0;
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pump-price-lead { padding-top: 2rem; }

/* Reference — co je pod domem namontované */
.quote-setup {
  margin-top: 0.9rem;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  color: var(--leaf-deep);
}

/* Přenos tepla — signature, tady rozvedená do diagramu */
.transfer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transfer::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--transfer);
}

.transfer-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--paper);
}

.transfer-dot-cold { background: var(--leaf); }
.transfer-dot-work { background: var(--ink); }
.transfer-dot-warm { background: var(--ember); }

.transfer-label {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.transfer-value {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.1rem);
  letter-spacing: -0.02em;
}

.transfer-note {
  margin-top: 0.75rem;
  max-width: 22rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.transfer-foot {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 46rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

/* Průběh spolupráce — rozepsaný */
.stages {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.stage {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.stage-num {
  font-size: var(--fs-small);
  color: var(--leaf-deep);
}

.stage-title {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.stage-text {
  margin-top: 0.6rem;
  max-width: 44rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

/* Časté dotazy */
.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-q {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-a {
  margin-top: 0.75rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

/* Sliby a kontaktní kanály — stejná kostra, hairline, žádné karty */
.promises,
.channels {
  display: grid;
  gap: 1.75rem;
  margin: 0;
}

.promises { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.channels { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.promise,
.channel {
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}

/* U slibu je „term“ ten slib — nese váhu. U kanálu je to jen štítek. */
.promise-term {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.promise-desc {
  margin: 0.5rem 0 0;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.channel-term {
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.channel-value {
  margin: 0.7rem 0 0;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.channel-value a { text-decoration: none; }
.channel-value a:hover { color: var(--leaf-deep); }

.channel-note {
  margin: 0.5rem 0 0;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .duo { grid-template-columns: 1fr; }
  .transfer { grid-template-columns: 1fr; gap: 2.25rem; }
  .transfer::before { display: none; }
  .transfer-label { margin-top: 1rem; }
}

@media (max-width: 560px) {
  .stage { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ---------------------------------------------------------------
   12. Obsah stránek a příspěvků
   --------------------------------------------------------------- */

.page-hero {
  padding-block: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  /* Bílá hlavička (jako úvod) nad krémovým tělem podstránky — konzistence. */
  background: #ffffff;
}

.page-title { font-size: var(--fs-h2); }

.page-lede {
  margin-top: 1.15rem;
  max-width: 44rem;
  font-size: var(--fs-lead);
  color: var(--ink-muted);
}

.prose {
  max-width: 44rem;
}

/* .prose nemá vlastní section-padding — obalující .band ho už má. Dřív se
   sčítalo (band + prose + margin nadpisu) a vznikala ~172px mezera nahoře. */
.prose > * + * { margin-top: 1.25rem; }
.prose > :first-child { margin-top: 0; }

.prose h2 {
  margin-top: 2.75rem;
  font-size: var(--fs-h3);
}

.prose h3 {
  margin-top: 2rem;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.prose ul { padding-left: 1.15rem; list-style: disc; }
.prose li { margin-top: 0.4rem; }
.prose a { color: var(--leaf-deep); text-underline-offset: 3px; }

.prose img { border-radius: var(--radius); }

.post-list { display: grid; gap: 1.5rem; }

.post-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-card-title {
  font-size: var(--fs-h3);
}

.post-card-title a { text-decoration: none; }
.post-card-title a:hover { color: var(--leaf-deep); }

.post-card-meta {
  margin-top: 0.5rem;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  color: var(--ink-faint);
}

.post-card-excerpt {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.pagination { margin-top: 2.5rem; }

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pagination .page-numbers:hover { border-color: var(--leaf-deep); color: var(--leaf-deep); }

.pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}


/* ---------------------------------------------------------------
   13. Výběr sestavy — orientační pomůcka, ne kalkulačka úspory
   --------------------------------------------------------------- */

.sizer-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.9rem 2.25rem;
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.sizer-q-label {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.sizer-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sizer-opt input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sizer-opt span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.sizer-opt span:hover { border-color: var(--leaf-deep); color: var(--ink); }

.sizer-opt input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.sizer-opt input:focus-visible + span {
  outline: 2px solid var(--leaf-deep);
  outline-offset: 3px;
}

/* Odečet: odhad tepelné ztráty vlevo, věta k němu vpravo */
.sizer-readout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 1.5rem clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.sizer-loss-label {
  display: block;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.sizer-loss-value {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.sizer-loss-note {
  margin-top: 0.4rem;
  font-size: var(--fs-small);
  color: var(--ink-faint);
}

.sizer-verdict {
  max-width: 40rem;
  font-size: var(--fs-lead);
  color: var(--ink);
}

.sizer-verdict strong { font-weight: 600; }

.sizer-verdict-note {
  margin-top: 0.7rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .sizer-readout { grid-template-columns: 1fr; }
}

/* Karty sestav ve výběru — kompaktní varianta .pump */
.pump-flag {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf-deep);
}

.pump-flag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}

.pump-match {
  position: relative;
  border-color: var(--leaf);
  box-shadow: 0 0 0 1px var(--leaf);
}

.pump-match::before {
  content: "";
  position: absolute;
  inset-inline: -1px;
  top: -1px;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--transfer);
}

.pump-match .pump-flag { display: inline-flex; }

.pump[data-fit="no"] { border-style: dashed; }
.pump[data-fit="no"]:hover { transform: none; border-color: var(--line); }
.pump[data-fit="no"] .pump-name,
.pump[data-fit="no"] .spec-val { color: var(--ink-muted); }

.pump-caveat {
  display: none;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: var(--fs-small);
  color: #8a4a05;
}

.pump[data-fit="no"] .pump-caveat { display: block; }

.pump-link {
  margin-top: 1.25rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--leaf);
  padding-bottom: 0.15rem;
  align-self: flex-start;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.pump-link:hover { color: var(--leaf-deep); border-color: var(--ember); }

.sizer-out {
  margin-top: 0.5rem;
  padding: 1.1rem 1.35rem;
  border: 1px solid var(--ember);
  border-radius: var(--radius-sm);
  background: var(--sand);
  font-size: var(--fs-small);
  color: #8a4a05;
}

.sizer-foot {
  margin-top: clamp(2rem, 3vw, 2.75rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 46rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}


/* ---------------------------------------------------------------
   14. Obrázky — logo a rendery jednotek
   --------------------------------------------------------------- */

.brand-mark {
  width: 42px;
  height: auto;
  flex: none;
  margin-right: 0.65rem;
}

.hero-figure-img--render {
  object-fit: contain;
  padding: 10% 10% 32%;
}

.pump-figure {
  margin: 0 0 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background-image: linear-gradient(160deg, #dfeed3 0%, #cfe4c0 55%, #f4e2c8 100%);
}

.pump-figure img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.pump[data-fit="no"] .pump-figure { opacity: 0.55; }
.pump[data-fit="no"] .pump-figure img { filter: grayscale(0.5); }


/* ---------------------------------------------------------------
   14. Hero se 3D scénou (render u fasády)
   --------------------------------------------------------------- */

.hero-figure--scene { aspect-ratio: 16 / 9; }
.hero-figure--scene .hero-figure-img { object-position: 62% 50%; }
.hero-figure--scene { margin-top: 1.5rem; }

.hero-figure--scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 22, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.hero-chip {
  position: absolute;
  z-index: 1;
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.hero-chip--noise {
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.hero-scene-caption {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
}

.hero-scene-note {
  display: block;
  font-family: var(--font-data);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-scene-title {
  display: block;
  margin-top: 0.35rem;
  max-width: 24rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(10, 20, 12, 0.45);
}

/* kompaktní dotace — roh místo pásu přes celou šířku */
.hero-grant--compact {
  left: auto;
  right: 1.1rem;
  bottom: auto;
  top: 4.1rem;
  max-width: 15rem;
  padding: 0.85rem 1.05rem;
  box-shadow: 0 14px 30px rgba(20, 40, 25, 0.16);
}

@media (max-width: 900px) {
  .hero-grant--compact { top: auto; bottom: 5.5rem; }
}


/* ---------------------------------------------------------------
   15. Doladění podle grafického návrhu (07/2026)
   --------------------------------------------------------------- */

/* hlavička: plná zelená linka místo gradientu */
.masthead { border-bottom-color: transparent; }
.masthead::after {
  bottom: 0;
  height: 3px;
  background: var(--leaf-deep);
}

/* větší, pevnější tlačítka */
.btn { padding: 0.95rem 1.7rem; }
.btn-ghost { background: #fdffed; }

/* titulek hero — težší řez, těsnější sazba */
.hero-title {
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-lead { margin-top: 1.9rem; }
.hero-actions { margin-top: 2.4rem; }

.hero-grid { align-items: start; }
.hero-figure--scene { margin-top: 0.5rem; }

/* čísla kroků: zaoblený čtverec jako v návrhu */
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}
.steps::before { top: 12px; }


/* ---------------------------------------------------------------
   16. Homepage podle grafického návrhu klienta
   --------------------------------------------------------------- */

.masthead-v2 { border-bottom: 1px solid #eef1ec; }
.masthead-v2::after { display: none; }

.phone-pill {
  background: linear-gradient(100deg, #5aab42, #8bc34a);
  color: #fff;
}
.phone-pill:hover { background: linear-gradient(100deg, #4e9a2e, #7ab648); }

.btn-ghost-leaf { border-color: #cfe0c6; }
.btn-ghost-leaf:hover { border-color: var(--leaf-deep); }

/* Hero */
.hero-v2 { overflow: hidden; padding-block: clamp(3rem, 5vw, 4.5rem) clamp(3.5rem, 6vw, 5.5rem); }
.hero-v2 .hero-grid { grid-template-columns: 1fr 1.08fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero-v2 .hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  max-width: 15ch;
  font-size: clamp(2.1rem, 1.3rem + 2.3vw, 3.3rem);
}
.hero-v2 .hero-lead { margin-top: 1.6rem; max-width: 30rem; }
.hero-v2 .hero-actions { margin-top: 2rem; }

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-perks li { display: flex; align-items: center; gap: 0.8rem; }

.perk-ico,
.trust-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.perk-ico-leaf { background: #eef6e7; color: var(--leaf-deep); }
.perk-ico-ember { background: #fdf0df; color: var(--ember); }

.perk-text,
.trust-text { display: flex; flex-direction: column; gap: 0.1rem; }
.perk-text b,
.trust-text b { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; }
.perk-text small,
.trust-text small { font-size: 0.82rem; color: var(--ink-muted); }

.hero-visual { position: relative; }

.hero-blob {
  position: relative;
  overflow: hidden;
  border-radius: 43% 57% 46% 54% / 55% 48% 52% 45%;
  aspect-ratio: 10 / 8.2;
}
.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 55%;
}

.grant-orb {
  position: absolute;
  top: 2%;
  left: -2.25rem;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 220deg, var(--leaf), var(--ember-soft), var(--ember), var(--leaf));
  box-shadow: 0 16px 36px rgba(23, 35, 27, 0.14);
}
.grant-orb-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fdffed;
  text-align: center;
  padding: 0.8rem;
}
.grant-orb-in b { font-family: var(--font-display); font-size: 1rem; letter-spacing: -0.01em; }
.grant-orb-sum { font-weight: 600; color: var(--leaf-deep); font-size: 0.98rem; white-space: nowrap; }
.grant-orb-in small { font-size: 0.74rem; color: var(--ink-muted); }
.grant-orb-in svg { margin-top: 0.15rem; }

.hero-leaf {
  position: absolute;
  right: -2.2rem;
  bottom: -2.8rem;
  width: clamp(120px, 14vw, 190px);
  height: auto;
  transform: rotate(8deg);
  filter: drop-shadow(0 10px 24px rgba(40, 80, 30, 0.25));
}

/* Kompletní služba od A do Z */
.az-band {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  background: #f5f7f3;
}
.az-title {
  text-align: center;
  font-size: clamp(1.7rem, 1.2rem + 1.7vw, 2.5rem);
  letter-spacing: -0.025em;
}
.az-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin: clamp(2.5rem, 4vw, 3.75rem) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.az-steps::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 9%;
  right: 9%;
  border-top: 2px dashed #d3ddcd;
}
.az-step { position: relative; text-align: center; }
.az-ico {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fdffed;
  border: 1.5px solid #e2e8dd;
  color: var(--leaf-deep);
  box-shadow: 0 6px 18px rgba(23, 35, 27, 0.06);
}
.az-num {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--leaf-deep);
  color: #fff;
  font-size: 0.72rem;
  border: 2.5px solid #f5f7f3;
}
.az-step-title { margin-top: 1.3rem; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }
.az-step-body { margin-top: 0.45rem; font-size: var(--fs-small); color: var(--ink-muted); max-width: 15rem; margin-inline: auto; }

/* Každý domov + poptávka */
.cta-band { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.cta-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.72fr 1.06fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
}

.cta-info {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}
.cta-info::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8% -18% -8% max(-18%, calc(-1 * var(--gutter)));
  background: #f0f6ea;
  border-radius: 40% 60% 55% 45% / 52% 46% 54% 48%;
}
.cta-info .eyebrow { color: var(--leaf-deep); }
.cta-title {
  font-size: clamp(1.6rem, 1.15rem + 1.6vw, 2.35rem);
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.cta-checks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.cta-checks li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.98rem; }
.cta-checks svg { flex: none; color: var(--leaf-deep); }
.cta-info .btn { margin-top: 1.9rem; }

.cta-blob {
  overflow: hidden;
  border-radius: 47% 53% 44% 56% / 55% 44% 56% 45%;
  aspect-ratio: 10 / 11.5;
  background: linear-gradient(165deg, #e9f2df 0%, #d7e8c8 55%, #f3e6cd 100%);
  display: flex;
  align-items: flex-end;
}
.cta-blob img {
  max-width: 88%;
  max-height: 78%;
  width: auto;
  object-fit: contain;
  margin: auto auto 9%;
  filter: drop-shadow(0 16px 22px rgba(30, 60, 30, 0.28));
}

.cta-form {
  background: linear-gradient(160deg, #fdf6ec 0%, #fbeeda 100%);
  border-radius: 22px;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
}
.cta-form-title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  letter-spacing: -0.02em;
}
.cta-form-sub { margin-top: 0.5rem; font-size: var(--fs-small); color: var(--ink-muted); }
.cta-form form { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.4rem; }

.f-field { position: relative; }
.f-field > svg {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  pointer-events: none;
}
.f-input {
  width: 100%;
  padding: 0.9rem 2.8rem 0.9rem 1.15rem;
  border: 1px solid #efe3d2;
  border-radius: 12px;
  background: #fffef8;
  font: inherit;
  font-size: var(--fs-small);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.f-input::placeholder { color: var(--ink-faint); }
.f-input:focus {
  outline: none;
  border-color: var(--ember-soft);
  box-shadow: 0 0 0 3px rgba(242, 138, 33, 0.14);
}
.f-select { appearance: none; }
.f-area { min-height: 108px; resize: vertical; }
.f-field-area > svg { display: none; }

.f-submit {
  justify-content: center;
  background: linear-gradient(100deg, var(--ember-soft), var(--ember));
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(242, 138, 33, 0.28);
}
.f-submit:hover { background: linear-gradient(100deg, #ee9a17, #e07a0e); }

/* Trust bar */
.trust-band {
  border-top: 1px solid #eef1ec;
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.85rem; }

/* Patička */
.foot-v2 {
  margin-top: clamp(1rem, 2vw, 2rem);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  background: linear-gradient(95deg, #4e9a2e 0%, #6db23a 45%, #cfa32e 74%, #f09e2a 100%);
  color: #fff;
}
.foot-v2 a { color: #fff; text-decoration: none; }
.foot-v2 a:hover { text-decoration: underline; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.9fr 0.9fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.foot-v2 .brand span { color: #fff; }
.foot-tagline { margin-top: 0.85rem; font-size: var(--fs-small); line-height: 1.55; color: rgba(255, 255, 255, 0.88); }

.foot-contact,
.foot-links {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin: 0.3rem 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-small);
}
.foot-contact li { display: flex; align-items: center; gap: 0.6rem; }
.foot-contact svg { flex: none; opacity: 0.9; }

.foot-social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background-color 0.2s var(--ease);
}
.foot-social a:hover { background: rgba(255, 255, 255, 0.28); text-decoration: none; }

/* Responsivní chování nových sekcí */
@media (max-width: 760px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
}

@media (max-width: 900px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 34rem; }
  .grant-orb { left: auto; right: 0; transform: scale(0.86); transform-origin: top right; }
  .hero-leaf { right: -1rem; bottom: -1.5rem; }
  .az-steps { grid-template-columns: 1fr 1fr; }
  .az-steps::before { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cta-grid { grid-template-columns: 1fr; }
  .az-steps { grid-template-columns: 1fr; }
  .az-step { text-align: left; }
  .az-num { left: 62px; }
  .az-step-body { margin-inline: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}


.masthead-v2 .masthead-inner { gap: 1.25rem; }
.masthead-v2 .nav-list a { font-size: 0.85rem; }
.masthead-v2 .phone-pill { padding: 0.8rem 1.3rem; font-size: 0.82rem; }


/* ---------------------------------------------------------------
   17. Prvky po vzoru velkých hráčů (stats, reference, experti)
   --------------------------------------------------------------- */

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.4rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-stats li { display: flex; align-items: baseline; gap: 0.5rem; }
.hero-stats b { font-size: 1.15rem; font-weight: 500; color: var(--leaf-deep); }
.hero-stats span { font-size: 0.85rem; color: var(--ink-muted); }
.hero-stats + .hero-perks { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }

.ref-band { padding-block: clamp(3.5rem, 6vw, 5.5rem); background: #f5f7f3; }
.ref-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ref-title { font-size: clamp(1.6rem, 1.15rem + 1.6vw, 2.35rem); letter-spacing: -0.025em; }

.ref-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.ref-card {
  background: var(--paper);
  border: 1px solid #e7ece2;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ref-photo {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(-45deg, #e7e9dc 0 12px, #eef0e3 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-photo span { font-family: var(--font-data); font-size: 0.72rem; color: var(--ink-faint); }
.ref-body { display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem 1.35rem 1.35rem; }
.ref-quote { font-size: 0.95rem; line-height: 1.6; text-wrap: pretty; }
.ref-foot { display: flex; flex-direction: column; gap: 0.1rem; margin-top: auto; }
.ref-foot b { font-size: 0.9rem; font-weight: 600; }
.ref-foot span { font-size: 0.8rem; color: var(--ink-muted); }

.f-experts {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid #f0e3cf;
}
.f-avatars { display: flex; flex: none; }
.f-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fdf6ec;
  font-size: 0.72rem;
  font-weight: 600;
}
.f-avatar + .f-avatar { margin-left: -9px; }
.f-experts-text { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.5; }
.f-experts-text .num { color: var(--ink); font-weight: 500; text-decoration: none; font-size: 0.95rem; }
.f-experts-text .num:hover { color: var(--leaf-deep); }

@media (max-width: 900px) {
  .ref-cards { grid-template-columns: 1fr; }
  .ref-card { flex-direction: row; }
  .ref-photo { flex: 0 0 38%; aspect-ratio: auto; }
}
@media (max-width: 640px) {
  .ref-card { flex-direction: column; }
  .ref-photo { aspect-ratio: 16 / 9; }
}


/* ==== Úvod v3 — klientské úpravy (reference fix), scoped na homepage ==== */
body.home {
/* Úprava původní stránky podle dodané obrazové předlohy. */
& {
  --shell: 1240px;
  /* Úvod má schválně SVĚTLEJŠÍ (bílé) pozadí než krémové podstránky — klient
     to tak chce. Inky ale zůstávají tmavé (dědí z :root), aby drobný text byl
     čitelný — proto tu nejsou původní světlejší --ink/--ink-muted. */
  --paper: #ffffff;
  --line: #e8ece5;
}
& { background: var(--paper); color: var(--ink); }
.shell { padding-inline: clamp(1.35rem, 4vw, 3.5rem); }

/* Header */
.masthead-v2 {
  background: rgba(255,255,255,.98);
  border-bottom: 0;
}
.masthead-v2 .masthead-inner {
  min-height: 52px;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.masthead-v2 .brand { flex: 0 0 auto; }
.masthead-v2 .brand-mark { width: 48px; height: 45px; }
.masthead-v2 .brand-eco,
.masthead-v2 .brand-therma { font-size: 1.42rem; }
.masthead-v2 .nav-primary { margin-left: auto; }
.masthead-v2 .nav-list { gap: clamp(.8rem, 1.8vw, 1.65rem); }
.masthead-v2 .nav-list a { font-size: .88rem; font-weight: 500; white-space: nowrap; }
.masthead-v2 .phone-pill {
  margin-left: clamp(.4rem, 1vw, 1rem);
  padding: .86rem 1.35rem;
  background: linear-gradient(100deg, var(--leaf-deep) 0%, #6ea23a 30%, #d98e2b 72%, var(--ember) 100%);
  box-shadow: 0 10px 24px rgba(120,150,40,.26);
}
.masthead-v2 .phone-pill:hover {
  background: linear-gradient(100deg, #427f26 0%, #5e8f30 30%, #c47e22 72%, #e07d15 100%);
}

/* Hero */
.hero-v2 {
  padding-block: clamp(2.8rem, 4.5vw, 4.7rem) clamp(3.5rem, 5vw, 5.2rem);
  background: radial-gradient(circle at 10% 35%, rgba(107,181,63,.035), transparent 34%);
}
.hero-v2 .hero-grid {
  grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr);
  gap: clamp(2.2rem, 4.5vw, 4.8rem);
  align-items: center;
}
.hero-v2 .hero-title {
  max-width: none;
  font-size: clamp(3rem, 4.15vw, 4.45rem);
  line-height: 1.13;
  letter-spacing: -.047em;
  color: #292929;
}
.hero-v2 .hero-lead {
  max-width: 34rem;
  margin-top: 1.7rem;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
  color: #4e5550;
}
.hero-v2 .hero-actions { margin-top: 2.1rem; gap: 1rem; }
.hero-v2 .btn { min-height: 50px; padding-inline: 1.8rem; }
.hero-v2 .btn-solid {
  background: linear-gradient(100deg, #69b338, #89bf35);
  box-shadow: 0 11px 24px rgba(83,145,39,.18);
}
.hero-v2 .btn-ghost-leaf { border: 1.5px solid #77b94d; background: #fff; }
.hero-stats { display: none !important; }
.hero-perks {
  flex-wrap: nowrap;
  gap: clamp(1.2rem, 2.2vw, 2.5rem);
  margin-top: 2.75rem;
}
.hero-perks li { gap: .75rem; min-width: 0; }
.perk-ico,
.trust-ico {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(107,181,63,.08);
}
.perk-text b, .trust-text b { font-size: .91rem; }
.perk-text small, .trust-text small { font-size: .77rem; white-space: nowrap; }
.hero-visual { min-width: 0; }
.hero-blob {
  aspect-ratio: 1.04 / 1;
  border-radius: 48% 6% 6% 48% / 52% 6% 6% 48%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.02);
}
.hero-blob img { object-position: 71% 52%; }
.grant-orb {
  top: 8%;
  left: -3.6rem;
  width: 164px;
  height: 164px;
  box-shadow: 0 12px 28px rgba(23,35,27,.12);
}
.grant-orb-in { background: #fff; }
.grant-orb-in b { font-size: 1.05rem; }
.grant-orb-sum { font-size: 1.05rem; }
.hero-leaf { right: -2rem; bottom: -2.15rem; width: clamp(145px, 15vw, 205px); }

/* Proces */
.az-band {
  padding-block: clamp(3rem, 4.5vw, 4.6rem);
  background: #fff;
  border-top: 1px solid #f1f3ef;
}
.az-title { font-size: clamp(1.75rem, 2.3vw, 2.45rem); }
.az-steps { margin-top: 2.85rem; gap: 1rem; }
.az-steps::before { border-top: 1.5px dashed #dfe5da; }
.az-ico {
  width: 86px;
  height: 86px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(37,52,39,.055);
}
.az-num { top: 74px; border-color: #fff; }
.az-step-title { margin-top: 1.2rem; font-size: .94rem; }
.az-step-body { max-width: 13.3rem; font-size: .79rem; line-height: 1.55; }

/* Produkt + formulář */
.cta-band { padding-block: clamp(2.7rem, 4.6vw, 4.8rem); background: #fff; }
.cta-grid {
  grid-template-columns: minmax(0, 1.47fr) minmax(340px, .95fr);
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
  align-items: stretch;
}
.cta-left-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(250px, .83fr);
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #f4f8ed 0%, #f1f7e9 56%, #edf5e4 100%);
}
.cta-info {
  z-index: 1;
  padding: clamp(2rem, 3.5vw, 3.35rem) 0 clamp(2rem, 3.5vw, 3.35rem) clamp(2rem, 3.5vw, 3.25rem);
}
.cta-info::before { display: none; }
.cta-info .eyebrow { margin-bottom: .8rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .02em; }
.cta-title { max-width: 13ch; font-size: clamp(1.85rem, 2.4vw, 2.75rem); line-height: 1.18; }
.cta-checks { gap: .75rem; margin-top: 1.55rem; }
.cta-checks li { font-size: .88rem; }
.cta-checks svg { width: 17px; height: 17px; }
.cta-info .btn { margin-top: 1.75rem; padding: .82rem 1.35rem; }
.cta-visual { align-self: stretch; display: flex; align-items: flex-end; min-width: 0; }
.cta-blob {
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
  border-radius: 52% 0 0 0 / 44% 0 0 0;
  background: radial-gradient(circle at 42% 32%, #fff 0%, #e5efda 70%);
}
.cta-blob img {
  max-width: 95%;
  max-height: 88%;
  margin: auto auto 2%;
  filter: drop-shadow(0 18px 20px rgba(26,42,27,.25));
}
.cta-form {
  height: 100%;
  border-radius: 30px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(145deg, #fffaf2 0%, #fdf1e3 100%);
  box-shadow: inset 0 0 0 1px rgba(242,138,33,.035);
}
.cta-form-title { font-size: clamp(1.72rem, 2vw, 2.25rem); }
.cta-form form { gap: .7rem; margin-top: 1.25rem; }
.f-input { padding-block: .84rem; border-radius: 10px; background: #fff; }
.f-area { min-height: 100px; }
.f-submit {
  min-height: 46px;
  background: linear-gradient(100deg, #ff8a00 0%, #f5a000 45%, #6bb53f 100%);
  box-shadow: 0 9px 20px rgba(228,142,19,.18);
}
.f-submit:hover { background: linear-gradient(100deg, #f08200 0%, #e99900 45%, #5ea535 100%); }
.f-experts { display: none !important; }

/* Spodní výhody a patička */
.ref-band { display: none !important; }
.trust-band { padding-block: 1.65rem; border-top: 1px solid #eef1ec; }
.trust-grid { gap: 1.1rem; }
.trust-item { gap: .65rem; }
.trust-ico { width: 44px; height: 44px; }
.foot-v2 { margin-top: 0; padding-block: 2.6rem; }
.foot-grid { grid-template-columns: 1.35fr 1.15fr .9fr .9fr auto; }

@media (max-width: 1060px) {
  .masthead-v2 .nav-list { gap: .8rem; }
  .masthead-v2 .nav-list a { font-size: .78rem; }
  .hero-v2 .hero-grid { grid-template-columns: minmax(0,.93fr) minmax(440px,1.07fr); }
  .hero-v2 .hero-title { font-size: clamp(2.7rem, 4vw, 3.7rem); }
  .cta-grid { grid-template-columns: 1.3fr .9fr; }
  .cta-left-card { grid-template-columns: 1fr .72fr; }
}
@media (max-width: 900px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 42rem; margin-inline: auto; }
  .hero-blob { border-radius: 30px; aspect-ratio: 16 / 10; }
  .grant-orb { left: 1rem; right: auto; }
  .hero-perks { flex-wrap: wrap; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-left-card { grid-template-columns: 1fr .75fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hero-v2 .hero-title { font-size: clamp(2.35rem, 10.5vw, 3.2rem); }
  .hero-perks { flex-direction: column; gap: .9rem; }
  .perk-text small { white-space: normal; }
  .cta-left-card { grid-template-columns: 1fr; }
  .cta-info { padding: 2rem; }
  .cta-visual { min-height: 280px; }
  .cta-blob { min-height: 280px; border-radius: 48% 48% 0 0 / 35% 35% 0 0; }
}
}


/* ---------------------------------------------------------------
   17b. Responzivní přepracování úvodní stránky (commit ec2c116)
   ---------------------------------------------------------------

   Šest vrstev oprav, které vznikly při ladění úvodní stránky a zůstaly
   jen v site/assets/css/styles.css. Do šablony se nikdy nedostaly, takže
   WordPress vysazoval hero bez .hero-stage, .hero-render a .grant-card —
   render čerpadla i cedulka s dotací se prostě nezobrazily.

   Je to hodně !important a hodně přepisů přes sebe. Nechává se to tak,
   jak to Adam viděl a odsouhlasil („landing ok“); pročistit se to má
   až s jeho vědomím, ne teď.
   --------------------------------------------------------------- */

/* --- v2 hero refinements: pump on the left, closer to reference --- */
.hero-v2 .hero-grid {
  grid-template-columns: minmax(420px, .76fr) minmax(760px, 1.24fr) !important;
  gap: clamp(2rem, 4.2vw, 5rem) !important;
}
.hero-copy {
  padding-top: clamp(4.4rem, 6vw, 6.6rem);
  padding-bottom: clamp(3rem, 5vw, 4.2rem);
}
.hero-visual {
  align-self: stretch;
}
.hero-blob {
  min-height: clamp(610px, 47vw, 760px) !important;
  border-radius: 42% 0 0 42% / 48% 0 0 48% !important;
  overflow: hidden;
  background: #edf0ea;
}
.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 52% !important;
  transform: scale(1.01);
}
.grant-orb {
  top: clamp(2.1rem, 4vw, 3.3rem) !important;
  left: clamp(-2.2rem, -1vw, -1rem) !important;
}
.hero-leaf {
  width: clamp(145px, 13vw, 205px) !important;
  right: clamp(.35rem, 1.8vw, 1.8rem) !important;
  bottom: clamp(-.35rem, -.25vw, .2rem) !important;
  opacity: .9;
  mix-blend-mode: multiply;
  transform: rotate(-4deg);
}
@media (max-width: 1100px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(390px, .88fr) minmax(510px, 1.12fr) !important;
  }
  .hero-blob img { object-position: 36% 52% !important; }
}
@media (max-width: 900px) {
  .hero-blob {
    min-height: 500px !important;
    border-radius: 30px !important;
  }
  .hero-blob img { object-position: 33% 50% !important; }
  .grant-orb {
    left: 1rem !important;
    top: 1rem !important;
  }
}


/* --- v3 viewport lock: max 1920x1080 friendly layout --- */
html {
  background: var(--paper);
}
body {
  max-width: 1920px;
  margin-inline: auto;
  overflow-x: hidden;
}
.masthead-v2,
.hero-v2,
.az-band,
.cta-band,
.trust-band,
.foot-v2 {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.shell {
  width: 100%;
  max-width: 1920px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1.4rem, 3.2vw, 4rem) !important;
}
.hero-v2 {
  min-height: min(calc(100vh - 88px), 1080px);
}
.hero-v2 .hero-grid {
  min-height: min(calc(100vh - 148px), 920px);
  grid-template-columns: minmax(500px, 0.88fr) minmax(820px, 1.12fr) !important;
  gap: clamp(2rem, 3vw, 4rem) !important;
  align-items: center !important;
}
.hero-copy {
  max-width: 680px;
}
.hero-v2 .hero-title {
  font-size: clamp(3rem, 3.2vw, 4.9rem) !important;
}
.hero-v2 .hero-lead {
  max-width: 36rem;
}
.hero-visual {
  width: 100%;
  min-width: 0;
}
.hero-blob {
  min-height: min(44vw, 760px) !important;
  max-height: 760px;
  border-radius: 42% 0 0 42% / 48% 0 0 48% !important;
}
.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 52% !important;
}
.grant-orb {
  left: clamp(-1rem, -0.8vw, -0.2rem) !important;
  top: clamp(1.8rem, 2.2vw, 2.6rem) !important;
}
.hero-leaf {
  width: clamp(130px, 10vw, 180px) !important;
  right: clamp(.5rem, 1.8vw, 1.6rem) !important;
  bottom: clamp(-.25rem, -.2vw, .1rem) !important;
}
.cta-grid,
.trust-grid,
.foot-grid,
.az-steps {
  max-width: 1920px;
}
@media (min-width: 1921px) {
  body {
    box-shadow: 0 0 0 1px rgba(0,0,0,.03);
  }
}
@media (max-width: 1366px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(430px, 0.9fr) minmax(560px, 1.1fr) !important;
    min-height: auto;
  }
  .hero-blob {
    min-height: min(46vw, 640px) !important;
  }
}
@media (max-width: 1100px) {
  body {
    max-width: none;
  }
  .hero-v2,
  .masthead-v2,
  .az-band,
  .cta-band,
  .trust-band,
  .foot-v2,
  .shell {
    max-width: none !important;
  }
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .hero-blob {
    max-height: none;
    min-height: 500px !important;
  }
  .grant-orb {
    left: 1rem !important;
    top: 1rem !important;
  }
}
@media (max-width: 640px) {
  .hero-blob {
    min-height: 420px !important;
  }
}


/* --- v4 cleanup: fix hero empty space + CTA proportions --- */
.hero-v2 {
  min-height: auto !important;
  padding-block: clamp(2rem, 3vw, 3rem) clamp(2.4rem, 3.2vw, 3.4rem) !important;
}
.hero-v2 .hero-grid {
  min-height: auto !important;
  grid-template-columns: minmax(480px, 0.9fr) minmax(720px, 1.1fr) !important;
  gap: clamp(2rem, 3vw, 3.5rem) !important;
  align-items: center !important;
}
.hero-copy {
  max-width: 640px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero-blob {
  min-height: 0 !important;
  height: clamp(470px, 36vw, 620px) !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  border-radius: 42% 0 0 42% / 48% 0 0 48% !important;
  overflow: hidden !important;
  background: #eef3e9 !important;
}
.hero-blob img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 31% 52% !important;
}
.grant-orb {
  top: 2rem !important;
  left: -.6rem !important;
}
.hero-leaf {
  width: clamp(112px, 8vw, 150px) !important;
  right: .4rem !important;
  bottom: .15rem !important;
  opacity: .92;
}
.az-band {
  padding-top: clamp(3rem, 5vw, 4.25rem) !important;
}
.az-title {
  margin-bottom: .2rem;
}
.cta-band {
  padding-top: clamp(2.4rem, 3.5vw, 3rem) !important;
}
.cta-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.78fr) !important;
  align-items: start !important;
  gap: 1.5rem !important;
}
.cta-left-card {
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 1.14fr) !important;
  min-height: 0 !important;
}
.cta-info {
  padding-block: 3.1rem !important;
}
.cta-visual {
  min-width: 0;
}
.cta-blob {
  min-height: 430px !important;
  height: 100% !important;
  background: #eef4e6 !important;
  border-radius: 38% 0 0 0 / 34% 0 0 0 !important;
  overflow: hidden !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cta-blob img {
  width: auto !important;
  max-width: 92% !important;
  height: 100% !important;
  max-height: 520px !important;
  object-fit: contain !important;
  margin: auto 0 0 auto !important;
  transform: none !important;
  filter: drop-shadow(0 18px 24px rgba(24, 38, 23, .18)) !important;
}
.cta-form {
  align-self: start !important;
  min-height: 0 !important;
  padding: 2rem 1.85rem 1.9rem !important;
}
.foot-v2 {
  margin-top: 0 !important;
}
@media (max-width: 1366px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(400px, 0.92fr) minmax(520px, 1.08fr) !important;
  }
  .hero-blob {
    height: clamp(420px, 38vw, 560px) !important;
  }
}
@media (max-width: 1100px) {
  .hero-v2 .hero-grid,
  .cta-grid,
  .cta-left-card {
    grid-template-columns: 1fr !important;
  }
  .hero-blob {
    height: clamp(420px, 56vw, 520px) !important;
    border-radius: 30px !important;
  }
  .grant-orb {
    left: 1rem !important;
    top: 1rem !important;
  }
  .cta-blob {
    min-height: 320px !important;
    border-radius: 28px !important;
  }
  .cta-blob img {
    max-width: 86% !important;
    max-height: 420px !important;
    margin-inline: auto !important;
  }
}


/* --- v5 target hero composition --- */
body {
  max-width: 1920px !important;
  margin-inline: auto !important;
  background: #fff !important;
}
.masthead-v2 {
  min-height: 52px;
  background: #fff !important;
}
.masthead-v2 .shell {
  padding-inline: clamp(2.25rem, 3.15vw, 3.75rem) !important;
}
.hero-v2 {
  min-height: 0 !important;
  padding: clamp(1.4rem, 2.2vw, 2.5rem) 0 clamp(2rem, 3vw, 3rem) !important;
  overflow: visible !important;
  background: #fff !important;
}
.hero-v2 .hero-grid {
  width: 100% !important;
  max-width: 1920px !important;
  min-height: 0 !important;
  margin-inline: auto !important;
  padding-left: clamp(2.25rem, 3.15vw, 3.75rem) !important;
  padding-right: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(500px, 43%) minmax(0, 57%) !important;
  gap: clamp(1.25rem, 2.5vw, 3rem) !important;
  align-items: center !important;
}
.hero-copy {
  width: 100%;
  max-width: 650px !important;
  padding: 0 0 0 0 !important;
  align-self: center;
}
.hero-v2 .hero-title {
  font-size: clamp(3.45rem, 3.6vw, 4.55rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -.048em !important;
  margin: 0 !important;
}
.hero-v2 .hero-lead {
  margin-top: 1.65rem !important;
  max-width: 35rem !important;
  font-size: clamp(1rem, 1.05vw, 1.13rem) !important;
  line-height: 1.58 !important;
}
.hero-v2 .hero-actions {
  margin-top: 1.9rem !important;
}
.hero-perks {
  margin-top: 2.1rem !important;
}
.hero-visual {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  height: clamp(530px, 34vw, 650px) !important;
  align-self: center !important;
  overflow: visible !important;
}
.hero-blob {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  border-radius: 50% 0 0 50% / 53% 0 0 47% !important;
  background: #eef4e9 !important;
}
.hero-blob img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 27% 53% !important;
  transform: scale(1.015) !important;
}
.grant-orb {
  width: clamp(150px, 9.2vw, 176px) !important;
  height: clamp(150px, 9.2vw, 176px) !important;
  left: clamp(-78px, -4vw, -55px) !important;
  top: clamp(45px, 3.5vw, 70px) !important;
  z-index: 4 !important;
  box-shadow: 0 16px 38px rgba(30, 50, 20, .15) !important;
}
.hero-leaf {
  display: block !important;
  position: absolute !important;
  z-index: 6 !important;
  width: clamp(185px, 13vw, 245px) !important;
  height: auto !important;
  right: clamp(25px, 3.3vw, 62px) !important;
  bottom: clamp(-40px, -2.1vw, -22px) !important;
  opacity: 1 !important;
  visibility: visible !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  transform: none !important;
  pointer-events: none;
}
.az-band {
  padding-top: clamp(3.4rem, 5vw, 5rem) !important;
}

@media (max-width: 1440px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(430px, 43%) minmax(0, 57%) !important;
  }
  .hero-v2 .hero-title {
    font-size: clamp(3rem, 4vw, 3.9rem) !important;
  }
  .hero-visual {
    height: clamp(480px, 37vw, 590px) !important;
  }
  .hero-blob img { object-position: 25% 53% !important; }
}

@media (max-width: 1100px) {
  .hero-v2 {
    padding-inline: clamp(1.2rem, 4vw, 2.5rem) !important;
  }
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 2.5rem !important;
  }
  .hero-copy {
    max-width: 720px !important;
  }
  .hero-visual {
    height: clamp(430px, 60vw, 560px) !important;
  }
  .hero-blob {
    border-radius: 32px !important;
  }
  .grant-orb {
    left: 1rem !important;
    top: 1rem !important;
  }
  .hero-leaf {
    right: 1rem !important;
    bottom: -1.6rem !important;
    width: clamp(150px, 24vw, 210px) !important;
  }
}

@media (max-width: 640px) {
  .hero-v2 .hero-title {
    font-size: clamp(2.55rem, 12vw, 3.3rem) !important;
  }
  .hero-visual {
    height: 420px !important;
  }
  .hero-blob img {
    object-position: 23% 52% !important;
  }
  .hero-leaf {
    width: 145px !important;
  }
}


/* --- v6 hero reset: back to right-side pump + visible leaf + cleaner image --- */
.hero-v2 {
  padding-block: clamp(2.25rem, 3vw, 3rem) clamp(2.8rem, 3.5vw, 3.8rem) !important;
  background: #fff !important;
}
.hero-v2 .hero-grid {
  min-height: auto !important;
  grid-template-columns: minmax(480px, .96fr) minmax(680px, 1.04fr) !important;
  gap: clamp(2rem, 3vw, 3.6rem) !important;
  align-items: center !important;
}
.hero-copy {
  max-width: 630px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero-visual {
  position: relative;
  min-width: 0;
  overflow: visible;
}
.hero-blob {
  height: clamp(500px, 41vw, 660px) !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  border-radius: 44% 0 0 44% / 48% 0 0 48% !important;
  overflow: hidden !important;
  background: #eef1ea !important;
}
.hero-blob img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 54% 52% !important;
  transform: none !important;
}
.grant-orb {
  display: block !important;
  top: clamp(2rem, 2.6vw, 2.8rem) !important;
  left: clamp(-3rem, -1.6vw, -1rem) !important;
  z-index: 3;
}
.hero-leaf {
  display: block !important;
  width: clamp(135px, 14vw, 205px) !important;
  height: auto !important;
  right: clamp(-.5rem, 1vw, .75rem) !important;
  bottom: clamp(-1.25rem, -0.6vw, -.25rem) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 18px 22px rgba(51, 87, 37, .18));
  transform: rotate(-8deg) !important;
  z-index: 4;
}
@media (max-width: 1366px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(410px, .9fr) minmax(520px, 1.1fr) !important;
  }
  .hero-blob {
    height: clamp(440px, 42vw, 570px) !important;
  }
}
@media (max-width: 1100px) {
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-visual {
    order: initial !important;
  }
  .hero-blob {
    height: clamp(420px, 58vw, 520px) !important;
    border-radius: 28px !important;
  }
  .grant-orb {
    left: 1rem !important;
    top: 1rem !important;
  }
  .hero-leaf {
    width: 130px !important;
    right: .5rem !important;
    bottom: -.5rem !important;
  }
}


/* =============================================================
   v7 — jednotná šířka, bílé pozadí, 3D render v hero
   ============================================================= */
:root {
  /* Toto byl skutečný zdroj krémové všude — pozdější :root přebíjel token
     na ř. 34. Sjednoceno na bílou (navbar i podstránky). */
  --paper: #ffffff;
  --shell: 1240px;
  --gutter-x: clamp(1.4rem, 4vw, 2.5rem);
}
html { background: var(--paper) !important; }
body {
  max-width: none !important;
  margin-inline: 0 !important;
  background: var(--paper) !important;
}
/* Jednotná šířka: všechny sekce sdílí stejný kontejner */
.shell,
.hero-v2 .hero-grid {
  box-sizing: border-box;
  width: 100% !important;
  max-width: calc(var(--shell) + 2 * var(--gutter-x)) !important;
  margin-inline: auto !important;
  padding-inline: var(--gutter-x) !important;
}
.masthead-v2, .hero-v2, .az-band, .cta-band, .trust-band, .foot-v2 {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}
.masthead-v2 { background: rgba(255, 255, 255, .96) !important; }
.hero-v2, .az-band, .cta-band, .trust-band { background: transparent !important; }
.az-band, .trust-band { border-top: 1px solid #eef0e0; }
.hero-v2 .btn-ghost-leaf { background: transparent !important; }
.grant-orb-in { background: #fffef8 !important; }
.az-ico { background: #fffef8 !important; }
.az-num { border-color: var(--paper) !important; }
.f-input { background: #fffef8 !important; }

/* Hero: volně stojící render místo obří kulky */
.hero-v2 .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr) !important;
  gap: clamp(2rem, 4vw, 4.5rem) !important;
  align-items: center !important;
}
.hero-copy { max-width: 640px !important; }
.hero-visual {
  position: relative !important;
  height: clamp(440px, 36vw, 580px) !important;
  overflow: visible !important;
}
.hero-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -4% -6%;
  background: radial-gradient(circle at 50% 46%, rgba(107,181,63,.14), rgba(107,181,63,.05) 44%, transparent 68%);
}
.hero-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 64%;
  height: 44px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(28, 42, 24, .22), transparent 72%);
  filter: blur(6px);
}
.hero-render {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(24, 38, 20, .16));
}
.grant-orb {
  top: 3% !important;
  left: 1% !important;
  z-index: 5 !important;
}
.hero-leaf {
  width: clamp(110px, 9vw, 150px) !important;
  right: 2% !important;
  bottom: 2% !important;
  z-index: 3;
  transform: rotate(-8deg) !important;
}
@media (max-width: 1100px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr !important; }
  .hero-visual { height: clamp(380px, 52vw, 480px) !important; margin-top: .5rem; }
  .grant-orb { left: 0 !important; top: 0 !important; }
}
@media (max-width: 640px) {
  .hero-visual { height: 340px !important; }
}


/* v7.1 — dorovnání gutterů (masthead + hero na mobilu) */
.masthead-v2 .shell { padding-inline: var(--gutter-x) !important; }
@media (max-width: 1100px) {
  .hero-v2 { padding-inline: 0 !important; }
}


/* v8 — scéna jako foto v rámu (ne čtverec), stránka locked na 1920 */
body { max-width: 1920px !important; margin-inline: auto !important; }

.hero-stage::before, .hero-stage::after { display: none; }
.hero-visual { height: auto !important; }
.hero-stage { position: relative !important; inset: auto !important; display: block; }
.hero-render {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(24, 38, 20, .18);
  filter: none;
}
.grant-orb { top: -6% !important; left: -4% !important; }
.hero-leaf { display: none !important; }
@media (max-width: 1100px) {
  .hero-render { aspect-ratio: 16 / 9; }
  .grant-orb { top: -14px !important; left: -6px !important; }
}


/* v9 — širší content pro 1920 layout */
:root { --shell: 1560px; --gutter-x: clamp(1.4rem, 4vw, 3rem); }
@media (min-width: 1400px) {
  .hero-copy { max-width: 720px !important; }
  .hero-title { font-size: 3.6rem !important; }
  .az-grid { max-width: none !important; }
  .foot-v2 .shell, .trust-band .shell { max-width: calc(var(--shell) + 2 * var(--gutter-x)) !important; }
}


/* v10 — lock 3440, výraznější trust band, sladěný footer */
body { max-width: 3440px !important; }

/* Trust band: větší, vzdušnější */
.trust-band { padding-block: clamp(2.6rem, 4vw, 4rem) !important; }
.trust-band .trust-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: clamp(1.4rem, 3vw, 3rem) !important;
}
.trust-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: .9rem !important;
}
.trust-ico {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
}
.trust-ico svg { width: 28px !important; height: 28px !important; }
.trust-text { display: flex; flex-direction: column; gap: .3rem; }
.trust-text b {
  font-family: var(--font-display) !important;
  font-size: 1.22rem !important;
  font-weight: 600 !important;
  color: var(--ink, #1c2a18) !important;
}
.trust-text small {
  font-size: 1rem !important;
  color: var(--ink-soft, #55645a) !important;
}
@media (max-width: 900px) {
  .trust-band .trust-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 520px) {
  .trust-band .trust-grid { grid-template-columns: 1fr !important; }
}

/* Footer podle grafického návrhu: teplý zeleno-jantarový gradient (signature
   „přenos tepla“ leaf → ember), ne plochá tmavá zeleň. Kompaktnější než dřív. */
.foot-v2 {
  background: linear-gradient(105deg, var(--leaf-deep) 0%, #6ea23a 30%, #d98e2b 72%, var(--ember) 100%) !important;
  padding-block: clamp(1.3rem, 2.2vw, 1.9rem) 0 !important;
}
.foot-v2 .shell {
  max-width: calc(var(--shell) + 2 * var(--gutter-x)) !important;
  padding-inline: var(--gutter-x) !important;
}
.foot-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr .8fr .8fr auto !important;
  gap: clamp(1.6rem, 3vw, 3.2rem) !important;
  align-items: start !important;
  padding-bottom: clamp(2rem, 3vw, 3rem);
}
.foot-brand .brand span { color: #fff !important; }
.foot-tagline { color: rgba(255,255,255,.78) !important; font-size: 1.02rem !important; }
/* Rozteč řeší flex `gap` v .foot-links/.foot-contact — margin navíc dělal
   dvojitou mezeru a patička byla kvůli tomu obří. */
.foot-contact li, .foot-links li { margin-block: 0 !important; }
.foot-contact a, .foot-contact span, .foot-links a {
  color: rgba(255,255,255,.85) !important;
  font-size: 1.02rem !important;
}
.foot-links a:hover, .foot-contact a:hover { color: #fff !important; }
.foot-social { display: flex !important; gap: .7rem !important; justify-self: end; }
.foot-social a {
  width: 44px !important;
  height: 44px !important;
  border: 1.5px solid rgba(255,255,255,.4) !important;
  background: transparent !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  transition: background .2s, border-color .2s;
}
.foot-social a:hover { background: rgba(255,255,255,.14) !important; border-color: #fff !important; }
@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: 1fr 1fr !important; }
  .foot-social { justify-self: start; }
}
@media (max-width: 640px) {
  .foot-grid { grid-template-columns: 1fr !important; }
}


/* v11 — content skutečně škáluje s viewportem (až do 3440) */
:root { --shell: clamp(1240px, 82vw, 2860px); --gutter-x: clamp(1.4rem, 3vw, 4rem); }
.hero-copy { max-width: 44rem !important; }
@media (min-width: 1400px) {
  .hero-title { font-size: clamp(3.4rem, 3vw, 5.4rem) !important; }
}
/* rem-based škálování celé stránky na velkých monitorech */
@media (min-width: 2100px) { html { font-size: 18.5px; } }
@media (min-width: 2700px) { html { font-size: 21px; } }
@media (min-width: 3200px) { html { font-size: 23px; } }
@media (min-width: 2100px) {
  .brand-mark { height: 2.4rem !important; width: auto !important; }
  .trust-ico { width: 4rem !important; height: 4rem !important; }
  .trust-ico svg { width: 1.8rem !important; height: 1.8rem !important; }
  .foot-social a { width: 2.6rem !important; height: 2.6rem !important; }
  .az-ico { width: 5rem !important; height: 5rem !important; }
  .az-ico svg { width: 2.2rem !important; height: 2.2rem !important; }
  .grant-orb { transform: scale(1.15); transform-origin: top left; }
}


/* =============================================================
   v12 — footer redesign, služby na plnou šířku, čerpadlo v kruhu
   ============================================================= */

/* --- Footer --- */
.foot-grid {
  grid-template-columns: 1.5fr 1.05fr .85fr .85fr !important;
  gap: clamp(2rem, 3.5vw, 4rem) !important;
  padding-bottom: clamp(0.9rem, 1.6vw, 1.4rem) !important;
}
.foot-col { min-width: 0; }
.foot-h {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  /* Bylo .55 — na zeleno-jantarovém gradientu skoro nečitelné. */
  color: rgba(255,255,255,.9);
  margin: .4rem 0 1.1rem;
}
.brand-chip {
  width: 54px; height: 54px; flex: 0 0 auto;
  background: #fffef8;
  border-radius: 16px;
  display: inline-grid; place-items: center;
  margin-right: .35rem;
}
.brand-chip img { width: 34px; height: auto; display: block; }
.foot-social { margin-top: 1.5rem !important; justify-self: auto !important; gap: .8rem !important; flex-wrap: wrap; }
.foot-social a {
  width: auto !important; height: auto !important;
  padding: .55rem 1.15rem !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  background: transparent !important;
  display: inline-flex !important; align-items: center !important; gap: .55rem !important;
  font-size: .95rem !important; font-weight: 500;
  color: #fff !important; text-decoration: none !important;
}
.foot-social a svg { width: 17px !important; height: 17px !important; }
.foot-social a:hover { background: rgba(255,255,255,.14) !important; border-color: #fff !important; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-block: 1.3rem;
  color: rgba(255,255,255,.62);
  font-size: .92rem;
}
.foot-bottom a { color: rgba(255,255,255,.75) !important; }
.foot-bottom a:hover { color: #fff !important; }
@media (max-width: 1100px) { .foot-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 640px) {
  .foot-grid { grid-template-columns: 1fr !important; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- Služby od A do Z: plná šířka contentu --- */
@media (min-width: 1101px) {
  .az-steps, .az-grid {
    max-width: none !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: clamp(1.2rem, 2.6vw, 3.4rem) !important;
  }
}
.az-band { padding-block: clamp(3rem, 5vw, 5rem) !important; }

/* --- Čerpadlo: volně v kruhu, ne narvané na hraně --- */
.cta-left-card {
  grid-template-columns: minmax(340px, 1.08fr) minmax(300px, .92fr) !important;
  align-items: center !important;
}
.cta-info { padding: clamp(2.2rem, 3vw, 3.8rem) !important; }
.cta-visual { align-self: stretch !important; display: flex !important; min-width: 0; }
.cta-blob {
  position: relative !important;
  width: 100% !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  min-height: clamp(380px, 28vw, 560px) !important;
  overflow: visible !important;
  padding: clamp(1.5rem, 2.5vw, 3rem) !important;
}
.cta-blob::before {
  content: "";
  position: absolute;
  width: min(82%, 30rem);
  aspect-ratio: 1;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 32%, #ffffff, #e7f0dd 76%);
}
.cta-blob::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 10%;
  transform: translateX(-50%);
  width: 44%; height: 26px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(28,42,24,.2), transparent 72%);
  filter: blur(5px);
}
.cta-blob img {
  position: relative; z-index: 2;
  width: auto !important;
  max-width: min(86%, 24rem) !important;
  max-height: clamp(19rem, 22vw, 28rem) !important;
  margin: 0 !important;
  filter: drop-shadow(0 18px 26px rgba(24,38,20,.18));
}
@media (max-width: 900px) {
  .cta-blob { min-height: 340px !important; }
}

/* --- Celkové doladění --- */
html { scroll-behavior: smooth; }
.masthead-v2 { border-bottom: 1px solid rgba(46,93,30,.08); }
.trust-band { padding-block: clamp(1.4rem, 2.5vw, 2.2rem) clamp(2.4rem, 4vw, 3.4rem) !important; }


/* =============================================================
   v13 — dotace jako karta, hranatější tlačítka, drobné opravy
   ============================================================= */

/* Organický „blob“ za čerpadlem podle grafického návrhu — měkký tvar
   s jemným zeleným přechodem, ať produkt nelevituje na prázdné kartě. */
.cta-blob::before {
  display: block !important;
  border-radius: 42% 58% 57% 43% / 48% 42% 58% 52% !important;
  background: radial-gradient(circle at 38% 30%, #f4faed, #dceccf 74%) !important;
}

/* Tlačítka: zaoblené obdélníky místo pilulek */
.btn, .btn-solid, .btn-ghost, .btn-ghost-leaf, .f-submit, .masthead-phone {
  border-radius: 13px !important;
}

/* Dotační odznak na hero snímku — kruh se zeleným gradientovým prstencem
   podle grafického návrhu (dřív hranatá karta). Vnější kruh = gradient,
   padding tvoří tloušťku prstence, vnitřní .grant-txt = krémový kruh. */
.grant-card {
  position: absolute;
  left: clamp(-22px, -1.6vw, -6px);
  top: 7%;
  z-index: 6;
  width: clamp(150px, 12.5vw, 188px);
  aspect-ratio: 1;
  padding: 7px;
  border-radius: 50%;
  /* Stejný „přenos tepla“ gradient jako footer (leaf → ember). */
  background: linear-gradient(140deg, var(--leaf-deep) 0%, #6ea23a 30%, #d98e2b 72%, var(--ember) 100%);
  box-shadow: 0 18px 40px rgba(24, 38, 20, .24), 0 3px 10px rgba(24, 38, 20, .12);
}
.grant-txt {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fffef8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .08rem;
  text-align: center;
  padding: .4rem .85rem;
}
.grant-txt small {
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 700;
  color: var(--leaf-deep);
}
.grant-txt b {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.3vw, 1.26rem);
  font-weight: 700;
  color: var(--ink, #1c2a18);
  line-height: 1.05;
  white-space: nowrap;
}
.grant-txt em {
  font-style: normal;
  font-size: .76rem;
  color: var(--ink-muted, #55645a);
}
.grant-leaf { color: var(--leaf); margin-top: .18rem; }
@media (max-width: 1100px) {
  .grant-card { left: 6px; top: 8px; }
}
@media (max-width: 640px) {
  .grant-card { width: 124px; padding: 6px; }
  .grant-txt b { font-size: 1rem; }
  .grant-txt small { font-size: .78rem; }
}

/* Hero snímek: větší rádius, měkčí vrstvený stín */
.hero-render {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(24, 38, 20, .16), 0 6px 18px rgba(24, 38, 20, .08);
}

/* Footer: logo v chipu skutečně na středu */
/* gap: 0 — jinak flex mezera oddělovala i „Eco“ od „Therma“ (Eco Therma).
   Mezeru dáváme jen za logo (chip). */
.foot-brand .brand { display: flex !important; align-items: center !important; gap: 0 !important; }
.foot-brand .brand-chip { margin-right: .6rem !important; }
.brand-chip { display: grid !important; place-items: center !important; padding: 0 !important; }
.brand-chip .brand-mark { margin: 0 !important; display: block !important; }
.foot-bottom { justify-content: center; text-align: center; }


/* v13.1 — žádné oddělovací linky mezi sekcemi */
.az-band, .trust-band, .cta-band,
.hero-v2, section[class] {
  border-top: none !important;
  border-bottom: none !important;
}
.masthead-v2 { border-bottom: none !important; box-shadow: none !important; }


/* v13.2 — výřez hero: čerpadlo víc doprava */
.hero-render { object-position: 88% center; }


/* =============================================================
   v14 — responsive hardening: funkční na všech šířkách
   ============================================================= */

/* Menu se sklápí dřív, než se položky začnou mačkat */
@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .masthead-phone { display: none !important; }
  .nav-primary {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    margin: 0;
    padding: 0 var(--gutter-x, 1.5rem) 1.75rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-primary.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { padding-block: 1rem; font-size: 1.05rem !important; color: var(--ink); white-space: normal; }
  .nav-list a::after { display: none; }
}

/* Hero: perky se smí zalomit, na mobilu vyšší výřez snímku */
@media (max-width: 1100px) {
  .hero-perks { flex-wrap: wrap !important; gap: 1rem 1.8rem !important; }
  .perk-text small { white-space: normal !important; }
}
@media (max-width: 640px) {
  .hero-v2 { padding-block: 1.6rem 2.2rem !important; }
  .hero-v2 .hero-grid { gap: 1.9rem !important; }
  .hero-copy { text-align: center; }
  .hero-v2 .hero-title { margin-inline: auto !important; }
  .hero-v2 .hero-lead { margin-inline: auto !important; }
  .hero-v2 .hero-actions { justify-content: center; }
  .hero-v2 .hero-title {
    font-size: clamp(2.05rem, 8.2vw, 2.6rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -.032em !important;
  }
  .hero-v2 .hero-lead { margin-top: 1.1rem !important; font-size: .98rem !important; }
  .hero-v2 .hero-actions { margin-top: 1.5rem !important; }
  .hero-v2 .btn { min-height: 46px; padding-inline: 1.4rem; }
  .hero-perks {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    margin-top: 1.7rem !important;
    gap: .9rem .5rem !important;
  }
  .hero-perks li {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: .55rem !important;
  }
  .perk-text { align-items: center; }
  .perk-ico { width: 44px !important; height: 44px !important; border-radius: 12px !important; }
  .perk-ico svg { width: 19px; height: 19px; }
  .hero-render { aspect-ratio: 4 / 3; object-position: 72% center; border-radius: 18px; }
  .grant-card {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    gap: .7rem;
    padding: .75rem 1rem .75rem .85rem;
    border-radius: 13px;
  }
  .grant-ico { width: 38px; height: 38px; border-radius: 10px; }
  .grant-txt small { font-size: .64rem; }
  .grant-txt b { font-size: 1rem; }
  .grant-txt em { font-size: .76rem; }
  .az-band { padding-block: 2.6rem 3rem !important; }
  .az-steps { margin-top: 2rem !important; gap: 1.9rem !important; }
  .az-ico { width: 72px !important; height: 72px !important; }
  .az-ico img { width: 29px; height: 29px; }
  .az-num { top: 62px; }
  .cta-band { padding-top: 1.6rem !important; }
  .trust-band { padding-block: 2.4rem !important; }
}
@media (max-width: 420px) {
  .hero-v2 .hero-title { font-size: 1.95rem !important; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Kroky služby: 5 → 3 → 2 → 1 */
@media (max-width: 1100px) {
  .az-steps { grid-template-columns: repeat(3, 1fr) !important; gap: 2.2rem 1.5rem !important; }
  .az-steps::before { display: none !important; }
}
@media (max-width: 760px) {
  .az-steps { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .az-steps { grid-template-columns: 1fr !important; }
  .az-step { text-align: center; }
  .az-num { left: 50%; }
  .az-step-body { margin-inline: auto; }
}

/* Karta s čerpadlem + formulář: jeden sloupec na tabletu/mobilu
   (opravuje přetečení — pozdější pravidla přebíjela mobilní breakpoint) */
@media (max-width: 1100px) {
  .cta-grid { grid-template-columns: 1fr !important; }
  .cta-left-card { grid-template-columns: 1fr !important; }
  .cta-info { padding: clamp(1.6rem, 5vw, 2.6rem) !important; }
  .cta-title { max-width: none; }
  .cta-blob { min-height: 0 !important; padding: 0 1.5rem 2.4rem !important; }
  .cta-blob img { max-width: min(78%, 20rem) !important; max-height: 20rem !important; }
  .cta-form { height: auto !important; }
}

/* Formulář: 16px na mobilu, ať iOS nezoomuje při fokusu */
@media (max-width: 640px) {
  .f-input { font-size: 16px !important; }
}

/* v14.1 — mobilní CTA karta a footer */
@media (max-width: 640px) {
  .cta-left-card { border-radius: 22px; }
  .cta-info { padding: 1.7rem 1.4rem 0 !important; text-align: center; }
  .cta-title { font-size: 1.65rem !important; margin-inline: auto; }
  .cta-checks {
    margin-top: 1.2rem !important;
    gap: .6rem !important;
    width: fit-content;
    margin-inline: auto !important;
    text-align: left;
  }
  .cta-checks li { font-size: .92rem !important; }
  .cta-info .btn { margin-top: 1.4rem !important; }
  .cta-blob { padding: .5rem 1.25rem 1.9rem !important; }
  .cta-blob img {
    max-width: min(64%, 15rem) !important;
    max-height: 15rem !important;
    filter: drop-shadow(0 12px 16px rgba(24, 38, 20, .18)) !important;
  }
  .cta-blob::after { width: 54%; bottom: 7%; }
  .cta-form { border-radius: 22px; padding: 1.6rem 1.3rem 1.5rem !important; }
  .cta-form-title, .cta-form-sub { text-align: center; }

  .foot-v2 { padding-block: 2.2rem 0 !important; text-align: center; }
  .foot-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.9rem 1.2rem !important;
    padding-bottom: 1.9rem !important;
  }
  .foot-brand { grid-column: 1 / -1; }
  .foot-grid > div:nth-child(2) { grid-column: 1 / -1; }
  .foot-brand .brand { justify-content: center; }
  .foot-tagline { margin-inline: auto; max-width: 20rem; }
  .foot-social { justify-content: center; }
  .foot-contact li { justify-content: center; }
  .foot-h { margin: 0 0 .8rem !important; font-size: .72rem; }
  .foot-contact li, .foot-links li { margin-block: .4rem !important; }
  .foot-contact a, .foot-contact span, .foot-links a { font-size: .95rem !important; }
  .foot-social { margin-top: 1.1rem !important; gap: .6rem !important; }
  .foot-social a { padding: .5rem 1rem !important; font-size: .88rem !important; }
  .foot-bottom { padding-block: 1.1rem; font-size: .8rem; text-align: center; justify-content: center; }
}

/* =============================================================
   v15 — responsive overhaul: plynulá škála od mobilu po desktop
   Žebřík: ≥1101 desktop | 881–1100 kompaktní 2 sloupce |
           641–880 hero pod sebou, na střed | ≤640 mobil (v14)
   ============================================================= */

/* — 881–1100 px: hero zůstává dvousloupcový, jen se úměrně zmenší — */
@media (min-width: 881px) and (max-width: 1100px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
    gap: clamp(1.6rem, 3vw, 2.6rem) !important;
    align-items: center !important;
  }
  .hero-v2 .hero-title { font-size: clamp(2.3rem, 3.9vw, 3.4rem) !important; }
  .hero-v2 .hero-lead { margin-top: 1.25rem !important; font-size: .98rem !important; max-width: 32rem !important; }
  .hero-v2 .hero-actions { margin-top: 1.6rem !important; }
  .hero-v2 .btn { min-height: 46px; padding-inline: 1.35rem; }
  .hero-perks { margin-top: 1.8rem !important; gap: .9rem 1.5rem !important; }
  .perk-ico { width: 44px; height: 44px; border-radius: 12px; }
  .perk-ico svg { width: 19px; height: 19px; }
}

/* — 641–880 px: hero v jednom sloupci, vše zarovnané na střed — */
@media (min-width: 641px) and (max-width: 880px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .hero-copy {
    max-width: 42rem !important;
    margin-inline: auto !important;
    text-align: center;
  }
  .hero-v2 .hero-title { font-size: clamp(2.3rem, 5.6vw, 3.1rem) !important; }
  .hero-v2 .hero-lead { margin-top: 1.25rem !important; margin-inline: auto !important; }
  .hero-v2 .hero-actions { margin-top: 1.7rem !important; justify-content: center; }
  .hero-perks {
    margin-top: 2rem !important;
    justify-content: center !important;
    gap: 1rem 2rem !important;
  }
  .hero-visual { max-width: 42rem; margin-inline: auto; }
}

/* — Kroky služby: flex místo gridu, poslední řádek se centruje
     (5 → 3+2 → 2+2+1 → 1) a žádný krok nezůstává jako sirotek — */
@media (max-width: 1100px) {
  .az-steps {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2.4rem 1.5rem !important;
    margin-top: 2.4rem !important;
  }
  .az-step { flex: 1 1 26%; max-width: 19rem; text-align: center !important; }
  .az-num { left: 50% !important; }
  .az-step-body { margin-inline: auto !important; }
}
@media (max-width: 880px) {
  .az-step { flex-basis: 38%; }
}
@media (max-width: 560px) {
  .az-step { flex-basis: 100%; max-width: 21rem; }
  .trust-band .trust-grid { grid-template-columns: 1fr !important; }
}

/* v15.1 — footer logo chip: škáluje s rem (velké monitory) a logo
   se nedotýká okrajů; vyšší specificita přebíjí .brand-mark z v11 */
.brand-chip {
  width: 3.4rem !important;
  height: 3.4rem !important;
  border-radius: 1rem !important;
}
.brand-chip .brand-mark {
  width: 2.1rem !important;
  height: auto !important;
  margin: 0 !important;
}


/* ---------------------------------------------------------------
   18. Připomínky z 08/2026 (Adam + Míša)
   ---------------------------------------------------------------

   Míša k landingu: „navbar pusobi ze si na nej sedl horizontalni adam broz“,
   „navbar pusobi insignifikantne“, „naplacane na sebe“, „lepsi kompozice
   landingu“, „texty nejdou videt“. Adam k landingu jen „ok“ — kompozice se
   proto nemění, jen hlavička, rozestupy a kontrast.

   Dál sem patří prvky, které v šabloně dosud nebyly: jednotka s renderem,
   kontaktní karty, údaje o firmě.
   --------------------------------------------------------------- */


/* --- Hlavička ------------------------------------------------------------
   Navigace byla 0,85 rem a v --ink-muted, telefon 0,82 rem. Malé a šedé,
   odtud „insignifikantne“ i „texty nejdou videt“. */

.masthead-v2 .masthead-inner {
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: 52px;
}

.brand-mark {
  width: 42px;
  height: auto;
  margin-right: 0.55rem;
}

.masthead-v2 .brand { font-size: 1.45rem; }

.masthead-v2 .nav-list { gap: clamp(0.9rem, 1.7vw, 1.9rem); }

.masthead-v2 .nav-list a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding-block: 0.55rem;
}
.masthead-v2 .nav-list a:hover { color: var(--leaf-deep); }

.masthead-v2 .phone-pill {
  padding: 0.95rem 1.6rem;
  font-size: 0.98rem;
  font-weight: 700;
}
.masthead-v2 .phone-pill .num { letter-spacing: 0; }


/* --- Rytmus --------------------------------------------------------------
   „naplacane na sebe“. Pásy dostaly víc vzduchu a hero se odlepilo od
   hlavičky i od pásu pod sebou. */

.az-band,
.cta-band,
.trust-band { padding-block: clamp(3.5rem, 7vw, 6rem); }

.hero-v2 { padding-block: clamp(3rem, 5.5vw, 5rem) clamp(3rem, 5.5vw, 5rem); }
.hero-v2 .hero-lead { margin-top: 1.8rem; }
.hero-v2 .hero-actions { margin-top: 2.3rem; }
.hero-perks { margin-top: 3rem; gap: 1.6rem 2.6rem; }

.az-title { margin-bottom: clamp(2.5rem, 4.5vw, 3.5rem); }


/* --- Čitelnost -----------------------------------------------------------
   Alegreya Sans má menší střední výšku než Instrument Sans, takže text
   o stupeň nahoru. Zároveň se srovnal kontrast drobných popisků. */

body { font-size: 1.0625rem; line-height: 1.65; }

.hero-v2 .hero-lead { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.28rem); color: var(--ink-muted); }

.perk-text small,
.trust-text small,
.az-step-body { color: var(--ink-muted); }

.eyebrow { letter-spacing: 0.12em; font-weight: 700; }

/* Číslice byly v mono. Teď je nese Alegreya Sans, tabulkové číslice
   se musí zapnout ručně, jinak se telefon i rozměry rozjedou. */
.num,
.spec-val,
.az-num { font-variant-numeric: tabular-nums; }


/* --- Jednotka s renderem (Tepelná čerpadla, Fotovoltaika) --------------- */

.duo.unit {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
}

.unit-figure {
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--mint);
  border-radius: var(--radius);
}
.unit-figure img,
.unit-figure svg {
  width: 100%;
  height: auto;
  max-height: 18rem;
  object-fit: contain;
}

.unit-body .pump-type { display: block; margin-bottom: 0.5rem; }
.unit-body .band-title { margin-bottom: 0.6rem; }
.unit-body .spec-table { margin-top: 1.5rem; }

.unit-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: var(--mint);
  border-radius: var(--radius);
}
.unit-note p {
  margin: 0 0 1rem;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--ink-muted);
}
.unit-note strong { color: var(--ink); }

/* Sudé sestavy zrcadlíme, ať sloupec pěti karet nevypadá jako tabulka.
   Prohodit se musí i šířky sloupců, ne jen pořadí. */
.band-mint .duo.unit { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
.band-mint .duo.unit .unit-figure { order: 2; }
.band-mint .unit-figure { background: var(--paper); }
.band-mint .unit-note { background: var(--paper); }


/* --- Kontakt -------------------------------------------------------------
   Míša: „telefon email spolecne“ + „info: firma ico sidlo“. */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card-title { margin: 0 0 1.4rem; font-size: var(--fs-h3); }

.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding-block: 1rem;
}
.contact-list li + li { border-top: 1px solid var(--line); }

.contact-ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf-deep);
}

.contact-body { display: block; line-height: 1.5; }
.contact-body b { display: block; color: var(--ink); }
.contact-body a,
.contact-body > span { display: block; color: var(--ink); text-decoration: none; }
.contact-body a:hover { color: var(--leaf-deep); text-decoration: underline; }
.contact-body small { display: block; margin-top: 0.15rem; font-size: var(--fs-small); color: var(--ink-muted); }

.company-facts { margin: 0; }
.company-note { margin: 1.25rem 0 0; font-size: var(--fs-small); color: var(--ink-muted); }


/* --- Patička: sloupec s firmou ------------------------------------------ */

.foot-company { gap: 0.5rem; }
.foot-company li { opacity: 0.92; }
.foot-bottom { margin-top: clamp(1rem, 2vw, 1.6rem); padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.28); font-size: var(--fs-small); }
.brand-chip {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-right: 0.6rem;
  background: #fff;
  border-radius: 12px;
}
.brand-chip .brand-mark { width: 30px; margin: 0; }


/* --- Poptávka v kartě: souhlas ------------------------------------------
   V grafickém návrhu formulář neměl odkaz na ochranu údajů. Bez něj se
   souhlas se zpracováním nedá doložit, takže přibyl do obou podob. */

.cta-form .form-consent {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-muted);
}
.cta-form .form-note { margin-bottom: 1rem; }


/* --- Užší displeje ------------------------------------------------------- */

@media (max-width: 900px) {
  .duo.unit,
  .band-mint .duo.unit { grid-template-columns: minmax(0, 1fr); }
  .band-mint .duo.unit .unit-figure { order: 0; }
  .unit-figure img, .unit-figure svg { max-height: 14rem; }
}

@media (max-width: 860px) {
  .masthead-v2 .masthead-inner { min-height: 76px; }
  .masthead-v2 .nav-list a { font-size: 1.05rem; }
  .masthead-v2 .phone-pill { padding: 0.75rem 1.1rem; font-size: 0.9rem; }
  .masthead-v2 .phone-pill .num { display: none; }
}


/* ---------------------------------------------------------------
   19. Kompozice úvodní stránky
   ---------------------------------------------------------------

   „Landing page is very cramped together.“ Má pravdu. Sekce 17b je šest
   vrstev ladění přes sebe, každá s !important a každá dělaná pro jinou
   šířku okna; ve výsledku je na 1440 px drobné písmo, těsné pásy a patička
   se čtyřmi sloupci na pět prvků.

   Tahle sekce neřeší jednotlivosti — nastavuje rytmus celé stránky:
   jedna svislá stupnice, jedna šířka obsahu, jedna typografická stupnice.
   Proto ta !important; přebíjí se jimi 17b, ne návrh.

   Skladba zůstává, jak ji Adam schválil (hero vlevo text / vpravo render,
   pás A–Z, poptávka, přednosti). Mění se jen prostor mezi tím.
   --------------------------------------------------------------- */

/* Šířka obsahu. 1560 px roztahovalo řádky do nečitelné délky a stránka
   pak působila plochá — 1240 dá textu rozumnou míru a okrajům vzduch. */
.hero-v2 .shell,
.az-band .shell,
.cta-band .shell,
.trust-band .shell {
  max-width: 1240px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1.5rem, 4vw, 3rem) !important;
}

@media (min-width: 1700px) {
  .hero-v2 .shell,
  .az-band .shell,
  .cta-band .shell,
  .trust-band .shell { max-width: 1360px !important; padding-inline: 3rem !important; }
}

/* --- Svislý rytmus -------------------------------------------------------
   Jedna stupnice pro všechny pásy. Dřív měl každý svou. */

@media (min-width: 901px) {
  .hero-v2    { padding-block: clamp(3.5rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem) !important; }
  .az-band    { padding-block: clamp(4.5rem, 8vw, 7.5rem) !important; }
  /* cta a trust k sobě patří (produkt → důvěra → patička), tak je stáhneme
     blíž — menší spodek cta-bandu a menší horek trust-bandu, ať spodek úvodu
     nepůsobí rozdrobeně. */
  .cta-band   { padding-block: clamp(3rem, 5vw, 4.5rem) clamp(1.8rem, 3vw, 2.6rem) !important; }
  .trust-band { padding-block: clamp(1.6rem, 2.5vw, 2.4rem) clamp(2.6rem, 4vw, 3.6rem) !important; }
}

/* --- Hero ----------------------------------------------------------------
   Titulek nesl clamp(2.3rem, 3.9vw, 3.4rem) a na 1440 px vycházel malý
   vůči šířce. Zároveň se rozestupy uvnitř sloupce zvětšily, ať text
   nesedí na tlačítkách a přednosti na textu. */

@media (min-width: 901px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr) !important;
    gap: clamp(3rem, 5.5vw, 5.5rem) !important;
    align-items: center !important;
  }

  .hero-v2 .hero-title {
    font-size: clamp(2.9rem, 1.7rem + 2.9vw, 4.15rem) !important;
    line-height: 1.1 !important;
    max-width: 14ch !important;
  }

  .hero-v2 .hero-lead {
    margin-top: 1.9rem !important;
    font-size: clamp(1.08rem, 1rem + 0.35vw, 1.24rem) !important;
    line-height: 1.62 !important;
    max-width: 34rem !important;
  }

  .hero-v2 .hero-actions { margin-top: 2.6rem !important; gap: 0.9rem !important; }
  .hero-v2 .btn { min-height: 54px; padding-inline: 1.8rem; }

  /* Přednosti se oddělí vlasovou linkou — jsou to tři fakty, ne pokračování
     odstavce, a bez oddělení splývaly s tlačítky. */
  .hero-perks {
    margin-top: 3rem !important;
    padding-top: 2.2rem !important;
    border-top: 1px solid var(--line);
    gap: 1.4rem 2.8rem !important;
  }
  .perk-ico { width: 50px; height: 50px; }
  .perk-text b { font-size: 1rem; }
}

/* --- Pás „od A do Z“ -----------------------------------------------------
   Pět kroků v řadě potřebuje mezi sloupci vzduch, jinak se čtyřřádkové
   popisky slijí do jednoho bloku textu. */

@media (min-width: 901px) {
  .az-title { margin-bottom: clamp(3rem, 5vw, 4.5rem) !important; }
  .az-steps { gap: clamp(1.75rem, 3vw, 3rem) !important; }
  .az-step-body { max-width: 21ch; margin-inline: auto; line-height: 1.55; }
}

/* --- Poptávka ------------------------------------------------------------
   Karta s čerpadlem a formulář se dotýkaly. */

@media (min-width: 901px) {
  .cta-grid { gap: clamp(2rem, 3.5vw, 3.5rem) !important; align-items: stretch !important; }
  .cta-info { padding: clamp(2.25rem, 3.5vw, 3.25rem) !important; }
  .cta-form { padding: clamp(2rem, 3vw, 2.75rem) !important; }
  .cta-checks { margin-top: 1.75rem !important; }
  .cta-checks li { padding-block: 0.5rem !important; }
}

/* --- Přednosti v patě stránky ------------------------------------------- */

@media (min-width: 901px) {
  .trust-grid { gap: clamp(2rem, 4vw, 4rem) !important; }
  .trust-item { gap: 1rem !important; }
}

/* --- Patička -------------------------------------------------------------
   Mřížka měla čtyři sloupce, ale prvků je pět (značka, Kontakt, Menu,
   Informace, Firma) — Firma proto padala na druhý řádek a vedle ní zůstala
   díra přes tři sloupce. */

@media (min-width: 1101px) {
  .foot-grid {
    grid-template-columns: 1.6fr 1.05fr 0.85fr 0.9fr 0.85fr !important;
    gap: clamp(1.75rem, 3vw, 3rem) !important;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .foot-brand { grid-column: 1 / -1; }
}


/* --- 19b. Doladění po první kontrole -------------------------------------
   Rozestupy sedí, ale pás „od A do Z“ vypadal prázdně a text kroků byl
   .79rem — 12,6 px. Pod nadpisem to nevypadalo jako obsah, ale jako šum,
   a celý pás se pak ztrácel ve vlastním odsazení.

   Hero snímek měl poměr 16/10 a vedle vyššího textového sloupce působil
   malý; 4/5 ho srovná na výšku se sloupcem vlevo. */

@media (min-width: 901px) {

  /* Kroky: čitelná velikost a rozumná míra řádku. */
  .az-step-title {
    margin-top: 1.35rem !important;
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
  }
  .az-step-body {
    max-width: 23ch !important;
    margin-inline: auto !important;
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  /* Pás byl kvůli tomu předimenzovaný. Když kroky dostaly váhu, odsazení
     se může vrátit dolů — jinak mezi hero a poptávkou zeje díra. */
  .az-band { padding-block: clamp(3.75rem, 6vw, 5.5rem) !important; }
  .az-title { margin-bottom: clamp(2.5rem, 4vw, 3.5rem) !important; }

  /* Snímek zůstává na 16/10. Zkoušel jsem 4/5, ať je sloupec vyšší, jenže
     ořez najel na ventilátor a z fotky zmizel dům — a právě dům je to, co
     na ní má být vidět. Vyšší poměr by chtěl jiný snímek, ne jiný ořez. */
  .hero-v2 { padding-block: clamp(3.25rem, 5vw, 4.75rem) clamp(3.5rem, 6vw, 5.5rem) !important; }

  /* Přednosti pod formulářem: vlastní váha, ne poznámka pod čarou. */
  .trust-band { padding-block: clamp(3.5rem, 6vw, 5rem) !important; }
  .trust-text b { font-size: 1.05rem !important; }
  .trust-text small { font-size: 0.92rem !important; }
}

/* Číslo kroku na úzkém displeji leželo na nadpisu. Odznak patří na spodní
   hranu ikony, ne pod ni — a nadpis potřebuje o kus víc místa. */
@media (max-width: 900px) {
  .az-num { top: 54px !important; }
  .az-step-title { margin-top: 1.7rem !important; }
}


/* --- 19c. Stejná šířka obsahu na celém webu ------------------------------
   Úvodní stránka dostala v 19. sekci obsah do 1240 px, podstránky ale
   zůstávaly na 1560 px ze sekce 17b. Při přechodu z úvodu na Tepelná
   čerpadla obsah viditelně poskočil do stran. Jedna šířka pro všechno. */

.page-hero .shell,
.band .shell {
  max-width: 1240px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1.5rem, 4vw, 3rem) !important;
}

@media (min-width: 1700px) {
  .page-hero .shell,
  .band .shell { max-width: 1360px !important; padding-inline: 3rem !important; }
}

/* Podstránky měly stejně těsné pásy jako úvod. */
@media (min-width: 901px) {
  .band { padding-block: clamp(3.75rem, 6vw, 5.5rem) !important; }
  .page-hero { padding-block: clamp(3rem, 5vw, 4.5rem) clamp(2.5rem, 4vw, 3.5rem) !important; }
}


/* --- 19d. Poměr sloupců v heru -------------------------------------------
   Historie téhle jedné hodnoty, ať ji nikdo nehoní znovu:

     1 : 1,04  — původní návrh, snímek ~520 px. Připomínka: „malý“.
     0,95 : 1,25 + přetečení k okraji okna — ~800 px. Připomínka: „extrémně
                  velký“. Přetečení navíc přestalo fungovat, jakmile se
                  obsah v sekci 20 rozšířil na 1440 px (šířka okna a šířka
                  obsahu se srovnaly, takže nebylo kam přetékat).
     1 : 1,08  — tady. Snímek ~660 px, tedy zhruba půlka obsahu.

   Přetečení je pryč schválně. Se šířkou obsahu 1440 px nemá co dělat
   a jen dělalo z jedné hodnoty dvě, které se musely držet v souladu. */

@media (min-width: 1101px) {
  .hero-v2 .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) !important;
    gap: clamp(2.5rem, 4vw, 4rem) !important;
  }

  .hero-visual {
    margin-right: 0 !important;
    width: 100% !important;
  }

  /* Textový sloupec je zase širší, titulek se tedy vejde větší a zlomy
     „Tepelná čerpadla / pro váš komfort / a úsporu“ pořád drží. */
  .hero-v2 .hero-title {
    font-size: clamp(2.6rem, 1.4rem + 2.5vw, 3.75rem) !important;
    max-width: none !important;
  }
  .hero-v2 .hero-lead { max-width: 33rem !important; }
}

/* ---------------------------------------------------------------
   20. Šířka obsahu a velikost písma
   ---------------------------------------------------------------

   Tři věci z připomínky: „side container is too big, the content not wide
   enough“, „feels cramped“ a „many things are not readable due to small
   font size“.

   1. Obsah jsem v sekci 19 stáhl na 1240 px. Bylo to moc — okraje byly
      širší než potřeba a obsah zbytečně úzký. 1440 px.

   2. Písmo bylo malé už v základu: --fs-body 16 px, --fs-small 14 px,
      --fs-eyebrow 12 px, a v sekci 17b k tomu desítky natvrdo zapsaných
      hodnot mezi .72 a .88 rem. Zvedá se kořenová velikost (všechno v rem
      povyroste najednou, včetně odsazení — proto zároveň ubude těsnosti)
      a k tomu se opraví tokeny i nejhorší jednotlivosti.
   --------------------------------------------------------------- */

/* --- 1. Šířka obsahu ----------------------------------------------------- */

.masthead .shell,
.hero-v2 .shell,
.az-band .shell,
.cta-band .shell,
.trust-band .shell,
.page-hero .shell,
.band .shell,
.foot-v2 .shell {
  max-width: 1440px !important;
  padding-inline: clamp(1.5rem, 3vw, 2.75rem) !important;
}

@media (min-width: 1700px) {
  .masthead .shell,
  .hero-v2 .shell,
  .az-band .shell,
  .cta-band .shell,
  .trust-band .shell,
  .page-hero .shell,
  .band .shell,
  .foot-v2 .shell { max-width: 1520px !important; }
}

/* --- 2. Kořenová velikost ------------------------------------------------ */

@media (min-width: 901px)  { html { font-size: 17px; } }
@media (min-width: 1400px) { html { font-size: 18px; } }

/* --- 3. Tokeny ----------------------------------------------------------- */

:root {
  --fs-lead: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.95rem;
  --fs-eyebrow: 0.82rem;
}

body { font-size: var(--fs-body); line-height: 1.65; }

/* --- 4. Natvrdo zapsané drobnosti ze sekce 17b --------------------------- */

.eyebrow { font-size: var(--fs-eyebrow) !important; letter-spacing: 0.1em !important; }

.band-intro,
.page-lede,
.about-body p { font-size: var(--fs-lead) !important; line-height: 1.62 !important; }

.spec-key,
.spec-val,
.pump-type { font-size: var(--fs-small) !important; }

.perk-text b,
.trust-text b { font-size: 1.05rem !important; }
.perk-text small,
.trust-text small { font-size: 0.95rem !important; }

.cta-checks li { font-size: 1rem !important; line-height: 1.5 !important; }
.cta-form-sub { font-size: 1rem !important; }
.f-input { font-size: 1rem !important; }
.form-consent { font-size: 0.9rem !important; line-height: 1.55 !important; }

.foot-h { font-size: 0.85rem !important; letter-spacing: 0.12em !important; }
.foot-contact a,
.foot-contact span,
.foot-links a,
.foot-links li,
.foot-tagline { font-size: 0.98rem !important; }
.foot-bottom { font-size: 0.92rem !important; }

.contact-body small,
.company-note,
.unit-note p,
.promise-desc { font-size: 0.95rem !important; }

.az-step-title { font-size: 1.08rem !important; }
.az-step-body { font-size: 0.98rem !important; }


/* ---------------------------------------------------------------
   21. Sjednocení pozadí hlavičky a poptávky
   ---------------------------------------------------------------

   Hlavička měla vlastní odstín rgba(253, 255, 237) — nažloutlý papír, který
   nenavazoval na nic dalšího. Teď bere stejný přechod jako karta formuláře,
   takže se horní a spodní část stránky drží stejného tónu.

   Karta „Tepelná čerpadla pro každý domov“ byla proti tomu nazelenalá
   (#f4f8ed → #edf5e4). Odstín zůstává, ale ubere se sytost, ať nekřičí
   vedle formuláře.
   --------------------------------------------------------------- */

/* Hlavička má stejné pozadí jako stránka — opticky splývá, ale je krycí,
   takže při odrolování obsah neprosvítá skrz navigaci.

   Bere se stejný token jako pro body (--paper), ne opsaná hodnota. Kdyby
   se podklad stránky někdy měnil, hlavička se změní s ním a nerozejdou se.
   Průhledná byla chvíli taky, ale přes fotku v heru nešla přečíst. */
.masthead-v2 {
  background: var(--paper) !important;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

/* Sytost dolů: zelená zůstává, jen se stáhne k neutrální. */
.cta-left-card {
  background: linear-gradient(135deg, #f7f9f4 0%, #f5f8f2 56%, #f2f6ef 100%) !important;
  /* Organický „blob“ jako v návrhu — elipsovité zaoblení, každý roh jiný
     (horizontální / vertikální poloměr), aby to nebyl jen zaoblený obdélník.
     Levé rohy malé (text v bezpečí), pravá strana velký oblouk k produktu. */
  border-radius: 36px 130px 90px 56px / 46px 96px 120px 70px !important;
}

/* Kompaktnější telefonní pilulka (PC). Byla 62 px vysoká (padding 16 px +
   line-height 27 px) a držela navbar zbytečně vysoký, i když se kontejner
   zmenšil. Menší padding + řádkování → pilulka ~40 px, navbar může níž. */
.masthead-v2 .phone-pill {
  padding: 0.52rem 1.15rem !important;
  font-size: 0.9rem !important;
}
.masthead-v2 .phone-pill .num { line-height: 1.2 !important; font-size: 0.92rem !important; }
.masthead-v2 .brand-mark { width: 40px !important; height: auto !important; }


/* ---------------------------------------------------------------
   22. Hlavička stejně velká na úvodu i na podstránkách
   ---------------------------------------------------------------

   Na řádcích 2177–2397 je blok body.home { … } psaný vnořeně (&). Vnoření
   zvedá specifičnost na body.home .masthead-v2 .nav-list a — tedy (0,3,1) —
   takže přebíjí sdílená pravidla ze sekcí 18 a 20 bez ohledu na pořadí.
   Výsledek: navigace měla na úvodní stránce 15,84 px a na podstránkách
   18 px, i když jde o stejnou šablonu hlavičky.

   Tyhle selektory mají stejnou specifičnost a stojí později, takže srovnají
   úvod na zbytek webu. Zbytek bloku body.home se nechává být.
   --------------------------------------------------------------- */

body.home .masthead-v2 .nav-list a {
  font-size: 1rem;
  font-weight: 600;
}

body.home .masthead-v2 .nav-list {
  gap: clamp(0.9rem, 1.7vw, 1.9rem);
}

body.home .masthead-v2 .brand-mark {
  width: 42px;
  height: auto;
}

body.home .masthead-v2 .brand-eco,
body.home .masthead-v2 .brand-therma {
  font-size: 1.45rem;
}


/* ---------------------------------------------------------------
   23. Telefon a Odeslat poptávku bez přechodů
   ---------------------------------------------------------------

   Obě tlačítka měla přechod, a na úvodní stránce dokonce tříbarevný
   (oranžová → žlutá → zelená). Vedle plných tlačítek „Zjistit více“ nebo
   „Více o tepelných čerpadlech“ to působilo, že jde o jinou třídu prvku,
   i když dělají totéž — hlavní akci.

   Jedna plná barva, stejná jako .btn-solid, tedy --leaf-deep. Stíny
   v barvě přechodu jdou pryč s ním; oranžové záře pod zeleným tlačítkem
   nedávala smysl.

   Deklarací bylo šest napříč základní vrstvou i blokem body.home, proto
   se to řeší tady na konci a ne šesti zásahy. Selektory s body.home mají
   stejnou specifičnost jako originál (0,3,1), takže projdou.
   --------------------------------------------------------------- */

.phone-pill,
body.home .masthead-v2 .phone-pill {
  /* Stejný „přenos tepla“ gradient jako footer (leaf → ember). */
  background: linear-gradient(100deg, var(--leaf-deep) 0%, #6ea23a 30%, #d98e2b 72%, var(--ember) 100%);
  box-shadow: 0 10px 24px rgba(120,150,40,.26);
  color: #fff;
}

.phone-pill:hover,
body.home .masthead-v2 .phone-pill:hover {
  background: linear-gradient(100deg, #427f26 0%, #5e8f30 30%, #c47e22 72%, #e07d15 100%);
}

.f-submit,
body.home .f-submit,
.form-submit {
  /* Stejný „přenos tepla“ gradient jako footer / telefon / dotace. */
  background: linear-gradient(100deg, var(--leaf-deep) 0%, #6ea23a 30%, #d98e2b 72%, var(--ember) 100%);
  box-shadow: 0 10px 24px rgba(120,150,40,.26);
  color: #fff;
}

.f-submit:hover,
body.home .f-submit:hover,
.form-submit:hover {
  background: linear-gradient(100deg, #427f26 0%, #5e8f30 30%, #c47e22 72%, #e07d15 100%);
}


/* ---------------------------------------------------------------
   24. Drobné texty nahoru
   ---------------------------------------------------------------

   Naměřeno na úvodní stránce (kořen 18 px):
     „STÁTNÍ DOTACE“ 12,96 px · nadpisek sekce 14,76 px · nadpis sloupce
     v patičce 15,3 px · souhlas pod formulářem 16,2 px · popisky předností
     a přednosti dole 17,1 px · odrážky u čerpadel 18 px.

   Nejmenší z toho je popisek u dotace — údaj, kvůli kterému lidi volají.
   Celá spodní vrstva jde nahoru. Verzálkové štítky zůstávají menší než
   běžný text, ale ne pod 15 px.

   Selektory jsou dvakrát: bez prefixu pro celý web a s body.home, protože
   část hodnot sedí ve vnořeném bloku na řádcích 2177–2397, který má vyšší
   specifičnost. Patička a nadpisky se zvětšují všude, ne jen na úvodu —
   je to tentýž prvek na všech stránkách.
   --------------------------------------------------------------- */

/* Odrážky „Pět sestav od 8 do 18 kW…“ */
.cta-checks li,
body.home .cta-checks li { font-size: 1.1rem !important; line-height: 1.5 !important; }

/* Přednosti v heru i pod formulářem */
.perk-text b,
.trust-text b,
body.home .perk-text b,
body.home .trust-text b { font-size: 1.08rem !important; }

.perk-text small,
.trust-text small,
body.home .perk-text small,
body.home .trust-text small { font-size: 1rem !important; }

/* Kroky „od A do Z“ */
.az-step-body,
body.home .az-step-body { font-size: 1.05rem !important; }

/* Cedulka s dotací v heru */
.grant-txt small,
body.home .grant-txt small { font-size: 0.88rem !important; letter-spacing: 0.09em !important; }
.grant-txt em,
body.home .grant-txt em { font-size: 0.95rem !important; }

/* Formulář */
.cta-form-sub,
body.home .cta-form-sub { font-size: 1.05rem !important; }
.form-consent,
body.home .form-consent { font-size: 0.95rem !important; line-height: 1.55 !important; }

/* Verzálkové nadpisky — menší než text, ale ne pod 15 px */
.eyebrow,
body.home .eyebrow { font-size: 0.88rem !important; }

/* Patička — stejná na všech stránkách */
.foot-h { font-size: 0.9rem !important; }
.foot-contact a,
.foot-contact span,
.foot-links a,
.foot-links li,
.foot-tagline { font-size: 1rem !important; }
.foot-bottom { font-size: 0.95rem !important; }

/* Tlačítka uvnitř .prose: `.prose a` nastavuje zelený text odkazů, což
   přebíjelo bílý text .btn-solid (zelený text na zelené = neviditelný).
   Vyšší specifičnost obnoví správné barvy tlačítek. */
.prose a.btn-solid { color: #fff; }
.prose a.btn-ghost,
.prose a.btn-ghost-leaf { color: var(--ink); }
.prose a.btn-ghost-leaf .num { color: var(--leaf-deep); }

/* Jemný stín pod vyříznutými čerpadly (průhledné PNG/WebP), ať nelevitují.
   Cílí jen na <img> — SVG ilustrace fotovoltaiky v .unit-figure není dotčená. */
.cta-blob img,
.unit-figure img {
  filter: drop-shadow(0 20px 20px rgba(20, 35, 20, 0.20));
}

/* ==========================================================================
   PATIČKA — VÝŠKA. Jediné místo, kde se ladí.

   PROČ TENHLE BLOK EXISTUJE: rozměry patičky byly rozsypané v šesti blocích
   (ř. ~1955, 2317, 2434, 2631, 3114, 3187) a ty pozdější měly `!important`,
   takže přepisovaly ty dřívější. Kdo zmenšoval nahoře, neviděl na webu nic —
   vyhrával vždycky poslední blok v souboru. Tenhle blok je teď poslední,
   takže vyhrává on.

   CHCEŠ PATIČKU NIŽŠÍ? Uprav čísla v `:root` níž, nic jiného.
   Velikosti písma tu schválně nejsou — drží je legibility blok výš
   (min. ~15 px) a zmenšovat je by šlo proti čitelnosti.
   ========================================================================== */
:root {
  --foot-pad-top:     1.25rem;  /* bylo 1.9rem  — mezera nad obsahem patičky */
  --foot-grid-bottom: 0.5rem;   /* bylo 1.4rem  — pod sloupci, nad dělicí čárou */
  --foot-h-gap:       0.5rem;   /* bylo 1.1rem  — pod nadpisky sloupců */
  --foot-list-gap:    0.25rem;  /* bylo 0.42rem — rozteč položek v seznamech */
  --foot-line:        1.35;     /* bylo 1.65 (dědilo se z body) — proklad řádků */
  --foot-social-gap:  0.9rem;   /* bylo 1.5rem  — nad tlačítky sítí */
  --foot-social-pad:  0.4rem 1rem; /* bylo .55rem 1.15rem — výška pilulek */
  --foot-bottom-gap:  0.5rem;   /* bylo clamp(1rem,2vw,1.6rem) = 28,8 px — nad dělicí čárou */
  --foot-bottom-pad:  0.6rem;   /* bylo 1.3rem  — spodní lišta s copyrightem */
}

.foot-v2   { padding-block: var(--foot-pad-top) 0 !important; }
.foot-grid { padding-bottom: var(--foot-grid-bottom) !important; }
.foot-h    { margin: 0.2rem 0 var(--foot-h-gap) !important; }

.foot-contact,
.foot-links { gap: var(--foot-list-gap) !important; margin-top: 0.2rem !important; }

/* Proklad: patička dědila 1.65 z body, což u 18px písma dělalo 29,7px řádky.
   Řádkuje jen text patičky, velikost písma zůstává (viz legibility blok výš). */
.foot-contact,
.foot-contact li,
.foot-contact a,
.foot-contact span,
.foot-links,
.foot-links li,
.foot-links a,
.foot-tagline,
.foot-bottom { line-height: var(--foot-line) !important; }

.foot-social   { margin-top: var(--foot-social-gap) !important; }
.foot-social a { padding: var(--foot-social-pad) !important; }

/* margin-top mimo padding — ř. 3832 dával 28,8 px prázdna pod texty */
.foot-bottom { margin-top: var(--foot-bottom-gap) !important;
               padding-block: var(--foot-bottom-pad) !important; }

/* Svislá rozteč skládaných sloupců. Na desktopu je mřížka jednořádková,
   takže row-gap nic nedělá — projeví se až při skládání pod sebe, kde
   `gap: clamp(2rem,3.5vw,4rem)` z ř. 3187 dělalo 4× 32 px navíc. */
.foot-grid { row-gap: var(--foot-row-gap, 1.2rem) !important; }

@media (max-width: 640px) {
  :root {
    --foot-pad-top:     1rem;
    --foot-grid-bottom: 0.6rem;
    --foot-row-gap:     1.1rem;
    --foot-social-gap:  0.8rem;
    --foot-bottom-pad:  0.7rem;
  }
}
