.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ════════════════════════════════════════
   UNION GRID — GLOBAL CSS
   Elementor › Nastavení stránky › Vlastní CSS
════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --white:       #FFFFFF;
  --black:       #000000;
  --ink:         #0A0A0A;
  --gold:        #C9A94D;
  --gold-soft:   #D9BD6B;
  --gold-deep:   #8A6F2A;
  --text-mid:    #444444;
  --text-light:  #6B6B6B;
  --border:      #E8E8E8;
  --border-d:    #1A1A1A;
  --surface:     #F6F6F6;
  --surface-2:   #FAFAFA;
  --h-pad:       60px;
  --max-w:       1280px;
  --mono:        'Space Grotesk', monospace;
}

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

/* ── BASE ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFFFFF;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(38px, 5.4vw, 72px); }
h2 { font-size: clamp(28px, 3.7vw, 48px); }
h3 { font-size: 18px; font-weight: 600; }
p  { line-height: 1.7; }

/* ── CONTAINER ── */
.ug-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--h-pad);
  padding-right: var(--h-pad);
  width: 100%;
}

/* ── SECTION LABEL (zlatý tag nad nadpismi) ── */
.ug-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ug-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.ug-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  border: none;
  background: none;
  font-family: inherit;
  position: relative;
}
.ug-btn::after {
  content: '→';
  transition: transform .25s ease;
}
.ug-btn:hover::after {
  transform: translateX(4px);
}

/* Dark border button */
.ug-btn-dark {
  border: 1px solid #000;
  color: #000;
}
.ug-btn-dark:hover {
  background: #000;
  color: #fff;
}

/* Gold border button */
.ug-btn-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.ug-btn-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* White outline (na tmavom pozadí) */
.ug-btn-white-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
}
.ug-btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* White solid (na tmavom pozadí) */
.ug-btn-white-solid {
  border: 1px solid #fff;
  background: #fff;
  color: #000;
}
.ug-btn-white-solid:hover {
  background: transparent;
  color: #fff;
}

/* Small variant */
.ug-btn-sm {
  padding: 10px 22px;
  font-size: 10px;
}

/* ── NAV / HEADER ── */
.ug-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 76px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s, height .3s;
}
.ug-nav.scrolled {
  height: 64px;
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.ug-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--h-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ug-nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.ug-nav-logo:hover img { opacity: .8; }

.ug-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.ug-nav-links > li { position: relative; }
.ug-nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
  cursor: pointer;
}
.ug-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.ug-nav-links a:hover::after,
.ug-nav-links a.active::after { width: 100%; }
.ug-nav-links a:hover,
.ug-nav-links a.active { color: var(--gold); }

/* Dropdown */
.ug-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -22px;
  background: #fff;
  border: 1px solid var(--border);
  min-width: 240px;
  list-style: none;
  margin: 0; padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 18px 48px rgba(0,0,0,.1);
  z-index: 100;
}
.ug-nav-links > li:hover .ug-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.ug-dropdown li a {
  display: block;
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s, padding-left .2s;
}
.ug-dropdown li:last-child a { border-bottom: none; }
.ug-dropdown li a:hover {
  background: var(--surface);
  color: var(--gold);
  padding-left: 28px;
}
.ug-dropdown li a::after { display: none; }

/* Language switch */
.ug-lang {
  display: flex;
  border: 1px solid #ddd;
}
.ug-lang-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 11px;
  cursor: pointer;
  border: none;
  border-right: 1px solid #ddd;
  background: transparent;
  color: #888;
  transition: all .15s;
  font-family: inherit;
}
.ug-lang-btn:last-child { border-right: none; }
.ug-lang-btn.active { background: #000; color: #fff; }
.ug-lang-btn:hover:not(.active) { background: #f5f5f5; }

/* Mobile burger */
.ug-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.ug-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #000;
  transition: all .3s;
}

/* Mobile menu */
.ug-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 76px;
  background: #fff;
  z-index: 9998;
  padding: 24px var(--h-pad);
  flex-direction: column;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.ug-mobile-menu.open { display: flex; }
.ug-mobile-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.ug-mobile-menu a.sub {
  font-size: 11px;
  padding: 12px 0 12px 20px;
  color: #888;
  letter-spacing: 1.5px;
}

/* ── FOOTER ── */
.ug-footer {
  background: #000;
  padding-top: 70px;
  padding-bottom: 36px;
  border-top: 1px solid #181818;
  position: relative;
  overflow: hidden;
}
.ug-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ug-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: 26px;
  position: relative;
}
.ug-footer-logo img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}
.ug-footer-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 26px;
}
.ug-cert-pill {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #2E2E2E;
  color: #666;
  padding: 5px 10px;
  margin: 3px 3px 3px 0;
}
.ug-ft-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}
.ug-ft-link {
  display: block;
  font-size: 12.5px;
  color: #888;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .15s;
  cursor: pointer;
}
.ug-ft-link:hover { color: var(--gold); }
.ug-footer-addr {
  font-size: 12.5px;
  color: #777;
  line-height: 1.8;
  margin-top: 14px;
}
.ug-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.ug-footer-copy {
  font-size: 11px;
  color: #555;
  letter-spacing: .3px;
}
.ug-footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ug-footer-legal a {
  font-size: 11px;
  color: #555;
  text-decoration: none;
  transition: color .15s;
  cursor: pointer;
}
.ug-footer-legal a:hover { color: var(--gold); }

/* Footer language switch */
.ug-footer-lang {
  display: flex;
  border: 1px solid #2E2E2E;
  margin-top: 18px;
}
.ug-footer-lang button {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  cursor: pointer;
  border: none;
  border-right: 1px solid #2E2E2E;
  background: transparent;
  color: #666;
  font-family: inherit;
  transition: all .15s;
}
.ug-footer-lang button:last-child { border-right: none; }
.ug-footer-lang button.active { background: #fff; color: #000; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --h-pad: 40px; }
  .ug-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  :root { --h-pad: 20px; }
  .ug-nav-links,
  .ug-nav .ug-lang,
  .ug-nav .ug-btn { display: none; }
  .ug-burger { display: flex; }
  .ug-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .ug-footer-bottom { flex-direction: column; align-items: flex-start; }
}/* End custom CSS */