:root {
  --navy: #0F2D4A;
  --navy-deep: #0A2238;
  --teal: #5B8F86;
  --mist: #CBD5DC;
  --ivory: #F7F8F6;
  --cream: #F1F0EA;
  --charcoal: #2B3A42;
  --line: rgba(15, 45, 74, 0.15);
  --line-dark: rgba(255, 255, 255, 0.16);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(15, 45, 74, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-y: auto; min-height: 100%; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: visible;
  min-height: 100%;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  color: var(--navy);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 246, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 45, 74, 0.08);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-header {
  width: 220px;
  max-width: 220px;
  max-height: 66px;
}

.brand-footer {
  display: inline-flex;
  max-width: 100%;
}

.brand-logo-footer {
  width: 300px;
  max-width: 100%;
  max-height: 185px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
}
.main-nav a { transition: color .2s ease, background .2s ease; }
.main-nav a:hover { color: var(--teal); }
.main-nav .nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
}
.main-nav .nav-cta:hover { color: white; background: var(--navy-deep); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 23px; height: 2px; background: var(--navy); transition: .2s ease; }

.section-dark { background: var(--navy); color: white; }
.section-light { background: var(--ivory); }
.section-cream { background: var(--cream); }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw -35vw auto;
  width: 60vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.42fr .58fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0 96px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: #B7CEC9;
}
.eyebrow.dark { color: var(--teal); }
.hero h1, h2, blockquote {
  font-family: var(--serif);
  letter-spacing: -.025em;
}
.hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.8rem, 3.15vw, 3.55rem);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -.032em;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1.09rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: white; color: var(--navy); }
.button-primary:hover { background: #E9F0EE; }
.button-ghost { border-color: rgba(255,255,255,.3); color: white; }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.06); }
.button-dark { background: var(--navy); color: white; }
.button-dark:hover { background: var(--navy-deep); }
.hero-note { margin: 28px 0 0; color: rgba(255,255,255,.5); font-size: .82rem; }

.hero-art { min-height: 520px; display: grid; place-items: center; }
.hero-photo {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 90px rgba(0,0,0,.22);
  background: #0A2238;
}
.hero-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,45,74,.02) 35%, rgba(15,45,74,.78) 100%);
  pointer-events: none;
}
.hero-photo-mark {
  position: absolute;
  left: 30px;
  bottom: 64px;
  width: 116px;
  opacity: .92;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.16));
}
.hero-photo figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 25px;
  color: rgba(255,255,255,.86);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.intro { padding: 120px 0 110px; }
.split-heading, .section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  font-weight: 600;
}
.intro-text p, .section-heading > p, .approach-copy > p {
  margin: 0 0 18px;
  color: #55636A;
  font-size: 1.05rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}
.audience-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.4);
}
.card-no { color: var(--teal); font-weight: 800; font-size: .75rem; letter-spacing: .16em; }
.audience-card h3, .service-card h3, .step h3, .person-card h3 {
  color: var(--navy);
  margin: 34px 0 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}
.audience-card p, .service-card p, .step p, .person-card p { margin: 0; color: #607078; }

.services { padding: 120px 0; }
.section-heading { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(15,45,74,.1);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(15,45,74,.11); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(91,143,134,.11);
}
.service-icon svg { width: 27px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-top: 44px; }

.approach { padding: 120px 0; }
.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.approach-copy { position: sticky; top: 130px; }
.approach-copy > p { margin-top: 28px; }
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.step > span { color: var(--teal); font-weight: 800; font-size: .75rem; letter-spacing: .16em; padding-top: 5px; }
.step h3 { margin: 0 0 8px; font-size: 1.3rem; }

.statement { padding: 110px 0; text-align: center; }
.statement-inner { max-width: 950px; }
.statement blockquote {
  margin: 0 auto 28px;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
}
.statement-inner > p:last-child { margin: 0; color: rgba(255,255,255,.58); }

.team { padding: 120px 0; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.person-card {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.person-monogram {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: .08em;
}
.person-role { color: var(--teal) !important; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.person-card h3 { margin: 9px 0 16px; font-size: 1.5rem; }
.person-contact { display: flex; flex-direction: column; gap: 5px; margin-top: 22px; font-size: .9rem; font-weight: 700; color: var(--navy); }
.person-contact a:hover { color: var(--teal); }

.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contact-copy > p { color: #607078; max-width: 560px; }
.contact-mail {
  display: inline-block;
  margin-top: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  border-bottom: 1px solid var(--navy);
}
.contact-phones { display: grid; gap: 6px; margin-top: 24px; color: var(--navy); font-weight: 650; font-size: .92rem; }
.contact-phones a:hover { color: var(--teal); }
.contact-form {
  padding: 32px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(15,45,74,.09);
  box-shadow: var(--shadow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; }
.contact-form label span { color: var(--navy); font-size: .82rem; font-weight: 750; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #C8D0D3;
  border-radius: 12px;
  background: #FCFCFB;
  color: var(--charcoal);
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(91,143,134,.12); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-note { margin: 14px 0 0; color: #7A858A; font-size: .76rem; }

.site-footer {
  padding: 58px 0 34px;
  background: linear-gradient(180deg, #F7F8F6 0%, #EFF3F2 100%);
  color: #5F6D74;
  border-top: 1px solid rgba(15,45,74,.08);
}
.footer-top, .footer-bottom { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer-top { padding-bottom: 30px; border-bottom: 1px solid rgba(15,45,74,.1); }
.footer-top p { margin: 0; font-family: var(--serif); font-size: 1.35rem; color: var(--navy); max-width: 480px; }
.footer-bottom { padding-top: 24px; font-size: .84rem; }
.footer-bottom p { margin: 0; color: #5F6D74; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--navy); }
.footer-links a:hover { color: var(--teal); }
.footer-legal { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(15,45,74,.08); font-size: .72rem; color: #7C878D; }
.footer-legal p { max-width: 800px; margin: 0; }

/* Privacy page */
.subpage-hero { padding: 95px 0 65px; background: var(--navy); color: white; }
.subpage-hero h1 { font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5rem); margin: 0; line-height: 1; }
.legal-page { padding: 80px 0 110px; }
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 48px; font-size: 1.75rem; line-height: 1.2; }
.legal-content p, .legal-content li { color: #56666E; }
.legal-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card { transition: none; }
}

@media (max-width: 1280px) {
  .hero-grid, .split-heading, .section-heading, .approach-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 74px 0 82px; }
  .hero h1 { font-size: clamp(2.65rem, 4.9vw, 3.55rem); }
  .hero h1 span { white-space: nowrap; }
  .hero-art { min-height: 420px; }
  .hero-photo { width: min(100%, 620px); aspect-ratio: 16 / 10; }
  .hero-photo > img:first-child { object-position: center 52%; }
  .audience-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-copy { position: static; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav-wrap { min-height: 82px; }
  .brand-logo-header { width: 176px; max-width: 176px; max-height: 54px; }
  .brand-logo-footer { width: min(100%, 260px); max-height: 165px; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 16px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(247,248,246,.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(15,45,74,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-cta { text-align: center; margin-top: 5px; }
  .hero-grid { gap: 52px; }
  .hero h1 { font-size: clamp(2.25rem, 6.7vw, 3rem); line-height: 1.04; letter-spacing: -.025em; }
  .hero h1 span { white-space: nowrap; }
  .hero-lead { font-size: 1rem; }
  .hero-art { min-height: 340px; }
  .hero-photo { aspect-ratio: 4 / 3; border-radius: 22px; }
  .hero-photo-mark { width: 82px; left: 22px; bottom: 54px; }
  .hero-photo figcaption { left: 22px; right: 22px; bottom: 20px; font-size: .63rem; }
  .intro, .services, .approach, .team, .contact { padding: 82px 0; }
  .audience-grid, .services-grid { grid-template-columns: 1fr; }
  .service-card, .audience-card { min-height: auto; }
  .statement { padding: 82px 0; }
  .person-card { grid-template-columns: 1fr; }
  .person-monogram { width: 76px; height: 76px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 7px; }
}

@media (max-width: 440px) {
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-photo { border-radius: 18px; }
  .contact-form { padding: 22px; }
}

@media (max-width: 560px) {
  .brand-logo-header { width: 150px; max-width: 150px; max-height: 48px; }
  .brand-logo-footer { width: min(100%, 230px); max-height: 145px; }
  .footer-top p { font-size: 1.12rem; }
}

/* Safety constraints for logo/header rendering */
.site-header img { flex: 0 0 auto; }
.nav-wrap > * { min-width: 0; }
@media (max-width: 760px) {
  .nav-wrap { min-height: 72px; }
  .brand { max-width: calc(100% - 60px); }
  .main-nav { max-height: calc(100vh - 72px); overflow-y: auto; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(2.35rem, 11.5vw, 3rem); }
  .hero h1 span { white-space: normal; }
}


/* === EPITROP COMPACT SPACING PASS 2026-09-25 ===
   Záměr: zhruba o polovinu menší vertikální whitespace napříč webem,
   bez změn typografie, barev, loga a obsahové struktury. */
.hero {
  min-height: auto;
}

.hero-grid {
  gap: 36px;
  padding: 52px 0 58px;
}

.eyebrow {
  margin-bottom: 14px;
}

.hero-lead {
  margin-top: 22px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-note {
  margin-top: 18px;
}

.hero-art {
  min-height: 430px;
}

.intro {
  padding: 68px 0 64px;
}

.split-heading,
.section-heading {
  gap: 50px;
}

.audience-grid {
  margin-top: 38px;
}

.services {
  padding: 68px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.approach {
  padding: 68px 0;
}

.approach-grid {
  gap: 56px;
}

.approach-copy > p {
  margin-top: 18px;
}

.step {
  padding: 24px 0;
}

.statement {
  padding: 64px 0;
}

.team {
  padding: 68px 0;
}

.contact {
  padding: 68px 0;
}

.contact-grid {
  gap: 56px;
}

.site-footer {
  padding: 36px 0 24px;
}

.footer-top {
  padding-bottom: 20px;
}

.footer-bottom {
  padding-top: 16px;
}

.footer-legal {
  margin-top: 16px;
  padding-top: 14px;
}

.subpage-hero {
  padding: 55px 0 38px;
}

.legal-page {
  padding: 48px 0 64px;
}

.legal-content h2 {
  margin-top: 30px;
}

@media (max-width: 1280px) {
  .hero-grid,
  .split-heading,
  .section-heading,
  .approach-grid,
  .contact-grid {
    gap: 32px;
  }

  .hero-grid {
    padding: 44px 0 48px;
  }

  .hero-art {
    min-height: 360px;
  }

  .intro,
  .services,
  .approach,
  .team,
  .contact {
    padding: 58px 0;
  }

  .statement {
    padding: 58px 0;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    padding: 38px 0 44px;
    gap: 30px;
  }

  .hero-art {
    min-height: 300px;
  }

  .intro,
  .services,
  .approach,
  .team,
  .contact {
    padding: 52px 0;
  }

  .statement {
    padding: 52px 0;
  }

  .audience-grid {
    margin-top: 28px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .site-footer {
    padding: 30px 0 22px;
  }
}


/* === EPITROP CONTROLLED SECTION HEADLINES 2026-09-25 === */
.section-title-lines span,
.statement-lines span {
  display: block;
}

.section-title-lines {
  max-width: 17ch;
  text-wrap: balance;
}

.statement-lines {
  max-width: 19ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .section-title-lines,
  .statement-lines {
    max-width: none;
  }

  .section-title-lines span,
  .statement-lines span {
    display: inline;
  }

  .section-title-lines span + span::before,
  .statement-lines span + span::before {
    content: " ";
  }
}


/* === EPITROP SECTION HEADING SIZE FIX 2026-09-25 ===
   Sekční nadpisy jsou záměrně menší než hlavní hero headline. */
h2,
.section-title-lines {
  font-size: clamp(2.25rem, 2.85vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.section-title-lines {
  max-width: 19ch;
}

@media (max-width: 980px) {
  h2,
  .section-title-lines {
    font-size: clamp(2.15rem, 5.6vw, 2.85rem);
  }
}

@media (max-width: 760px) {
  h2,
  .section-title-lines {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
    line-height: 1.06;
  }
}


/* =========================================================
   EPITROP — FINAL TYPOGRAPHIC SCALE
   Hero headline je absolutní maximální velikost textu webu.
   Tento blok je záměrně poslední v CSS a přepisuje starší
   experimentální velikosti.
   ========================================================= */

/* 1. HERO — největší text na celém webu */
.hero h1 {
  font-size: clamp(2.8rem, 3.15vw, 3.55rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.032em !important;
  font-weight: 600;
}

/* 2. Silné brandové statementy — vždy menší než hero */
.statement blockquote,
.statement-lines {
  font-size: clamp(2.25rem, 2.65vw, 2.95rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  font-weight: 500;
}

/* 3. Hlavní nadpisy sekcí */
h2,
.section-title-lines,
.approach-copy h2,
.section-heading h2,
.split-heading h2 {
  font-size: clamp(2rem, 2.25vw, 2.45rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.022em !important;
  font-weight: 600;
}

/* Řízeně zalomené nadpisy nesmí vytvořit příliš úzký sloupec */
.section-title-lines {
  max-width: 21ch !important;
}

/* 4. Nadpis podstránek */
.subpage-hero h1 {
  font-size: clamp(2.3rem, 2.8vw, 3rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
}

/* 5. Kontaktní e-mail je výrazný, ale není nadpis */
.contact-mail {
  font-size: clamp(1.65rem, 2vw, 2.15rem) !important;
  line-height: 1.1;
}

/* 6. Karty a mezititulky */
.audience-card h3,
.service-card h3,
.step h3,
.person-card h3 {
  font-size: clamp(1.1rem, 1.2vw, 1.32rem) !important;
  line-height: 1.25 !important;
}

.person-card h3 {
  font-size: clamp(1.28rem, 1.45vw, 1.5rem) !important;
}

/* 7. Právní stránka */
.legal-content h2 {
  font-size: clamp(1.5rem, 1.7vw, 1.75rem) !important;
  line-height: 1.2 !important;
}

/* Tablet */
@media (max-width: 980px) {
  .hero h1 {
    font-size: clamp(2.55rem, 5.2vw, 3.25rem) !important;
  }

  h2,
  .section-title-lines,
  .approach-copy h2,
  .section-heading h2,
  .split-heading h2 {
    font-size: clamp(1.95rem, 4.2vw, 2.35rem) !important;
  }

  .statement blockquote,
  .statement-lines {
    font-size: clamp(2.1rem, 4.8vw, 2.7rem) !important;
  }
}

/* Mobil */
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.9rem) !important;
    line-height: 1.04 !important;
  }

  h2,
  .section-title-lines,
  .approach-copy h2,
  .section-heading h2,
  .split-heading h2 {
    font-size: clamp(1.85rem, 7.6vw, 2.25rem) !important;
    line-height: 1.08 !important;
  }

  .statement blockquote,
  .statement-lines {
    font-size: clamp(2rem, 8.2vw, 2.5rem) !important;
  }

  .subpage-hero h1 {
    font-size: clamp(2.1rem, 8.5vw, 2.7rem) !important;
  }
}


/* === EPITROP LOGO + HERO CARD UPDATE 2026-09-25 === */
.nav-wrap {
  min-height: 94px;
}

.brand-logo-header {
  width: 252px;
  max-width: 252px;
  max-height: 76px;
}

.hero-photo-mark {
  left: auto;
  right: 28px;
  bottom: 26px;
  width: 120px;
  opacity: .96;
}

.hero-photo figcaption {
  left: 28px;
  right: 170px;
  bottom: 28px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  color: rgba(255,255,255,.95);
  text-wrap: balance;
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo-header {
    width: 182px;
    max-width: 182px;
    max-height: 58px;
  }

  .hero-photo-mark {
    right: 20px;
    bottom: 18px;
    width: 84px;
  }

  .hero-photo figcaption {
    left: 20px;
    right: 110px;
    bottom: 18px;
    font-size: .78rem;
    line-height: 1.3;
  }
}

@media (max-width: 560px) {
  .brand-logo-header {
    width: 166px;
    max-width: 166px;
    max-height: 54px;
  }
}


/* === EPITROP CARD SPACING TIGHTENING 2026-09-25 === */
.audience-grid,
.services-grid {
  gap: 16px;
}

.audience-card {
  min-height: 230px;
  padding: 24px 24px 22px;
}

.service-card {
  min-height: 286px;
  padding: 24px 24px 22px;
}

.card-no {
  display: block;
  margin-bottom: 12px;
}

.audience-card h3,
.service-card h3 {
  margin: 0 0 10px;
}

.service-card h3 {
  margin-top: 22px;
}

.audience-card p,
.service-card p {
  line-height: 1.5;
}

@media (max-width: 760px) {
  .audience-card,
  .service-card {
    min-height: auto;
    padding: 22px 20px 20px;
  }

  .card-no {
    margin-bottom: 10px;
  }

  .audience-card h3,
  .service-card h3 {
    margin: 0 0 8px;
  }

  .service-card h3 {
    margin-top: 18px;
  }
}


/* === EPITROP AUDIENCE CARD COMPACTING V2 2026-09-25 === */
.audience-card {
  min-height: 0;
  padding: 16px 18px 16px;
  display: flex;
  flex-direction: column;
}

.card-no {
  margin-bottom: 8px;
}

.audience-card h3 {
  margin: 0 0 8px;
}

.audience-card p {
  line-height: 1.42;
}

@media (max-width: 760px) {
  .audience-card {
    padding: 16px 16px 14px;
  }

  .card-no {
    margin-bottom: 6px;
  }

  .audience-card h3 {
    margin: 0 0 6px;
  }
}


/* === EPITROP SERVICE CARD COMPACTING V3 2026-09-25 ===
   Cíleně zmenšuje prázdný prostor uvnitř 6 karet služeb. */
.service-card {
  min-height: 0;
  padding: 18px 20px 18px;
}

.service-icon {
  width: 46px;
  height: 46px;
}

.service-icon svg {
  width: 24px;
}

.service-card h3 {
  margin: 16px 0 8px;
}

.service-card p {
  line-height: 1.42;
}

@media (max-width: 760px) {
  .service-card {
    padding: 16px 18px 16px;
  }

  .service-card h3 {
    margin: 14px 0 7px;
  }
}


/* === EPITROP SERVICES INTRO ALIGNMENT V4 2026-09-25 === */
.services .section-heading > p {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .services .section-heading > p {
    margin-top: 8px;
  }
}

@media (max-width: 760px) {
  .services .section-heading > p {
    margin-top: 0;
  }
}


/* === EPITROP APPROACH COMPACT + REMOVE COLLEAGUE PHONE V5 2026-09-25 === */
.approach {
  padding: 60px 0;
}

.approach-grid {
  gap: 40px;
  align-items: start;
}

.approach-copy > p {
  margin-top: 14px;
  max-width: 34rem;
}

.steps {
  margin-top: 2px;
}

.step {
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 0;
}

.step > span {
  padding-top: 3px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
}

.step p {
  margin: 0;
}

.person-contact a {
  width: fit-content;
}

@media (max-width: 1280px) {
  .approach {
    padding: 54px 0;
  }

  .approach-grid {
    gap: 30px;
  }

  .step {
    padding: 20px 0;
  }
}

@media (max-width: 760px) {
  .approach {
    padding: 48px 0;
  }

  .approach-grid {
    gap: 24px;
  }

  .approach-copy > p {
    margin-top: 12px;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .step h3 {
    font-size: 1.08rem;
  }
}


/* === EPITROP SMALLER FOOTER LOGO V6 2026-09-25 === */
.brand-logo-footer {
  width: 220px;
  max-width: 100%;
  max-height: 136px;
}

@media (max-width: 760px) {
  .brand-logo-footer {
    width: min(100%, 200px);
    max-height: 122px;
  }
}

@media (max-width: 560px) {
  .brand-logo-footer {
    width: min(100%, 180px);
    max-height: 110px;
  }
}


/* === EPITROP APPROACH COMPACT V8 2026-09-25 ===
   Ještě kompaktnější sekce "Jak pracujeme". */
.approach {
  padding: 46px 0 42px;
}

.approach-grid {
  gap: 34px;
}

.approach-copy > p {
  margin-top: 12px;
}

.steps {
  margin-top: 0;
}

.step {
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 15px 0;
}

.step > span {
  padding-top: 2px;
}

.step h3 {
  margin: 0 0 4px;
}

.step p {
  line-height: 1.45;
}

@media (max-width: 1280px) {
  .approach {
    padding: 42px 0 38px;
  }

  .approach-grid {
    gap: 26px;
  }

  .step {
    padding: 14px 0;
  }
}

@media (max-width: 760px) {
  .approach {
    padding: 38px 0 34px;
  }

  .approach-grid {
    gap: 20px;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 13px 0;
  }
}


/* === EPITROP APPROACH COMPACT V9 2026-09-25 ===
   Jemné další utažení sekce "Jak pracujeme". */
.approach {
  padding: 38px 0 34px;
}

.approach-grid {
  gap: 28px;
}

.approach-copy > p {
  margin-top: 10px;
}

.step {
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 11px 0;
}

.step h3 {
  margin: 0 0 3px;
}

.step p {
  line-height: 1.42;
}

@media (max-width: 1280px) {
  .approach {
    padding: 36px 0 32px;
  }

  .approach-grid {
    gap: 22px;
  }

  .step {
    padding: 10px 0;
  }
}

@media (max-width: 760px) {
  .approach {
    padding: 32px 0 28px;
  }

  .approach-grid {
    gap: 18px;
  }

  .step {
    grid-template-columns: 38px 1fr;
    gap: 9px;
    padding: 10px 0;
  }
}


/* =========================================================
   EPITROP — MARKETING V1
   Produktizovaná nabídka podle marketingového plánu.
   Vizuální systém navazuje na stávající brand a karty.
   ========================================================= */

.offers {
  padding: 58px 0 62px;
}

.offers .section-heading {
  margin-bottom: 34px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.offer-card {
  padding: 22px 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(15,45,74,.045);
}

.offer-card .card-no {
  display: block;
  margin-bottom: 10px;
}

.offer-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  line-height: 1.22;
}

.offer-card p {
  margin: 0;
  color: #607078;
  line-height: 1.48;
}

.offers-cta {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

/* Posílení marketingové hierarchie bez změny hlavního designu */
.hero-note {
  max-width: 760px;
  color: rgba(255,255,255,.62);
}

@media (max-width: 980px) {
  .offers {
    padding: 52px 0 56px;
  }
}

@media (max-width: 760px) {
  .offers {
    padding: 46px 0 50px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-card {
    padding: 18px 18px 17px;
  }

  .offers-cta {
    margin-top: 18px;
  }
}


/* =========================================================
   EPITROP — PROČ EPITROP / MARKETING V2
   Vysvětlení názvu a role značky.
   ========================================================= */

.why-epitrop {
  padding: 58px 0;
  text-align: left;
}

.why-epitrop-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.why-epitrop-heading h2 {
  max-width: 11ch;
  color: white;
  font-size: clamp(2.05rem, 2.35vw, 2.55rem) !important;
  line-height: 1.06 !important;
}

.why-epitrop-copy {
  max-width: 720px;
}

.why-epitrop-copy > p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.76);
  font-size: 1.04rem;
  line-height: 1.58;
}

.why-epitrop-copy strong,
.why-epitrop-copy em {
  color: white;
}

.why-epitrop-claim {
  margin-top: 24px !important;
  padding-left: 18px;
  border-left: 2px solid var(--teal);
  color: white !important;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.8vw, 1.85rem) !important;
  line-height: 1.22 !important;
}

.why-epitrop-signoff {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  color: rgba(255,255,255,.5) !important;
  font-size: .82rem !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .why-epitrop {
    padding: 52px 0;
  }

  .why-epitrop-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-epitrop-heading h2 {
    max-width: 17ch;
  }
}

@media (max-width: 760px) {
  .why-epitrop {
    padding: 46px 0;
  }

  .why-epitrop-grid {
    gap: 22px;
  }

  .why-epitrop-copy > p {
    font-size: 1rem;
  }

  .why-epitrop-claim {
    margin-top: 20px !important;
    padding-left: 14px;
  }
}


/* === EPITROP OFFERS INTRO ALIGNMENT V3 2026-09-25 === */
.offers .section-heading > p {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .offers .section-heading > p {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .offers .section-heading > p {
    margin-top: 0;
  }
}



/* === EPITROP OFFERS GAP TIGHTEN V4 2026-09-25 === */
.offers .section-heading > p {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .offers .section-heading > p {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  .offers .section-heading > p {
    margin-top: 0;
  }
}

/* === EPITROP TEAM + CONTACT TUNE V5 2026-09-25 ===
   Jemné vizuální doladění:
   - pravý úvodní text v sekci TÝM je posunut níže,
   - kontaktní e-mail je o něco menší.
*/
.team .section-heading > p {
  margin-top: 10px;
}

.contact-mail {
  font-size: clamp(1.35rem, 1.55vw, 1.7rem) !important;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .team .section-heading > p {
    margin-top: 4px;
  }

  .contact-mail {
    font-size: clamp(1.28rem, 3.6vw, 1.55rem) !important;
  }
}

@media (max-width: 760px) {
  .team .section-heading > p {
    margin-top: 0;
  }

  .contact-mail {
    font-size: clamp(1.22rem, 6vw, 1.45rem) !important;
  }
}


/* === EPITROP CONTACT MAIL SMALLER V6 2026-09-25 === */
.contact-mail {
  font-size: clamp(1.12rem, 1.25vw, 1.38rem) !important;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .contact-mail {
    font-size: clamp(1.08rem, 3vw, 1.3rem) !important;
  }
}

@media (max-width: 760px) {
  .contact-mail {
    font-size: clamp(1.05rem, 5.2vw, 1.24rem) !important;
  }
}


/* === EPITROP LINKEDIN V8 2026-09-25 === */
.person-contact .linkedin-link {
  margin-top: 3px;
  color: var(--teal);
  font-weight: 700;
  width: fit-content;
}

.person-contact .linkedin-link:hover {
  color: var(--navy);
}
