/* ============================================================
   ZUBNÍ ORDINACE — MUDr. Helena Šprinclová
   styles.css — Desktop styles (all CSS except media queries)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --brand-primary: #1A4B8C;
  --brand-dark:    #0F2D5A;
  --brand-mid:     #4A7FC1;
  --brand-light:   #D6E6F8;
  --brand-tint:    #EEF5FC;
  --text-dark:     #1C2B3A;
  --text-mid:      #4A5568;
  --text-light:    #718096;
  --white:         #ffffff;
  --off-white:     #F8FAFD;
  --border:        #D6E6F8;
  --radius-lg:     16px;
  --radius-sm:     8px;
  --shadow-card:   0 4px 6px rgba(26,75,140,0.10), 0 10px 24px rgba(26,75,140,0.08);
  --shadow-elevated: 0 20px 40px rgba(26,75,140,0.15), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-btn:    0 4px 14px rgba(26,75,140,0.30);
  --container-max: 1280px;
  --section-pad:   96px 0;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p  { font-size: clamp(15px, 1.1vw, 16px); line-height: 1.75; color: var(--text-mid); }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTION COMMON ── */
.section-pad { padding: var(--section-pad); }
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-mid);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-sub {
  max-width: 560px;
  margin-bottom: 48px;
  color: var(--text-mid);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: var(--shadow-btn);
  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(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,75,140,0.40);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-btn); }
.btn-primary:focus-visible { outline: 3px solid var(--brand-mid); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid rgba(255,255,255,0.5);
  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.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-outline:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

/* ── SCROLL ANIMATIONS ── */
.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 60ms; }
.delay-2 { transition-delay: 120ms; }
.delay-3 { transition-delay: 180ms; }
.delay-4 { transition-delay: 240ms; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}
.navbar.scrolled {
  background: rgba(15,45,90,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img {
  height: 38px;
  width: auto;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-logo-text {
  line-height: 1.1;
}
.nav-logo-text .logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo-text .logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--brand-mid);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--brand-mid); outline-offset: 4px; border-radius: 3px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 3px 10px rgba(26,75,140,0.35);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 5px 16px rgba(26,75,140,0.45); }
.nav-cta:focus-visible { outline: 3px solid var(--brand-mid); outline-offset: 3px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--brand-dark);
  padding: 24px 32px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.nav-drawer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-drawer a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease;
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .drawer-phone {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-mid);
  border-bottom: none;
}
.nav-drawer .drawer-cta {
  margin-top: 16px;
  background: var(--brand-primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(26,75,140,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(15,45,90,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(10,20,50,0.8) 0%, transparent 70%);
  z-index: 1;
}
/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  z-index: 2;
}
.hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-dark) 0%, rgba(15,45,90,0.5) 40%, transparent 70%);
  z-index: 1;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,45,90,0.8) 0%, transparent 40%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 580px;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-mid);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-mid);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  width: fit-content;
}
.hero-hours svg { flex-shrink: 0; color: var(--brand-mid); }
.hero-hours-text { font-size: 0.83rem; color: rgba(255,255,255,0.8); }
.hero-hours-text strong { color: var(--white); }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ================================================================
   TRUST / POJIŠŤOVNY BAND
   ================================================================ */
.trust-band {
  background: var(--brand-dark);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}
.trust-stat-icon { color: var(--brand-mid); }
.trust-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.trust-stat-block { text-align: left; }
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}
.trust-insurer-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(180,210,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 20px;
}
.trust-insurers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.insurer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 10px 18px;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s ease;
}
.insurer-badge:hover { transform: translateY(-2px); opacity: 0.92; }
.insurer-badge img { height: 28px; width: auto; object-fit: contain; }
.insurer-badge .ins-code {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ================================================================
   SERVICES / SLUŽBY
   ================================================================ */
.services-section { background: var(--brand-tint); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-primary);
  transition: background 0.2s ease;
}
.service-card:hover .service-icon { background: var(--brand-light); }
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ================================================================
   ABOUT / O NÁS
   ================================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  padding-bottom: 40px;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,75,140,0.18), 0 4px 12px rgba(0,0,0,0.08);
  aspect-ratio: 4/3;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -24px;
  width: 48%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26,75,140,0.20), 0 2px 8px rgba(0,0,0,0.10);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content { padding-left: 24px; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-value-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,75,140,0.08);
}
.about-value-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.about-value-text p { font-size: 0.85rem; }

/* ================================================================
   TEAM / NÁŠ TÝM
   ================================================================ */
#nas-tym { background: var(--brand-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);
  box-shadow: var(--shadow-card);
  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: cover;
  object-position: top center;
  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(15,45,90,0.65) 0%, transparent 55%);
}
.team-body {
  padding: 20px 24px 24px;
}
.team-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  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(--brand-primary);
  transition: color 0.2s ease;
}
.team-email:hover { color: var(--brand-dark); }
.team-email:focus-visible { outline: 2px solid var(--brand-primary); border-radius: 4px; }

/* PRO 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: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thm-title {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-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.73rem; color: var(--text-dark); line-height: 1.3; }
.thm-d {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.04em;
  width: 20px;
  padding-right: 6px;
}

/* 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(--brand-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,40,0.75);
  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(10,22,55,0.88) 0%, transparent 50%);
}
.modal-photo-badge { position: absolute; bottom: 20px; left: 20px; right: 20px; }
.modal-photo-badge .modal-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 4px;
}
.modal-photo-badge .modal-name-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  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(--brand-primary); outline-offset: 2px; }
.modal-close svg { color: var(--text-dark); }
.modal-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand-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(--brand-primary);
  margin-bottom: 24px;
}
.modal-email svg { flex-shrink: 0; }
.modal-section { margin-bottom: 20px; }
.modal-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  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(--brand-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(--brand-primary);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ================================================================
   PRICING / CENÍK
   ================================================================ */
.pricing-section { background: var(--white); }
.pricing-tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pricing-group-title {
  background: var(--brand-primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 20px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row span:first-child { flex: 1; }
.pricing-row span:last-child {
  font-weight: 700;
  color: var(--brand-primary);
  white-space: nowrap;
}
.pricing-disclaimer {
  margin-top: 0;
  background: #FEF3CD;
  border: 1px solid #F0C040;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.84rem;
  color: #7D5A00;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-disclaimer svg { flex-shrink: 0; color: #C89000; margin-top: 2px; }

/* ================================================================
   TESTIMONIALS / REFERENCE
   ================================================================ */
.testimonials-section { background: var(--brand-tint); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.testimonial-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-tint);
  border: 2px solid var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.testimonial-author-detail {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-question:focus-visible { outline: 2px solid var(--brand-primary); border-radius: 4px; }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand-tint);
  border: 1px solid var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: background 0.2s ease, transform 0.3s ease;
}
.faq-item.open .faq-icon {
  background: var(--brand-primary);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ================================================================
   CONTACT / KONTAKT
   ================================================================ */
.contact-section { background: var(--brand-tint); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {}
.contact-phone-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.contact-phone-big:hover { color: var(--brand-dark); }
.contact-phone-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 28px;
  display: block;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(26,75,140,0.08);
}
.contact-detail-content {}
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.contact-hours-table tr { border-bottom: 1px solid var(--border); }
.contact-hours-table tr:last-child { border-bottom: none; }
.contact-hours-table td { padding: 7px 0; }
.contact-hours-table .day { font-weight: 600; color: var(--text-dark); width: 36px; }
.contact-hours-table .hours { color: var(--text-mid); }
.contact-hours-table .closed { color: var(--text-light); font-style: italic; }

.contact-right {}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  background: var(--brand-tint);
}
.contact-form {}
.contact-form h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26,75,140,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-gdpr input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 3px;
  accent-color: var(--brand-primary);
  flex-shrink: 0;
}
.form-gdpr label {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-gdpr a { color: var(--brand-primary); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--brand-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 38px; width: auto; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,0.30); }
.footer-logo-text .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-logo-text .logo-sub {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  display: block;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-ico {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--brand-mid);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible { outline: 2px solid var(--brand-mid); border-radius: 3px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--brand-mid); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom-left { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-right {
  display: flex;
  gap: 20px;
}
.footer-bottom-right a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,0.6); }

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--brand-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(26,75,140,0.45);
  white-space: nowrap;
  border: none;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.mobile-sticky-cta:focus-visible { outline: 3px solid var(--brand-mid); outline-offset: 3px; }
