/* ========================================
   STUDIO 60 — Design System
   Barlow + Barlow Condensed
   5-color brand: yellow, red, gold, blue, green
   ======================================== */

/* --- Variables & Base --- */
:root {
  --yellow: #FEDF00;
  --red:    #ED2024;
  --gold:   #D69829;
  --blue:   #066698;
  --green:  #6DBE45;
  --light:  #EEEEEE;
  --black:  #0f0f0f;
  --dark:   #161616;
  --border-dark: rgba(255,255,255,0.07);
  --bg-grey:  #f0f0f0;
  --bg-white: #ffffff;
  --text:     #111111;
  --text-mid: #444444;
  --text-muted: #888888;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px !important; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Bricks section reset — ALL sections full-width children */
.brxe-section {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  align-items: stretch !important;
}

/* All direct div children of sections = full width */
.brxe-section > .brxe-div {
  width: 100% !important;
}

/* Inner containers — hard override for content max-width */
.brxe-div.ls-inner {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.brxe-div.sec-contact-inner {
  max-width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ╔══════════════════════════════════════════╗
   ║  HERO — Libor: edituj tady               ║
   ║  Bricks fix: section align-items stretch  ║
   ╚══════════════════════════════════════════╝ */
.hero-section.brxe-section {
  align-items: stretch !important; /* Bricks section centruje children — tohle to ruší */
}

.hero-row.brxe-div {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6,
.brxe-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brxe-text-basic,
.brxe-text {
  font-family: 'Barlow', sans-serif;
}

/* ========================================
   NAV / HEADER — fixed, černý, logo + menu
   ======================================== */
.nav-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

/* Header — same max-width as content */
.nav-header .nav-inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* WP admin bar offset */
.admin-bar .nav-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .nav-header {
    top: 46px;
  }
}

.nav-header {
  background: var(--black) !important;
  border-bottom: 1px solid var(--border-dark);
  padding: 0 2rem !important;
  height: 40px;
  min-height: 40px !important;
  max-height: 40px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Header section Bricks fix — force row layout */
.nav-header.brxe-section {
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
}

.nav-logo-img img {
  height: 22px !important;
  width: auto !important;
  object-fit: contain;
}

/* Fix lazy-hidden + Safari visibility v headeru */
.nav-header,
.nav-header.bricks-lazy-hidden,
.nav-header .bricks-lazy-hidden {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Na mobilu (< 900px) — průhledný header, hamburger s modrou */
@media (max-width: 900px) {
  .nav-header .nav-logo-img { display: none !important; }
  .nav-header .nav-inner { padding: 0 !important; justify-content: flex-end !important; width: 100% !important; }
  .nav-header .bricks-mobile-menu-toggle { margin-left: auto; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
  .nav-header {
    justify-content: flex-end !important;
    height: 40px;
    min-height: 40px !important;
    padding: 0 !important;
    background: transparent !important;
    border-bottom: none !important;
  }
  .nav-header .bricks-mobile-menu-toggle {
    color: var(--light) !important;
  }
  .nav-header .bricks-mobile-menu-wrapper a {
    color: var(--blue) !important;
  }
}

.nav-links {
  display: flex !important;
  gap: 2rem;
  align-items: center;
}

/* Nav menu element */
.nav-menu-el .bricks-nav-menu {
  white-space: nowrap !important;
}

.nav-menu-el .bricks-nav-menu a {
  color: var(--light) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap !important;
  padding: 0 0.5rem !important;
}

.nav-menu-el .bricks-nav-menu a:hover {
  opacity: 1;
  color: var(--yellow) !important;
}

.nav-links .brxe-text-basic a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links .brxe-text-basic a:hover,
.nav-links a:hover { opacity: 1; }

.nav-links .brxe-text-basic a:hover::after,
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav CTA */
.nav-cta .brxe-button {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 5px !important;
  border: none !important;
  transition: background 0.15s, transform 0.1s;
}

.nav-cta .brxe-button:hover {
  background: #ffe733 !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-header .bricks-mobile-menu-toggle {
  color: var(--blue) !important;
}

.nav-header .bricks-mobile-menu-wrapper {
  background: var(--black) !important;
}

.nav-header .bricks-mobile-menu-wrapper a {
  color: var(--blue) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  HERO SECTION — Libor edituje                                ║
   ║                                                              ║
   ║  Struktura (Bricks elementy):                                ║
   ║  section.hero-section                                        ║
   ║    └ div.hero-row  (flex row, items bottom-aligned)          ║
   ║        ├ div.hero-left  (42% šířky, pruhy dole)              ║
   ║        │   └ img.hero-barvy-img  (Barvy-hlavicka.png)        ║
   ║        └ div.hero-right  (zbytek, logo+claim centered)       ║
   ║            ├ img.hero-logo  (Studio60 logo bílé PNG)         ║
   ║            ├ h1.hero-claim  ("KDYŽ VIZE PROMLUVÍ.")          ║
   ║            ├ div.hero-sub  (subtitle — HIDDEN)               ║
   ║            └ div.hero-btns  (buttony — HIDDEN)               ║
   ║                                                              ║
   ║  Background: hero-bg-pattern.png (siluety lidí)              ║
   ║  Overlay: ::before pseudo s rgba černou                      ║
   ║                                                              ║
   ║  Reference: /tmp/hero-reference.png                          ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* --- Hero: hlavní kontejner --- */
.hero-section {
  height: clamp(300px, 36vw, 600px);
  min-height: 300px;
  background: var(--black) url('https://studio60.cz/wp-content/uploads/2026/03/hero-bg-pattern-1.png') no-repeat !important;
  background-position: center bottom !important;
  background-size: auto clamp(250px, 32vw, 90%) !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}

/* --- Hero: overlay přes siluety --- */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1;
}

/* --- Hero: row (two columns) --- */
.hero-row {
  display: flex !important;
  height: 100%;
  width: 100% !important;
  align-self: center;
  justify-content: flex-start;
  padding: 0 !important;
  position: relative;
  z-index: 2;
}

/* --- Hero: left column (pruhy) --- */
.hero-left {
  flex: 0 0 auto;
  align-self: flex-end;
  height: clamp(250px, 65%, 500px);
}

img.hero-barvy-img,
.hero-barvy-img img,
.hero-barvy-img.brxe-image {
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  display: block;
  object-fit: contain;
  object-position: left bottom;
}

/* --- Hero: right column (logo + claim) — fills remaining space --- */
.hero-right {
  display: flex !important;
  flex-direction: column;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 auto;
}

/* --- Hero: logo --- */
img.hero-logo,
.hero-logo img,
.hero-logo.brxe-image {
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  object-fit: contain;
  margin-bottom: 16px;
}

/* --- Hero: claim --- */
.hero-claim.brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: var(--light) !important;
  width: 100% !important;
  text-align: center !important;
  font-size: clamp(3rem, 4vw, 4rem) !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap;
  margin-bottom: 3rem;
}

.hero-claim .accent-blue { color: var(--blue) !important; }
.hero-claim .accent-yellow { color: var(--yellow) !important; }
.hero-claim .accent-red { color: var(--red) !important; }
.hero-claim .accent-green { color: var(--green) !important; }
.hero-claim .accent-gold { color: var(--gold) !important; }
.hero-claim.brxe-heading .accent-blue { color: var(--blue) !important; }
.hero-claim.brxe-heading .accent-yellow { color: var(--yellow) !important; }
.hero-claim.brxe-heading .accent-red { color: var(--red) !important; }
.hero-claim.brxe-heading .accent-green { color: var(--green) !important; }
.hero-claim.brxe-heading .accent-gold { color: var(--gold) !important; }

/* --- Hero: subtitle + buttony (viditelné) --- */
.hero-sub.brxe-text-basic { display: none !important; }
.hero-btns { display: none !important; }

/* ╚══ KONEC HERO SEKCE ══╝ */

/* ========================================================================
   SEKCE POD HERO — Kompletní redesign v2
   Base: 20px body text, 1200px max-width, konzistentní spacing
   ======================================================================== */

/* --- Shared Button Styles --- */
.btn-yellow .brxe-button,
a.btn-yellow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2.2rem !important;
  border-radius: 5px !important;
  border: none !important;
  text-decoration: none !important;
  transition: transform 0.15s, background 0.15s;
}

.btn-yellow .brxe-button:hover,
a.btn-yellow:hover {
  background: #ffe733 !important;
  transform: translateY(-2px);
}

.btn-outline .brxe-button,
a.btn-outline {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: transparent !important;
  color: var(--light) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2.2rem !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}

.btn-outline .brxe-button:hover,
a.btn-outline:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.04) !important;
  transform: translateY(-2px);
}

/* --- Pillars Strip --- */
.pillars-strip {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  border-top: 1px solid var(--border-dark);
}

.pillar-item {
  display: flex !important;
  align-items: center;
  gap: 1.1rem;
  padding: 1.6rem 1.8rem !important;
  border-right: 1px solid var(--border-dark);
  color: var(--light);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pillar-item:last-child { border-right: none; }

.pillar-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.pillar-item:hover { background: rgba(255,255,255,0.03); }
.pillar-item:hover::before { transform: scaleX(1); }

.pi-tv::before  { background: var(--red); }
.pi-mkt::before { background: var(--yellow); }
.pi-dev::before { background: var(--blue); }

.pi-num .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 2.2rem !important;
  line-height: 1 !important;
  flex-shrink: 0;
  min-width: 2rem;
}

.pi-tv .pi-num .brxe-heading  { color: var(--red) !important;    opacity: 0.2; }
.pi-mkt .pi-num .brxe-heading { color: var(--yellow) !important; opacity: 0.2; }
.pi-dev .pi-num .brxe-heading { color: var(--blue) !important;   opacity: 0.2; }

.pi-label .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: var(--light) !important;
  margin-bottom: 0.2rem;
}

.pi-desc .brxe-text-basic {
  font-size: 1.05rem !important;
  color: rgba(238,238,238,0.38) !important;
  line-height: 1.4 !important;
}

.pi-arrow .brxe-text-basic {
  margin-left: auto;
  opacity: 0.2;
  font-size: 1rem !important;
  color: var(--light) !important;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.pillar-item:hover .pi-arrow .brxe-text-basic {
  opacity: 0.8;
  transform: translateX(4px);
}

/* ========================================
   COLOR DIVIDER
   ======================================== */
.divider {
  height: 5px;
  display: flex !important;
}

.divider .brxe-div { flex: 1; }
.dv-yellow { background: var(--yellow) !important; }
.dv-red    { background: var(--red) !important; }
.dv-gold   { background: var(--gold) !important; }
.dv-blue   { background: var(--blue) !important; }
.dv-green  { background: var(--green) !important; }

/* ========================================
   SECTIONS — Unified Design v2

   Pravidla:
   - Vše 1200px max-width, centrované
   - Body text 1.1rem minimum
   - H2 nadpisy 3-5rem
   - Karty: JEDEN styl (border-top, 14px radius)
   - Konzistentní padding 120px vertikálně
   ======================================== */
.ls {
  background: var(--bg-grey) !important;
  color: var(--text);
  position: relative;
  overflow: hidden;
  padding: 120px 0 !important;
  font-size: 1.1rem;
}

.ls.white { background: var(--bg-white) !important; }

/* Watermark */
.ls-wm .brxe-heading {
  position: absolute !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(6rem, 18vw, 16rem) !important;
  text-transform: uppercase !important;
  color: rgba(0,0,0,0.025) !important;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1 !important;
  z-index: 0;
}

/* Inner container — ALL content constrained to 1200px */
.ls-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 40px;
}

/* Eyebrow */
.ls-eyebrow .brxe-text-basic {
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px;
  display: block;
  color: var(--text-muted) !important;
}

/* Section H2 */
.ls-h2 .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(3rem, 6vw, 4.5rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  color: var(--text) !important;
  margin-bottom: 20px;
  line-height: 0.95 !important;
}

/* Lead / description text */
.ls-lead .brxe-text-basic {
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.2rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.8 !important;
  color: var(--text-mid) !important;
  max-width: 700px;
  margin-bottom: 10px;
}

/* Accent heading (Kdo jsme values) */
.ls-accent .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: var(--blue) !important;
  line-height: 1.3 !important;
  margin-top: 40px;
}

/* Per-section heading colors */
/* AETV section — white bg, cream cards, dark teal text */
.sec-tv,
.ls.white.sec-tv,
.ls.sec-tv {
  background: #fff !important;
  color: #1a2528 !important;
}

.sec-tv .ls-wm .brxe-heading { color: rgba(0,0,0,0.03) !important; }

.sec-tv .ls-h2 .brxe-heading {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 600 !important;
  color: #1a2528 !important;
  letter-spacing: 0.08em !important;
}

.sec-tv .ls-eyebrow .brxe-text-basic { color: #c8960c !important; }

.sec-tv .ls-lead .brxe-text-basic { color: #3a4548 !important; }

.sec-tv .tile,
.ls.white.sec-tv .tile { background: #ede8e3 !important; border-color: #d5cfc9 !important; border-top-color: #c8960c !important; }
.sec-tv .tile:hover { border-color: #c8960c !important; }
.sec-tv .tile-icon .brxe-text-basic { color: #c8960c !important; }
.sec-tv .tile-icon img { filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(0.9) !important; }
.sec-tv .tile-title .brxe-heading { color: #1a2528 !important; }
.sec-tv .tile-body .brxe-text-basic { color: #3a4548 !important; }
.sec-mkt .ls-h2 .brxe-heading   { color: #a07010 !important; }
.sec-mkt .ls-eyebrow .brxe-text-basic { color: var(--gold) !important; }
.sec-dev .ls-h2 .brxe-heading   { color: var(--blue) !important; }
.sec-dev .ls-eyebrow .brxe-text-basic { color: var(--blue) !important; }

.ls-center { text-align: center; }
.ls-center .ls-lead .brxe-text-basic { margin-left: auto; margin-right: auto; }

/* ========================================
   TILE SYSTEM — větší, vzdušnější
   ======================================== */
.tile-grid-2 { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.tile-grid-3 { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.tile-grid-4 { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }

.tile {
  background: var(--bg-white) !important;
  border-radius: 14px;
  padding: 36px 30px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid var(--text);
  position: relative;
  overflow: hidden;
}

.ls.white .tile { background: #f5f5f5 !important; }
.tile:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.tile.c-red    { border-top-color: var(--red); }
.tile.c-yellow { border-top-color: var(--yellow); }
.tile.c-blue   { border-top-color: var(--blue); }
.tile.c-green  { border-top-color: var(--green); }
.tile.c-gold   { border-top-color: var(--gold); }

.tile-icon .brxe-text-basic {
  font-size: 2.2rem !important;
  margin-bottom: 18px;
  display: block;
}

.tile-title .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
  margin-bottom: 10px;
}

.tile-body .brxe-text-basic {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--text-mid) !important;
}

.tile-tags {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tile-tag .brxe-text-basic {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: rgba(0,0,0,0.06);
  color: var(--text-muted) !important;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* Wide tile (CTA bar) */
.tile-wide {
  background: var(--text) !important;
  color: var(--light) !important;
  border-radius: 14px;
  padding: 28px 36px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tile-wide-label .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--yellow) !important;
  margin-bottom: 4px;
}

.tile-wide-sub .brxe-text-basic {
  font-size: 1rem !important;
  color: rgba(238,238,238,0.55) !important;
}

.tile-wide-btn .brxe-button {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--yellow) !important;
  color: var(--text) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  transition: background 0.2s, transform 0.15s;
}

.tile-wide-btn .brxe-button:hover { background: #ffe733 !important; transform: translateY(-2px); }

/* ========================================
   PHOTO TILES (TEAM) — větší, elegantnější
   ======================================== */
.photo-tile {
  background: var(--bg-white) !important;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-tile:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.photo-tile-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid var(--yellow);
  overflow: hidden;
}

.photo-tile-img .brxe-text-basic {
  font-size: 3.5rem !important;
  opacity: 0.2;
}

.photo-tile-name .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
  padding: 18px 20px 20px !important;
  text-align: center;
}

/* ========================================
   REVIEW TILES — větší, čitelnější
   ======================================== */
.review-tile {
  background: var(--bg-white) !important;
  border-radius: 14px;
  padding: 32px 28px !important;
  transition: transform 0.25s ease;
}

.review-tile:hover { transform: translateY(-4px); }

.review-stars .brxe-text-basic { color: #c8a800 !important; font-size: 1.2rem !important; margin-bottom: 14px; }
.review-text .brxe-text-basic { font-size: 1.05rem !important; line-height: 1.75 !important; color: var(--text-mid) !important; font-style: italic; margin-bottom: 18px; }
.review-author .brxe-text-basic {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
}

/* ========================================
   POSITIONS LIST — větší
   ======================================== */
.poz-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex !important;
  align-items: center;
  gap: 16px;
}

.poz-num .brxe-text-basic {
  font-weight: 900 !important;
  color: rgba(0,0,0,0.15) !important;
  min-width: 2rem;
  font-size: 1.3rem !important;
}

.poz-btn .brxe-button {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--text) !important;
  color: var(--light) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 36px !important;
  margin-top: 32px;
  transition: background 0.2s, transform 0.15s;
}

.poz-btn .brxe-button:hover { background: #333 !important; transform: translateY(-2px); }

/* ========================================
   PRO KOHO — CARDS — větší, výraznější border
   ======================================== */
.pk-card {
  background: var(--bg-white) !important;
  border-radius: 14px;
  padding: 36px 30px !important;
  border-left: 5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ls.white .pk-card { background: #f5f5f5 !important; }
.pk-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }

.pk-c1 { border-left-color: var(--yellow); }
.pk-c2 { border-left-color: var(--blue); }
.pk-c3 { border-left-color: var(--green); }
.pk-c4 { border-left-color: var(--red); }

.pk-label .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px;
}

.pk-c1 .pk-label .brxe-heading { color: #9a8700 !important; }
.pk-c2 .pk-label .brxe-heading { color: var(--blue) !important; }
.pk-c3 .pk-label .brxe-heading { color: #3e7028 !important; }
.pk-c4 .pk-label .brxe-heading { color: var(--red) !important; }

.pk-text .brxe-text-basic { font-size: 1rem !important; line-height: 1.75 !important; color: var(--text-mid) !important; }

/* ========================================
   COOKIE CONSENT — brand styled
   ======================================== */
#cc-main .cm {
  font-family: 'Barlow', sans-serif !important;
  background: var(--black) !important;
  color: var(--light) !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 12px !important;
}

#cc-main .cm__title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--yellow) !important;
}

#cc-main .cm__desc {
  color: rgba(238,238,238,0.6) !important;
}

#cc-main .cm__btn {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  border-radius: 6px !important;
}

#cc-main .cm__btn:first-child {
  background: var(--green) !important;
  color: #fff !important;
}

#cc-main .cm__btn:first-child:hover {
  background: #5ca83a !important;
}

#cc-main .cm__btn--secondary {
  background: transparent !important;
  color: var(--light) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
}

#cc-main .cm__btn--secondary:last-child {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
}

#cc-main .cm__btn--secondary:hover {
  border-color: rgba(255,255,255,0.5) !important;
}

#cc-main .cm__btn--secondary:last-child:hover {
  background: #055580 !important;
}

#cc-main .pm {
  font-family: 'Barlow', sans-serif !important;
  background: #fff !important;
  color: var(--text) !important;
}

#cc-main .pm__title {
  font-family: 'Barlow Condensed', sans-serif !important;
  color: var(--text) !important;
}

#cc-main .pm__section-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  color: var(--text) !important;
}

#cc-main .pm__section-desc {
  color: var(--text-mid) !important;
}

#cc-main .pm__btn {
  background: var(--green) !important;
  color: #fff !important;
}

#cc-main .pm__btn:hover {
  background: #5ca83a !important;
}

#cc-main .pm__btn--secondary {
  background: transparent !important;
  color: var(--text) !important;
  border: 1px solid rgba(0,0,0,0.2) !important;
}

#cc-main .pm__btn--secondary:hover {
  border-color: rgba(0,0,0,0.4) !important;
}

/* ========================================
   KONTAKT (dark section) — větší, vzdušnější
   ======================================== */
.sec-contact {
  background: #0c0c0c !important;
  border-top: 5px solid var(--yellow);
  padding: 8rem 3.5rem !important;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute !important;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,223,0,0.04) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sec-contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-h2 .brxe-heading {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(3rem, 7vw, 5.5rem) !important;
  line-height: 0.93 !important;
  text-transform: uppercase !important;
  margin-bottom: 1.5rem;
  color: var(--light) !important;
}

.contact-h2 span { color: var(--yellow); }

.contact-p .brxe-text-basic {
  font-size: 1.15rem !important;
  color: rgba(238,238,238,0.45) !important;
  line-height: 1.7 !important;
  margin-bottom: 3rem;
}

/* Form styling */
.sec-contact .brxe-form { text-align: left; }

.sec-contact .brxe-form .form-group input,
.sec-contact .brxe-form .form-group textarea,
.sec-contact .brxe-form .form-group select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 1rem 1.2rem !important;
  color: var(--light) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 1rem !important;
  transition: border-color 0.2s, background 0.2s;
}

.sec-contact .brxe-form .form-group input:focus,
.sec-contact .brxe-form .form-group textarea:focus,
.sec-contact .brxe-form .form-group select:focus {
  outline: none;
  border-color: rgba(254,223,0,0.45) !important;
  background: rgba(254,223,0,0.03) !important;
}

.sec-contact .brxe-form .form-group input::placeholder,
.sec-contact .brxe-form .form-group textarea::placeholder {
  color: rgba(238,238,238,0.25);
}

.sec-contact .brxe-form button[type="submit"] {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 1.1rem !important;
  border-radius: 8px !important;
  border: none !important;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.sec-contact .brxe-form button[type="submit"]:hover {
  background: #ffe733 !important;
  transform: translateY(-2px);
}

.form-note .brxe-text-basic {
  text-align: center;
  font-size: 0.9rem !important;
  color: rgba(238,238,238,0.25) !important;
  margin-top: 0.8rem;
}

/* ========================================
   FOOTER — čistý
   ======================================== */
.site-footer {
  background: var(--black) !important;
  border-top: 1px solid var(--border-dark);
  padding: 2rem 3.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo-img img {
  height: 28px !important;
  width: auto !important;
  object-fit: contain;
}

.footer-copy .brxe-text-basic {
  font-size: 0.9rem !important;
  color: rgba(238,238,238,0.25) !important;
}

.footer-links {
  display: flex !important;
  gap: 1.6rem;
}

.footer-links .brxe-text-basic a {
  font-size: 0.9rem;
  color: rgba(238,238,238,0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links .brxe-text-basic a:hover { color: var(--light); }

/* ========================================
   HIDDEN SECTIONS
   ======================================== */
.sec-hidden { display: none !important; }

/* ========================================
   SCROLL REVEAL — plynulejší
   ======================================== */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.bricks-builder-iframe .rv {
  opacity: 1 !important;
  transform: none !important;
}

/* ========================================
   RESPONSIVE — Tablet (max 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .ls { padding: 70px 5% !important; }
  .tile-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tile-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .sec-contact { padding: 5rem 2rem !important; }
  .site-footer { flex-direction: column; text-align: center; padding: 2rem !important; }
}

/* ========================================
   RESPONSIVE — Hero single column (max 900px)
   ======================================== */
@media (max-width: 900px) {
  .hero-section { min-height: auto; height: auto; }
  .hero-row { flex-direction: column; align-items: center; padding: 1rem 1rem 0 !important; gap: 0; height: auto; min-height: auto; }
  .hero-left { flex: 0 0 auto; align-self: stretch; order: 2; height: auto; min-height: auto; }
  .hero-right { order: 1; padding-bottom: 0.5rem; padding-left: 0 !important; height: auto; min-height: auto; align-items: center; flex: 0 0 auto; }
  img.hero-barvy-img, .hero-barvy-img.brxe-image { width: 100% !important; height: auto !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
  .hero-left { padding: 0 !important; margin: 0 !important; }
  img.hero-logo, .hero-logo.brxe-image { min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
  .ls-inner { padding: 0 16px !important; }
}

/* ========================================
   RESPONSIVE — Mobile (max 768px)
   ======================================== */
@media (max-width: 768px) {
  .hero-claim.brxe-heading { font-size: clamp(2.2rem, 6vw, 3.5rem) !important; white-space: normal !important; }

  .ls { padding: 60px 6% !important; }
  .ls-h2 .brxe-heading { font-size: 2.5rem !important; }
  .tile-grid-2, .tile-grid-3, .tile-grid-4 { grid-template-columns: 1fr !important; }
  .tile-wide { flex-direction: column; text-align: center; padding: 24px !important; }

  .sec-contact { padding: 4rem 1.5rem !important; }
  .contact-h2 .brxe-heading { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  .site-footer { padding: 1.5rem !important; gap: 0.8rem; }
}

/* ========================================
   RESPONSIVE — Small Mobile (max 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero-claim.brxe-heading { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
  .ls { padding: 48px 5% !important; }
  .ls-h2 .brxe-heading { font-size: 2rem !important; }
  .tile { padding: 28px 22px !important; }
}
