/* ===== CSS VARIABLES ===== */
:root {
  --green-primary: #52B548;
  --green-dark: #3A8A33;
  --green-light: #E8F7E5;
  --green-tint: #F0F9EE;
  --green-mid: #7DCB73;
  --text-dark: #1C2329;
  --text-mid: #4A5568;
  --text-light: #718096;
  --white: #ffffff;
  --off-white: #FAFCFA;
  --border: #E2EEE0;
  --shadow-card: 0 4px 6px rgba(82,181,72,0.12), 0 10px 24px rgba(82,181,72,0.08);
  --shadow-elevated: 0 20px 40px rgba(82,181,72,0.15), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-nav: 0 2px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --nav-h: 80px;
  --radius: 12px;
  --radius-lg: 20px;
  font-size: 16px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== SECTION SCROLL OFFSET ===== */
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  display: block;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 72px 0; }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(82,181,72,0.08);
  transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-nav);
  background: rgba(255,255,255,0.96);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-logo img:hover { transform: scale(1.04); }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.nav-logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover {
  color: var(--green-primary);
  background: var(--green-light);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green-primary);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(82,181,72,0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(82,181,72,0.4) !important;
  color: var(--white) !important;
}
.nav-cta:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.hamburger:hover { background: var(--green-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: var(--green-primary); }
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #1a2a18;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.42) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,181,72,0.2);
  border: 1px solid rgba(82,181,72,0.4);
  backdrop-filter: blur(8px);
  color: #a8edaa;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: #a8edaa;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 520px;
}
.hero-notice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,158,11,0.35);
  border-left: 3px solid #F59E0B;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(82,181,72,0.45);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(82,181,72,0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.hero-dot:hover { background: rgba(255,255,255,0.75); }

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow:focus-visible { outline: 2px solid white; outline-offset: 2px; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ===== ABOUT SECTION ===== */
#o-nas { background: var(--white); }
.about-compact {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-compact-text { max-width: 700px; }
.about-compact-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-compact-stats {
  display: flex;
  gap: 16px;
}
.about-compact-stats .stat-card { flex: 1; }
.stat-card {
  background: var(--green-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--green-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(82,181,72,0.3);
}
.stat-icon svg { color: white; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-desc { font-size: 0.82rem; color: var(--text-light); margin-top: 3px; }

/* ===== TEAM SECTION ===== */
#nas-tym { background: var(--green-tint); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--off-white);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,35,41,0.6) 0%, transparent 55%);
}
.team-body {
  padding: 20px 24px 24px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 6px;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.team-credentials {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.team-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--green-primary);
  transition: color 0.2s ease;
}
.team-email:hover { color: var(--green-dark); }
.team-email:focus-visible { outline: 2px solid var(--green-primary); border-radius: 4px; }

/* ===== TEAM CARD WITH HOURS ===== */
.team-card--pro .team-upper {
  display: flex;
}
.team-card--pro .team-photo-wrap {
  width: 42%;
  height: 210px;
  flex-shrink: 0;
}
.team-card--pro .team-photo-wrap img {
  object-fit: cover;
  object-position: top center;
}
.team-hours-mini {
  flex: 1;
  background: var(--off-white);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thm-title {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  margin-bottom: 10px;
}
.thm-table { width: auto; border-collapse: collapse; }
.thm-table tr { border-bottom: 1px solid var(--border); }
.thm-table tr:last-child { border-bottom: none; }
.thm-table td { padding: 4px 0; font-size: 0.74rem; color: var(--text-dark); line-height: 1.3; }
.thm-d {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.04em;
  width: 20px;
  padding-right: 6px;
}

/* ===== SERVICES SECTION ===== */
#sluzby { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-primary);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0.3);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elevated); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .service-icon-wrap {
  background: var(--green-primary);
  transform: scale(1.08);
}
.service-icon-wrap svg { transition: color 0.3s ease; color: var(--green-primary); }
.service-card:hover .service-icon-wrap svg { color: white; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-primary);
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover { gap: 10px; color: var(--green-dark); }
.service-link:focus-visible { outline: 2px solid var(--green-primary); border-radius: 4px; }

/* ===== EQUIPMENT SECTION ===== */
#vybaveni { background: var(--green-tint); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.equip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.equip-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.equip-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.equip-check svg { color: white; }
.equip-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.equip-model {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== PRICING SECTION ===== */
#cenik { background: var(--white); }
.cenik-header-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(82,181,72,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 16px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-table th {
  background: var(--text-dark);
  color: var(--white);
  text-align: left;
  padding: 16px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 16px 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.price-table td:last-child { text-align: right; font-weight: 600; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--off-white); }
.price-table tbody tr { transition: background 0.15s ease; }
.price-table tbody tr:hover { background: var(--green-light); }
.zp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(82,181,72,0.25);
}
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.insurance-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.insurance-chip {
  background: var(--white);
  border: 1px solid rgba(82,181,72,0.45);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 80px;
  box-shadow: 0 0 0 3px rgba(82,181,72,0.08), 0 2px 8px rgba(82,181,72,0.12);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.insurance-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(82,181,72,0.15), 0 6px 18px rgba(82,181,72,0.2);
}
.insurance-chip--last {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 5px);
}
.insurance-logo {
  height: 32px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.insurance-num-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.03em;
}

/* ===== CONTACT SECTION ===== */
#kontakt { background: var(--green-tint); }
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
  margin-bottom: 56px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.contact-hours-full {
  grid-column: auto;
}

/* Hours full-width compact */
.hours-full { display: flex; flex-direction: column; gap: 8px; }
.hf-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
}
.hf-meta { display: flex; flex-direction: column; justify-content: center; }
.hf-doc { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); line-height: 1.3; }
.hf-email { font-size: 0.73rem; color: var(--green-primary); margin-top: 4px; transition: color 0.2s ease; }
.hf-email:hover { color: var(--green-dark); }
.hf-days { display: flex; gap: 5px; }
.hf-day {
  flex: 1;
  background: var(--green-tint);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.hfd-name {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 5px;
}
.hfd-time {
  font-size: 0.68rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}
.hfd-time span { color: var(--text-light); display: block; }

/* Dark variant for footer */
.hf-row--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.hf-row--dark .hf-doc { color: rgba(255,255,255,0.9); }
.hf-row--dark .hf-email { color: var(--green-mid); }
.hf-row--dark .hf-email:hover { color: var(--green-primary); }
.hf-row--dark .hf-day { background: rgba(255,255,255,0.06); }
.hf-row--dark .hfd-name { color: rgba(255,255,255,0.35); }
.hf-row--dark .hfd-time { color: rgba(255,255,255,0.8); }
.hf-row--dark .hfd-time span { color: rgba(255,255,255,0.3); }

/* Compact footer ordinační hodiny */
.foh-doctors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.foh-doctor { min-width: 0; }
.foh-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  margin-bottom: 3px;
}
.foh-email {
  display: block;
  font-size: 0.68rem;
  color: var(--green-mid);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.foh-email:hover { color: var(--green-primary); }
.foh-email:focus-visible { outline: 2px solid var(--green-primary); border-radius: 2px; }
.foh-schedule { display: flex; flex-direction: column; gap: 2px; }
.foh-row { display: flex; gap: 7px; align-items: baseline; }
.foh-day {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  width: 16px;
  flex-shrink: 0;
}
.foh-time { font-size: 0.68rem; color: rgba(255,255,255,0.5); }

/* Info panel divider */
.map-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 4px 0;
}

.contact-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-primary);
  display: inline-block;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-item svg { flex-shrink: 0; color: var(--green-primary); margin-top: 2px; }
.contact-item a { color: var(--text-mid); transition: color 0.2s ease; }
.contact-item a:hover { color: var(--green-primary); }
.contact-item a:focus-visible { outline: 2px solid var(--green-primary); border-radius: 2px; }
.floor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.floor-num {
  background: var(--green-primary);
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.floor-desc { color: var(--text-mid); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.hours-table th {
  text-align: left;
  padding: 6px 8px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--white);
  border-radius: 6px 6px 0 0;
}
.hours-doctor {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 14px 0 4px;
  display: block;
}
.hours-email { font-size: 0.75rem; color: var(--green-primary); }
.hours-table td { padding: 5px 8px; color: var(--text-mid); border-bottom: 1px solid rgba(226,238,224,0.6); }
.hours-table td:first-child { font-weight: 600; color: var(--text-dark); width: 28px; }
.hours-table tr:last-child td { border-bottom: none; }

/* Transport */
.transport-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.transport-badge {
  background: var(--text-dark);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.tram-badge { background: #d97706; }
.bus-badge { background: #2563eb; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 2fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-logo img { height: 40px; width: auto; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--green-mid); }
.footer-links a:focus-visible { outline: 2px solid var(--green-primary); border-radius: 2px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { flex-shrink: 0; color: var(--green-mid); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.footer-contact-item a:hover { color: var(--green-mid); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social:hover { background: rgba(82,181,72,0.15); color: var(--green-mid); }
.footer-social:focus-visible { outline: 2px solid var(--green-primary); outline-offset: 3px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-ico { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== MAP SPLIT LAYOUT ===== */
.map-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  min-height: 360px;
}
.map-info-panel {
  background: #1e2d24;
  color: rgba(255,255,255,0.85);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-info-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.map-info-logo img { height: 38px; width: auto; }
.map-info-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.map-info-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.map-info-rows { display: flex; flex-direction: column; gap: 14px; flex: 1; margin: 0 0 24px; }
.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.map-info-row svg { color: var(--green-mid); flex-shrink: 0; margin-top: 2px; }
.map-info-row a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.map-info-row a:hover { color: var(--green-mid); }
.map-info-row strong { color: white; display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #2C6B26;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.map-open-btn:hover { background: #1f4f1b; transform: translateY(-2px); color: white; }
.map-open-btn:focus-visible { outline: 2px solid var(--green-primary); outline-offset: 3px; }
.map-iframe-wrap { position: relative; flex: 1; }
.map-iframe-wrap iframe { display: block; width: 100%; height: 100%; min-height: 460px; border: none; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== TEAM CARD HOVER CUE ===== */
.team-card[data-member] .team-body::after {
  content: 'Zobrazit profil →';
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-primary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.team-card[data-member]:hover .team-body::after {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TEAM MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,18,10,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.15);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}
.modal-photo-col {
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  min-height: 420px;
}
.modal-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.modal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,66,25,0.85) 0%, transparent 50%);
}
.modal-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.modal-photo-badge .modal-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8edaa;
  margin-bottom: 4px;
}
.modal-photo-badge .modal-name-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}
.modal-content-col {
  padding: 40px 36px;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-close:hover { background: white; transform: scale(1.1); }
.modal-close:focus-visible { outline: 2px solid var(--green-primary); outline-offset: 2px; }
.modal-close svg { color: var(--text-dark); }
.modal-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 6px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.modal-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--green-primary);
  margin-bottom: 24px;
}
.modal-email svg { flex-shrink: 0; }
.modal-section {
  margin-bottom: 20px;
}
.modal-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.modal-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.modal-item-year {
  font-size: 0.75rem;
  color: var(--green-primary);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
  min-width: 80px;
}
.modal-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.modal-bullet::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  margin-top: 7px;
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .modal-card { grid-template-columns: 1fr; }
  .modal-photo-col { border-radius: 24px 24px 0 0; min-height: 260px; }
  .modal-content-col { padding: 28px 24px; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--green-primary);
  border-radius: 3px;
  margin: 0 0 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foh-doctors { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .insurance-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .foh-doctors { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-arrow { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-split { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .price-table td, .price-table th { padding: 12px 16px; }
}
