/* styl.css - kompletni vzhled webu.
   Prevzato 1:1 z prototypu designs/design-1-deep-ocean-v3.html (schvaleny design).
   Barvy a fonty jsou v :root nahore - zmena barvy = zmena jedne promenne. */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --ocean: #071e26; --ocean-mid: #0d3340; --ocean-light: #134a5e;
    --teal: #0eb8a5; --teal-light: #34d4c2; --teal-pale: #e0f7f5;
    --white: #ffffff; --gray-50: #f8fafc; --gray-100: #f1f5f9; --gray-200: #e2e8f0;
    --gray-400: #94a3b8; --gray-600: #475569; --gray-700: #334155; --gray-800: #1e293b;
    --amber: #f59e0b;
    --font-body: 'Inter', sans-serif; --font-display: 'Outfit', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--white); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; padding-top: 64px; }

  /* NAVBAR */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(7,30,38,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(14,184,165,0.15); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-icon { width: 34px; height: 34px; background: var(--teal); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
  .nav-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--white); line-height: 1.2; }
  .nav-logo-sub { font-size: 10px; color: rgba(255,255,255,0.45); }
  .nav-links { display: flex; align-items: center; gap: 22px; }
  .nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { background: var(--teal); color: var(--white) !important; padding: 8px 18px; border-radius: 8px; font-weight: 700 !important; font-size: 13px !important; }
  .nav-cta:hover { background: var(--teal-light) !important; }
  .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

  /* HERO */
  .hero { min-height: 100vh; background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 50%, #0a2a38 100%); display: flex; align-items: center; padding: 36px 5% 70px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(14,184,165,0.12) 0%, transparent 70%); border-radius: 50%; }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,184,165,0.12); border: 1px solid rgba(14,184,165,0.3); color: var(--teal); padding: 6px 14px; border-radius: 30px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
  .hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 50px); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 8px; letter-spacing: -0.02em; }
  .hero h1 em { color: var(--teal); font-style: normal; }
  .hero-name { font-family: var(--font-display); font-size: clamp(17px, 2vw, 22px); font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
  .hero-slogan { font-size: 16px; color: var(--teal-light); font-weight: 600; margin-bottom: 6px; }
  .hero-creds { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: 28px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
  .btn-primary { background: var(--teal); color: var(--white); padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 24px rgba(14,184,165,0.35); border: none; cursor: pointer; }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn-outline { border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; background: none; cursor: pointer; }
  .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
  .hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
  .stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); }
  .stat-num span { color: var(--teal); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.4); }
  .hero-photo-wrap { position: relative; }
  .hero-photo { width: 100%; aspect-ratio: 4/5; border-radius: 22px; background: linear-gradient(160deg, rgba(14,184,165,0.18), rgba(255,255,255,0.04)); border: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-align: center; gap: 10px; padding: 24px; }
  .hero-photo .ph-icon { font-size: 46px; }
  .hero-photo-badge { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(7,30,38,0.85); backdrop-filter: blur(10px); border: 1px solid rgba(14,184,165,0.25); border-radius: 14px; padding: 13px 15px; display: flex; align-items: center; gap: 10px; }
  .open-dot { width: 9px; height: 9px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
  .hpb-text { font-size: 13px; color: var(--white); font-weight: 600; }
  .hpb-sub { font-size: 11px; color: rgba(255,255,255,0.45); }

  /* SECTION */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 12px; }
  .section-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--gray-800); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px; }
  .section-desc { font-size: 15px; color: var(--gray-600); max-width: 560px; line-height: 1.7; }

  /* AKTUALITY */
  .news { background: var(--white); }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .news-card { border-radius: 18px; padding: 24px; border: 1.5px solid var(--gray-100); background: var(--gray-50); }
  .news-card.highlight { background: linear-gradient(160deg, #fff7ec, #fffdf8); border-color: rgba(245,158,11,0.3); }
  .news-tag { display: inline-block; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.05em; margin-bottom: 12px; text-transform: uppercase; }
  .tag-amber { background: rgba(245,158,11,0.15); color: #b45309; }
  .tag-teal { background: rgba(14,184,165,0.12); color: #0d8b7d; }
  .tag-gray { background: var(--gray-200); color: var(--gray-600); }
  .news-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
  .news-card p { font-size: 13px; color: var(--gray-600); }
  .news-price { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--amber); margin-top: 10px; }
  .news-eff { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--teal); margin-top: 10px; }
  .news-card.notice { background: var(--ocean); border-color: var(--ocean-light); }
  .news-card.notice h3, .news-card.notice p { color: var(--white); }
  .news-card.notice p { color: rgba(255,255,255,0.65); }
  /* doplnek mimo prototyp: karta aktuality muze byt odkaz na clanek.php */
  /* Odkaz na clanek nese jen nadpis a "Cist dal" (ne cela karta) */
  .news-card h3 a { color: inherit; text-decoration: none; }
  .news-card h3 a:hover { color: var(--teal); }
  .news-more { display: inline-block; font-size: 12px; font-weight: 700; color: var(--teal); margin-top: 12px; text-decoration: none; }
  a.news-more:hover { text-decoration: underline; }
  .news-card.notice .news-more { color: var(--teal-light); }

  /* CLANEK (detail aktuality - clanek.php) */
  .clanek { background: var(--white); }
  .clanek-inner { max-width: 760px; margin: 0 auto; }
  .clanek-zpet { display: inline-block; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; margin-bottom: 24px; }
  .clanek-zpet:hover { text-decoration: underline; }
  .clanek .news-tag { margin-bottom: 16px; }
  .clanek h1 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: var(--gray-800); line-height: 1.18; letter-spacing: -0.02em; }
  .clanek-datum { font-size: 13px; color: var(--gray-400); margin-top: 10px; }
  .clanek-telo { margin-top: 28px; font-size: 16px; color: var(--gray-700); line-height: 1.75; }
  .clanek-telo > :first-child { margin-top: 0; }
  .clanek-telo p { margin: 0 0 16px; }
  .clanek-telo h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gray-800); margin: 32px 0 12px; }
  .clanek-telo h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--gray-800); margin: 26px 0 10px; }
  .clanek-telo ul, .clanek-telo ol { margin: 0 0 16px; padding-left: 22px; }
  .clanek-telo li { margin-bottom: 6px; }
  .clanek-telo a { color: var(--teal); text-decoration: underline; }
  .clanek-telo a:hover { color: var(--teal-light); }
  .clanek-telo strong { color: var(--gray-800); }
  .clanek-telo blockquote { margin: 20px 0; padding: 12px 20px; border-left: 3px solid var(--teal); background: var(--teal-pale); border-radius: 0 10px 10px 0; color: var(--gray-700); }
  .clanek-telo img { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0; }
  .clanek-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--gray-100); }
  .clanek-cta .btn-outline { border-color: var(--gray-200); color: var(--gray-700); }
  .clanek-cta .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
  .clanek-404 .clanek-inner { text-align: center; }
  .clanek-404 h1 { margin: 12px 0 16px; }
  .clanek-404 p { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; }

  /* GALERIE (galerie.php - bod 10) */
  .galerie { background: var(--white); }
  .galerie-inner { max-width: 1100px; margin: 0 auto; }
  .galerie .section-title { margin-bottom: 30px; }
  .galerie-zpet { display: inline-block; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; margin-bottom: 18px; }
  .galerie-zpet:hover { text-decoration: underline; }
  .galerie h1 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: var(--gray-800); line-height: 1.18; letter-spacing: -0.02em; margin-top: 4px; }
  .galerie-popis { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin: 14px 0 30px; max-width: 720px; }
  .galerie-prazdne { font-size: 15px; color: var(--gray-600); margin-top: 8px; }
  .galerie-404 .galerie-inner { max-width: 640px; text-align: center; }
  .galerie-404 h1 { margin: 12px 0 16px; }
  .galerie-404 p { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; }

  /* seznam alb */
  .alba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .album-karta { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; overflow: hidden; text-decoration: none; transition: all 0.25s; box-shadow: 0 2px 14px rgba(7,30,38,0.05); }
  .album-karta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,30,38,0.12); border-color: var(--teal-pale); }
  .album-foto { aspect-ratio: 4/3; background: var(--gray-100); overflow: hidden; }
  .album-foto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .album-karta:hover .album-foto img { transform: scale(1.05); }
  .album-foto-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--gray-400); background: linear-gradient(160deg, var(--teal-pale), var(--gray-100)); }
  .album-telo { padding: 18px 20px 22px; }
  .album-telo h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--gray-800); margin: 0 0 6px; }
  .album-telo p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; margin: 0 0 12px; }
  .album-vice { font-size: 13px; font-weight: 600; color: var(--teal); }

  /* mrizka fotek v albu */
  .foto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
  .foto-item { margin: 0; cursor: pointer; border-radius: 12px; overflow: hidden; background: var(--gray-100); position: relative; }
  .foto-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 0.4s; }
  .foto-item:hover img { transform: scale(1.06); }
  .foto-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 12px 9px; font-size: 12px; color: #fff; background: linear-gradient(to top, rgba(7,30,38,0.82), transparent); }

  /* lightbox (plne zobrazeni fotky) */
  .lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(7,30,38,0.93); align-items: center; justify-content: center; padding: 30px; }
  .lightbox.open { display: flex; }
  .lightbox-obsah { margin: 0; max-width: 92vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
  .lightbox-obsah img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 10px; }
  .lightbox-obsah figcaption { color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 14px; text-align: center; }
  .lightbox-zavrit { position: fixed; top: 16px; right: 24px; font-size: 38px; line-height: 1; color: #fff; cursor: pointer; font-weight: 300; z-index: 2; }
  .lightbox-sip { position: fixed; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: none; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 34px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
  .lightbox-sip:hover { background: var(--teal); }
  .lightbox-prev { left: 18px; padding-right: 4px; }
  .lightbox-dalsi { right: 18px; padding-left: 4px; }
  @media (max-width: 560px) {
    .lightbox-sip { width: 44px; height: 44px; font-size: 27px; }
    .lightbox-prev { left: 8px; }
    .lightbox-dalsi { right: 8px; }
  }

  /* SERVICES */
  .services { background: var(--gray-50); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 30px; flex-wrap: wrap; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 20px; padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer; text-align: left; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .service-card:hover { border-color: rgba(14,184,165,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { width: 50px; height: 50px; background: rgba(14,184,165,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 16px; }
  .service-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
  .service-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
  .service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--teal); }

  /* ABOUT */
  .about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
  .about-photo { aspect-ratio: 3/4; border-radius: 22px; background: linear-gradient(160deg, var(--teal-pale), var(--gray-100)); border: 1.5px dashed var(--gray-200); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-400); text-align: center; gap: 8px; padding: 24px; }
  .about-photo .ph-icon { font-size: 42px; }
  .cv-block { margin-bottom: 24px; }
  .cv-block h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 12px; }
  .cv-item { display: flex; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--gray-100); }
  .cv-item:last-child { border-bottom: none; }
  .cv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 7px; flex-shrink: 0; }
  .cv-item p { font-size: 14px; color: var(--gray-700); line-height: 1.55; }
  .cv-item strong { color: var(--gray-800); }
  /* doplnek mimo prototyp: obsah CV bloku prijde jako HTML z administrace
     (body_html ze Sections) - ul/li dostanou vzhled cv-item s teal teckou */
  .cv-html ul { list-style: none; margin: 0; padding: 0; }
  .cv-html li { position: relative; padding: 9px 0 9px 22px; border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-700); line-height: 1.55; }
  .cv-html li:last-child { border-bottom: none; }
  .cv-html li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
  .cv-html p { font-size: 14px; color: var(--gray-700); line-height: 1.55; padding: 6px 0; }
  .cv-html strong { color: var(--gray-800); }

  /* CENIK */
  .pricing { background: var(--gray-50); }
  .price-note { font-size: 13px; color: var(--gray-600); background: rgba(14,184,165,0.07); border: 1px solid rgba(14,184,165,0.2); border-radius: 12px; padding: 13px 16px; margin: 18px 0 24px; max-width: 820px; }
  .filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
  .filter-tab { padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: 1.5px solid var(--gray-200); color: var(--gray-600); background: var(--white); }
  .filter-tab:hover { border-color: var(--teal); color: var(--teal); }
  .filter-tab.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
  .filter-count { font-size: 13px; color: var(--gray-400); margin-bottom: 14px; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
  .price-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 13.5px; min-width: 640px; }
  .price-table thead { background: var(--ocean); }
  .price-table th { color: var(--white); font-family: var(--font-display); font-weight: 600; text-align: left; padding: 13px 15px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
  .price-table td { padding: 12px 15px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: top; }
  .price-table .disease { font-weight: 700; color: var(--gray-800); }
  .price-table .vac { color: var(--ocean-light); font-weight: 600; }
  .price-table .price { font-weight: 700; color: var(--gray-800); white-space: nowrap; }
  .price-table tbody tr:hover { background: var(--gray-50); }
  .badge-mini { display: inline-block; font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 4px; margin-left: 4px; vertical-align: middle; text-transform: uppercase; }
  .bm-novinka { background: rgba(245,158,11,0.15); color: #b45309; }
  .price-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
  .ps-item { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 12px; padding: 15px 17px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .ps-item div { font-size: 13.5px; color: var(--gray-700); }
  .ps-price { font-family: var(--font-display); font-weight: 800; color: var(--teal); white-space: nowrap; }
  /* Ikony z administrace - obrazek se vejde do stejneho ramecku jako emotikon */
  .nav-logo-icon img { width: 22px; height: 22px; object-fit: contain; }
  .service-icon img { width: 30px; height: 30px; object-fit: contain; }
  .ph-icon img { width: 56px; height: 56px; object-fit: contain; }
  .ikona-inline img { width: 1em; height: 1em; object-fit: contain; vertical-align: -0.125em; }
  .dest-flag img { width: 36px; height: 36px; object-fit: contain; display: inline-block; }
  .modal-flag img { width: 48px; height: 48px; object-fit: contain; }
  /* Cenik (bod 6): zalozky jsou <button> (PHP) a radky klikaci (popup) */
  button.filter-tab { font: inherit; font-size: 13px; font-weight: 600; }
  #priceBody tr[data-cats] { cursor: pointer; }
  /* Popup s popisem nemoci (obsah z Payloadu - description_html) */
  .modal-html { font-size: 14px; color: var(--gray-700); line-height: 1.65; margin-top: 4px; }
  .modal-html p { padding: 5px 0; }
  .modal-html ul, .modal-html ol { padding-left: 20px; margin: 6px 0; }
  .modal-html li { padding: 3px 0; }
  .vak-fakta { margin-top: 16px; border-top: 1px solid var(--gray-100); }
  .vak-fakt { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 13.5px; }
  .vak-fakt span { color: var(--gray-600); }
  .vak-fakt strong { color: var(--gray-800); text-align: right; }

  /* TRAVEL */
  .travel { background: var(--ocean); }
  .travel .section-title { color: var(--white); }
  .travel .section-desc { color: rgba(255,255,255,0.5); }
  .travel-destinations { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
  .dest-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px 16px; transition: all 0.2s; cursor: pointer; text-align: center; }
  .dest-card:hover { background: rgba(14,184,165,0.1); border-color: rgba(14,184,165,0.35); transform: translateY(-3px); }
  .dest-flag { font-size: 30px; margin-bottom: 10px; display: block; }
  .dest-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
  .dest-count { font-size: 11.5px; color: rgba(255,255,255,0.45); }
  .dest-more { font-size: 11px; color: var(--teal); margin-top: 8px; font-weight: 600; }
  .travel-foot { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 28px; text-align: center; line-height: 1.7; }

  /* GALERIE TEASER */
  .gallery-teaser { background: var(--white); }
  .gt-card { background: linear-gradient(135deg, var(--ocean), var(--ocean-light)); border-radius: 24px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .gt-card h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
  .gt-card p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 460px; }

  /* CONTACT */
  .contact-section { background: var(--gray-50); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 36px; align-items: stretch; }
  .hours-card { background: var(--ocean); border-radius: 24px; padding: 34px; color: var(--white); }
  .hours-title { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--white); margin-bottom: 22px; }
  .hours-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hours-row:last-of-type { border-bottom: none; }
  .hours-day { font-size: 14px; color: rgba(255,255,255,0.6); }
  .hours-time { font-size: 14px; font-weight: 600; color: var(--white); text-align: right; }
  .hours-note { font-size: 11px; color: rgba(14,184,165,0.85); margin-top: 2px; }
  .alert-box { margin-top: 20px; padding: 15px; background: rgba(245,158,11,0.12); border-radius: 10px; border: 1px solid rgba(245,158,11,0.3); }
  .alert-box .al-title { font-size: 12px; color: var(--amber); font-weight: 700; margin-bottom: 4px; }
  .alert-box p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }
  .contact-info h3 { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--gray-800); margin-bottom: 22px; }
  .contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
  .contact-icon { width: 42px; height: 42px; background: rgba(14,184,165,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
  .contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 4px; }
  .contact-value { font-size: 15px; font-weight: 600; color: var(--gray-800); }
  .contact-sub { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
  .floor-highlight { background: rgba(14,184,165,0.12); color: #0d8b7d; font-weight: 700; padding: 2px 8px; border-radius: 6px; }
  /* FORM */
  .form-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 24px; padding: 34px; }
  .form-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .form-tbd { font-size: 11px; color: var(--amber); font-weight: 700; margin-bottom: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .form-field { display: flex; flex-direction: column; gap: 5px; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label { font-size: 12px; font-weight: 600; color: var(--gray-600); }
  .form-field input, .form-field textarea, .form-field select { padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-family: var(--font-body); font-size: 14px; color: var(--gray-800); }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--teal); }
  .form-field textarea { resize: vertical; }
  /* Honeypot - skryte pole proti spamu (clovek ho nevidi, robot vyplni) */
  .hp-pole { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  /* Flash hlasky po odeslani formulare */
  .form-msg { padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
  .form-msg-ok { background: rgba(14,184,165,0.12); border: 1px solid rgba(14,184,165,0.35); color: #0a7d70; }
  .form-msg-err { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.4); color: #92600a; }

  /* TOP BANNER (urgentni upozorneni - global alert-banner) */
  .top-banner { background: var(--amber); color: #422006; font-size: 14px; font-weight: 600; text-align: center; padding: 10px 20px; line-height: 1.5; }

  /* KONTAKT - badge Otevreno/Zavreno + mapa */
  .hours-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 12px; }
  .hours-head .hours-title { margin-bottom: 0; }
  .hours-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
  .hours-status.is-open { background: rgba(34,197,94,0.15); color: #4ade80; }
  .hours-status.is-closed { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
  .hours-status.is-closed .open-dot { background: var(--gray-400); animation: none; }
  .map-card { height: 100%; min-height: 300px; border-radius: 24px; overflow: hidden; border: 1.5px solid var(--gray-100); }
  .map-card iframe { display: block; width: 100%; height: 100%; min-height: 300px; }

  /* FOOTER */
  footer { background: var(--ocean); border-top: 1px solid rgba(14,184,165,0.1); padding: 42px 5% 28px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; gap: 36px; flex-wrap: wrap; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 10px; max-width: 280px; line-height: 1.6; }
  .footer-links { display: flex; gap: 44px; flex-wrap: wrap; }
  .footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 13px; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 8px; cursor: pointer; }
  .footer-col a:hover { color: var(--teal); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* MODAL */
  .modal-overlay { position: fixed; inset: 0; background: rgba(7,30,38,0.72); backdrop-filter: blur(4px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
  .modal-overlay.open { display: flex; }
  .modal { background: var(--white); border-radius: 20px; max-width: 540px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 30px; position: relative; }
  .modal-close { position: absolute; top: 16px; right: 16px; background: var(--gray-100); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 18px; cursor: pointer; color: var(--gray-600); }
  .modal-flag { font-size: 40px; }
  .modal h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin: 8px 0 4px; }
  .modal-sub { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
  .risk-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--gray-100); gap: 12px; }
  .risk-name { font-size: 14px; font-weight: 600; color: var(--gray-800); }
  .risk-vac { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
  .risk-vac.none { color: var(--amber); }

  .design-label { position: fixed; bottom: 18px; right: 18px; z-index: 150; background: rgba(14,184,165,0.9); color: white; padding: 7px 15px; border-radius: 30px; font-size: 12px; font-weight: 700; }
  .fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ───── RESPONZIVITA ───── */
  @media (max-width: 1024px) {
    .travel-destinations { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 860px) {
    .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--ocean); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 5%; display: none; border-bottom: 1px solid rgba(14,184,165,0.2); }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; }
    .nav-links .nav-cta { text-align: center; margin: 8px 0; }
    .nav-toggle { display: block; }
    .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 88px; }
    .news-grid, .services-grid { grid-template-columns: 1fr; }
    .travel-destinations { grid-template-columns: repeat(2, 1fr); }
    .price-services { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .alba-grid { grid-template-columns: repeat(2, 1fr); }
    .foto-grid { grid-template-columns: repeat(2, 1fr); }
    section { padding: 56px 5%; }
    /* placeholder fotky na celou sirku jsou prilis vysoke -> omezit a vycentrovat */
    .hero-photo-wrap { max-width: 380px; margin: 0 auto; }
    .about-photo { max-width: 340px; margin: 0 auto; }
  }
  @media (max-width: 460px) {
    .travel-destinations { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 18px; }
    .gt-card { padding: 28px; }
    .gt-card h2 { font-size: 23px; }
    .alba-grid { grid-template-columns: 1fr; }
    section { padding: 48px 5%; }
    /* mensi padding karet a modalu na uzkem displeji */
    .hours-card, .form-card, .modal { padding: 22px; }
    .modal h3 { font-size: 21px; }
    .lightbox { padding: 16px; }
    .lightbox-zavrit { top: 10px; right: 14px; }
    .clanek-telo { font-size: 15px; }
  }
