/* =========================================
   ziadny Bootstrap, ziadne externe kniznice
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* --clr-button1:   #FF0000;
  color: var(--clr-button1);
  */
  --clr-primary:   #000000;
  --clr-primary2:  #ffffff;
  --clr-accent:    #ff0000;
  /* Cervene hlavna farba buttonov */
  --clr-accent2:   #b80000;
  /* visnova */
  --clr-bg:        #ffffff;
  --clr-bg2:       #ffffff;
  /* predtym seda #f7f5f2 */
  --clr-bg3:       #000000;
  --clr-text:      #2d2d2d;
  --clr-muted:     #6b6b6b;
  --clr-border:    gray;
  /* #e2ddd7;
  */
  --font-sans:     'Roboto', 'Inter', system-ui, -apple-system, sans-serif;
  --font-head:     'Roboto', 'Playfair Display', Georgia, serif;
  --font-size1:    1.2rem;
  --font-size2:    1rem;
  --max-w:         1250px;
  --radius:        0;
  --shadow:        0 2px 16px rgba(0,0,0,.08);
  --transition:    .25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size1);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* --- Typografia --- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.25;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
}
h2 {
  font-size: clamp(1.8rem, 1.6vw, 1.8rem);
  font-weight: 400;
  margin-bottom:2rem;
}
h3 {
  font-size: clamp(1.6rem, 2.6vw, 1.9rem);
  font-weight: 500;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
p  {
  margin-bottom: 1rem;
}
a  {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-primary);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  padding-left: 1.5rem;
}
.container    {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
.container2   {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 780px) {
  .section {
  padding: 3rem 0;
}
}
.section2     {
  padding: 0;
  border-top:1px solid var(--clr-primary2);
}
.section--alt {
  background: var(--clr-bg2);
}
.section--gal, .section--cierna
              {
  background: var(--clr-bg3);
  color: var(--clr-primary2);
}
.text-center  {
  text-align: center;
}
.text-muted   {
  color: var(--clr-muted);
}
.lead--center {
  margin: 2rem auto 0 auto;
}
@media (max-width: 768px) {
  .lead--center {
  text-align: justify;
}
}
.section-title {
  margin-bottom: .75rem;
}
.section-subtitle {
  margin-bottom: 3rem;
}

@media (max-width: 480px) {
  .section {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
}


/* --- Tlacidla --- */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--font-size1);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent2);
  border-color: var(--clr-accent2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.22);
}
.btn-outline {
  background: var(--clr-bg2);
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: #fff;
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--clr-primary);
}

/* =========================================
   HEADER & NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.site-header .container2 {
  position: relative;
  padding-left: calc(1.25rem + 90px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  gap: 1rem;
}
.navbar-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.25rem;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.nav-toggle {
  grid-column: 3;
  justify-self: end;
}

/* Male cierne logo vlavo v menu */
.logo1 {
  width: 100px;
  height: 100px;
  border: 2px solid #000;
  background-color: transparent;
  color: #000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin-left:0;
}
/* Male biele logo vlavo v menu */
.logo1-biele {
  border: 1px solid #BEBEBE;
  color: #BEBEBE;
  margin-left:0;
}
@media screen and (max-width:900px){
  .logo1 {
    font-size: 1.0rem;
    border-width:2px;
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width:800px){
  .logo1 {
    font-size: 0.8rem;
    border-width:2px;
    width: 54px;
    height: 54px;
  }
}
@media screen and (max-width:600px){
  .logo1 {
    font-size:0.7rem;
    border-width:2px;
    width: 50px;
    height: 50px;
  }
}
/*
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.site-logo img {
  height: 38px;
  width: auto;
}
.site-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}
.site-logo-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  font-family: var(--font-sans);
  font-weight: 500;
}
*/


/* Hlavna navigacia */
.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav a {
  color: var(--clr-text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: .45rem .7rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--clr-accent2);
  background: var(--clr-bg2);
}
.site-subnav a.nav-cta { 
  background: var(--clr-accent);
  color: #fff;
  padding: .45rem 1.1rem;
  margin-left: .5rem;
}
.site-subnav a.nav-cta:hover {
  background: var(--clr-accent2);
  color: #ffffff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 0;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  opacity: .55;
  will-change: transform;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(10,10,10,.7)  40%,rgba(10,10,10,.3));
  background: linear-gradient(135deg,rgba(10,10,10,.45) 40%,rgba(10,10,10,.2));
  /* prva hodnota=tmavsia cast vlavo hore, druha h=svetlo vpravo dole */
  border-bottom:1px solid #ffffff;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
p.hero-lead {
  font-size: 1.6rem;
  color: rgba(255,255,255,.85);
  margin: 0 auto 2rem;
  max-width: 900px;
}
@media (max-width: 768px) {
  p.hero-lead {
  padding-top:2rem;
  font-size: 1.2rem;
}
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-tag {
  display: inline-block;
  background: var(--clr-accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

/* Domovska hero sekcia: vyrazna fotografia a citatelny textovy panel */
.hero.hero--home {
  min-height: clamp(570px, 78vh, 820px);
  align-items: center;
}
.hero--home .hero-bg {
  opacity: 1;
}
.hero--home .hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.04) 60%, rgba(0,0,0,.12));
}
.hero--home .container {
  display: flex;
  justify-content: flex-start;
}
.hero-content--panel {
  width: min(620px, 58vw);
  max-width: none;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 3rem);
  background: rgba(145, 0, 0, .86);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
  text-align: left;
  backdrop-filter: blur(2px);
}
.hero-content--panel .hero-kicker {
  display: block;
  margin-bottom: .8rem;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-content--panel h1 {
  max-width: 540px;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 3.3vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}
.hero-content--panel p.hero-lead {
  max-width: 520px;
  margin: 0 0 1.6rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
}
.hero-content--panel .hero-actions {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: .75rem;
}
.hero-content--panel .hero-actions .btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  padding-inline: .75rem;
  text-align: center;
  white-space: nowrap;
}
.hero-btn-light {
  border: 2px solid #fff;
  background: #fff;
  color: #111;
}
.hero-btn-light:hover,
.hero-btn-light:focus-visible {
  border-color: #111;
  background: #111;
  color: #fff;
}
@media (max-width: 768px) {
  .hero.hero--home {
    min-height: 68svh;
    padding: 1rem 0;
  }
  .hero--home .container {
    align-items: flex-end;
  }
  .hero-content--panel {
    width: 100%;
    padding: 1.5rem;
    background: rgba(125, 0, 0, .60);
  }
  .hero--home .hero-content--panel h1 {
    margin-bottom: .8rem;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .hero-content--panel p.hero-lead {
    padding-top: 0;
    font-size: 1.05rem;
  }
}

/* Uzke mobily: nechame vyniknut fotografiu a panel ponechame iba ako kratky titulok */
@media (max-width: 480px) {
  .hero.hero--home {
    min-height: clamp(430px, 58svh, 540px);
    padding: 1rem 0 1.25rem;
    align-items: flex-end;
  }
  .hero--home .container {
    align-items: flex-end;
  }
  .hero--home .hero-bg {
    object-position: center 38%;
  }
  .hero--home .hero-content--panel {
    width: calc(100% - 1.5rem);
    margin: 0 auto;
    padding: 1.15rem 1.25rem;
    background: #ff0000;
  }
  .hero--home .hero-kicker {
    display: none;
  }
  .hero--home .hero-actions {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    margin-top: 1rem;
  }
  .hero--home .hero-content--panel .hero-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: .6rem .45rem;
    font-size: .82rem;
    line-height: 1.2;
    white-space: normal;
  }
  .hero--home .hero-content--panel .hero-actions .btn-primary {
    border-color: #000;
    background: #000;
    color: #fff;
  }
  .hero--home .hero-content--panel .hero-actions .btn-primary:hover,
  .hero--home .hero-content--panel .hero-actions .btn-primary:focus-visible {
    border-color: #222;
    background: #222;
  }
  .hero--home .hero-content--panel h1 {
    margin-bottom: .65rem;
    font-size: clamp(1.8rem, 9vw, 2.25rem);
    line-height: 1.08;
  }
  .hero--home .hero-content--panel p.hero-lead {
    margin: 0;
    font-size: .98rem;
    line-height: 1.4;
  }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 55%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: #000000;
  font-size: 0.95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #000000;
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0%   {
  transform: scaleY(0);
  transform-origin: top;
}
  50%  {
  transform: scaleY(1);
  transform-origin: top;
}
  51%  {
  transform: scaleY(1);
  transform-origin: bottom;
}
  100% {
  transform: scaleY(0);
  transform-origin: bottom;
}
}


/* =========================================
   REFERENCIE / REVIEWS
   ========================================= */
.reviews-grid {
  margin:0 auto;
  text-align:center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.review-card {
  background: var(--clr-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .review-card {
  padding-left: 0;
  padding-right: 0;
}
}

.review-card blockquote {
  font-style: italic;
  color: var(--clr-muted);
  border-left: 3px solid var(--clr-accent);
  padding-left: 1rem;
  font-size: var(--font-size1);
  text-align: justify;
  line-height: 1.75;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
}
.review-author-name {
  font-weight: 700;
  font-size: var(--font-size1);
}
.review-author-title {
  font-size: .82rem;
  color: var(--clr-muted);
}
.stars {
  color: var(--clr-accent);
  font-size: 1rem;
  letter-spacing: .1em;
}


/* Home page - tmave pozadie pod referenciami */
.section--rec {
  background: #000000;
  color: #ffffff;
  padding-top:2rem;
  border-top:1px solid #ffffff;
}

.section--rec .section-title {
  color: #ffffff;
}

.section--rec .section-subtitle {
  color: rgba(255,255,255,.78);
}

.section--rec .review-card {
  background: #000;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.30);
}

.section--rec .review-card blockquote {
  color: rgba(255,255,255,.78);
  border-left: 3px solid var(--clr-accent);
}

.section--rec .review-author-name {
  color: #fff;
}

.section--rec .review-author-title {
  color: rgba(255,255,255,.58);
}

.section--rec .review-author img {
  border-color: rgba(255,255,255,.25);
}

.section--rec .btn-outline {
  background: #000;
  color: #fff;
  border-color: var(--clr-accent);
}

.section--rec .btn-outline:hover {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

/* =========================================
   GALERIA
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
@media (max-width: 480px) {
  .gallery-grid {grid-template-columns: 1fr;}
  .reviews-grid {grid-template-columns: 1fr;}
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  background: var(--clr-bg2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  padding: 1.5rem 1rem .85rem;
  font-size: .82rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}


/* Codex fix: biely titulkovy pas nad galeriou */
.section--gal > .container > .text-center:first-child {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #000000;
  padding: 2rem 1rem;
}
.section--gal > .container > .text-center:first-child .section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.section--gal > .container > .text-center:first-child p {
  display: none;
}
.section--gal > .container > .text-center:not(:first-child) {
  background: transparent;
  color: #ffffff;
}
@media (max-width: 768px) {
  .section--gal > .container > .text-center:first-child {
  padding: 1.6rem 1rem;
}
}

/* index.php - Galeria na ciernom pozadÄ‚Â­ obrazky bez medzier, s 1px bielou linkou */
.section--gal .container{
  padding:0;
}
.section--gal .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 0px solid #fff;
  border-left: 0px solid #fff;
}
.section--gal .gallery-item {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
  /* prava a spodna border kazdeho obrazka */
  border-right: 0px solid #fff;
  border-bottom: 0px solid #fff;
}
.section--gal .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
.section--gal .btn-outline {
  background: #000;
  color: #fff;
  border-color: var(--clr-accent);
}

@media (max-width: 768px) {
  .section--gal .gallery-grid {grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 480px) {
  .section--gal .gallery-grid {grid-template-columns: 1fr;}
}





/* =========================================
   POSTUP KROKY
   ========================================= */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.step-body p {
  text-align:justify;
}
.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--clr-border);
  counter-increment: step;
}
.step-item:last-child {
  border-bottom: none;
}
.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 {
  margin-bottom: .4rem;
  font-size: 1.1rem;
}
.configurator-callout {
  margin: 0 0 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-accent);
  background: #f7f7f5;
}
.configurator-callout__label {
  margin: 0 0 .5rem;
  color: var(--clr-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.configurator-callout h2 {
  margin: 0 0 .75rem;
}
.configurator-callout p:not(.configurator-callout__label) {
  margin: 0 0 1.25rem;
}
.configurator-callout .btn {
  margin-top: .25rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  list-style: none;
  padding: 0;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size1);
  font-weight: 600;
  color: var(--clr-primary);
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--clr-accent2);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-accent);
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--clr-muted);
  font-size: var(--font-size1);
}
.faq-item.open .faq-answer {
  display: block;
}

/* =========================================
   KONTAKT
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  margin-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--font-size1);
}
.contact-info li:last-child {
  border-bottom: none;
}
.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--clr-bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-label {
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-muted);
  display: block;
}
.contact-form {
  background: var(--clr-bg2);
  padding: 2rem;
  border-radius: var(--radius);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--clr-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: var(--font-size1);
  background: #fff;
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Mapa */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  margin-top: 2.5rem;
}
.map-wrapper a {
  display: block;
}
.map-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: opacity var(--transition);
}
.map-wrapper a:hover img {
  opacity: .85;
}
.map-label {
  background: var(--clr-bg2);
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* =========================================
   KLIENTI
   ========================================= */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-muted);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}
.client-logo:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent2);
  background: #fff;
}

/* =========================================
   PODKLADY
   ========================================= */
.section-pod h2 {
  text-align: center;
}
.section-pod p {
  text-align: justify;
}
.podklady-box {
  background: var(--clr-bg);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 640px;
  margin: 2.5rem auto;
  text-align: center;
}
.podklady-box h3 {
  margin-bottom: .75rem;
}

/* =========================================
   VIDEA
   ========================================= */
.section-vid {
  border-bottom:1px solid #ffffff;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg2);
  gap: .75rem;
  font-size: .9rem;
  color: var(--clr-muted);
}
.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .video .container{ padding:0; }
}




/* =========================================
   GDPR
   ========================================= */
.gdpr-content {
  max-width: 860px;
  margin: 0 auto;
}
.gdpr-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.gdpr-content h3 {
  margin-top: 1.75rem;
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.gdpr-content p {
  font-size: var(--font-size1);
}
.gdpr-content ul {
  margin-bottom: 1.2rem;
}
.gdpr-content ul li {
  margin-bottom: .4rem;
  font-size: var(--font-size1);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--clr-primary);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo-text {
  color: #fff;
}
.footer-brand .site-logo-sub {
  color: var(--clr-accent);
}
.footer-desc {
  margin-top: 1rem;
  font-size: var(--font-size2);
  line-height: 1.8;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--font-size2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: .6rem;
}
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: var(--font-size2);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--clr-accent);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: var(--font-size2);
  margin-bottom: .85rem;
}
.footer-contact a {
  color: rgba(255,255,255,.75);
}
.footer-contact a:hover {
  color: var(--clr-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--font-size2);
  color: rgba(255,255,255,.45);
}
.footer-bottom a {
  color: rgba(255,255,255,.6);
}
.footer-bottom a:hover {
  color: var(--clr-accent);
}

/* Cervene ikony */
.cta-actions    .footer-icon,
.footer-contact .footer-icon {
  color: var(--clr-accent);
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 5px;
  display: inline-flex;
}

.cta-actions    .footer-icon svg,
.footer-contact .footer-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* =========================================
   PAGE HERO (na kazdej stranke na vrchu)
   ========================================= */
.page-hero {
  background: var(--clr-primary);
  color: #fff;
  padding: 4rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid #ffffff;
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  margin: 2rem auto 0;
}
/* PAGE HERO2 biele pozadie */
.page-hero2 {
  padding: 4rem 0 4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.page-hero2 p {
  margin: 1rem auto 0;
}


.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: var(--font-size2);
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: var(--clr-accent);
}
.breadcrumb span::before {
  content: '/';
  margin-right: .5rem;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  /*background: linear-gradient(135deg, var(--clr-primary) 0%, #2d2016 100%); */
  background: var(--clr-primary);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  border-bottom:1px solid #ffffff;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: .75rem;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  font-size: var(--font-size1);
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   STATS
   ========================================= */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 3rem 0;
}
.stat-item {
  flex: 1;
  min-width: 180px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--clr-border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--clr-accent);
  text-shadow: 1px 1px 0px #000000;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: var(--font-size2);
  color: var(--clr-primary);
}

/* =========================================
   NOTICES / ALERTS
   ========================================= */
.notice {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--clr-accent);
  background: rgba(200,169,110,.08);
  font-size: var(--font-size1);
  color: var(--clr-text);
  margin-bottom: 1.5rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .footer-grid {
  grid-template-columns: 1fr 1fr;
}
  .contact-grid {
  grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
  .hero {
    min-height: 52vh;
    min-height: 52svh;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.18;
    margin-bottom: 0;
  }
  .hero-bg {
    position: absolute;
    inset: -8%;
    width: 116%;
    height: 116%;
    object-fit: cover;
    object-position: center;
    opacity: .55;
    will-change: transform;
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  }
  .hero-scroll { display: none;}
  .hero-actions { flex-direction: column;}
  .hero-actions .btn { width: 100%; text-align: center;}
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom { flex-direction: column; text-align: center;}
  .stats-row {  flex-direction: column;}
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
  }
  .stat-item:last-child { border-bottom: none;}
  .benefits-grid {  grid-template-columns: 1fr;}
}



/* =========================================
   PRINT
   ========================================= */
@media print {
  .site-header, .site-footer, .hero-scroll, .nav-toggle {
  display: none !important;
}
  body {
  font-size: 12pt;
}
  a {
  color: inherit;
  text-decoration: underline;
}
}






/* Velke textove logo MARKER STUDIO */
/* BLOKY NAD LOGOM */
div.zev-hero1{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  /* overflow-x: hidden; */   /* poistka proti globalnemu horizontalnemu scrollu */;
}
div.zev-hero2{
  text-align:center;
  color:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
/* Velke logo uprostred */
/*
.logo2 {
  font-size: 3.5em;
  font-weight: 300;
  line-height: 1.1;
  width:3.7em;
  height:3.7em;
  margin: 0 auto 1.5rem;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow:
    0 0 8px rgba(0,0,0,0.5),
    0 4px 20px rgba(0,0,0,0.7);
  box-shadow:
    0 0 8px rgba(0,0,0,0.5),
    0 4px 20px rgba(0,0,0,0.7);
}
*/





/* Mobilne menu - pravy vysuvny panel, ktory sa vzdy zmesti do viewportu */
@media (max-width: 1200px) {
  .site-header .container2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    padding-left: 64px;
  }

  .navbar-logo {
    left: 1rem;
    bottom: auto;
    width: 54px;
    height: 68px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  /*
     Mobilné menu:
     - top + bottom určia výšku podľa viewportu
     - menu má vlastný vertikálny scroll
     - touch-action umožní vertikálne gesto na mobile
  */
  .site-nav {
    display: none;
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: auto;

    width: min(320px, 85vw);
    height: auto;
    max-height: none;

    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior-y: contain;

    background: var(--clr-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .25rem;

    padding: 1.5rem 1.25rem calc(2rem + env(safe-area-inset-bottom));

    border-left: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
    box-shadow: -10px 10px 24px rgba(0,0,0,.12);

    z-index: 999;
    transform: none !important;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .site-nav > .mobile-work-subnav {
    flex: 0 0 auto;
  }

  .site-nav a {
    width: 100%;
    display: block;
    font-size: var(--font-size1);
    padding: .75rem 1rem;
  }

  .site-subnav a.nav-cta {
    margin-left: 0;
    margin-top: .75rem;
    text-align: center;
  }
}

/* =========================================
   GALERIA
   ========================================= */

.gallery-block {
  margin: 0 0 1px;
  padding: 0;
  border: 0;
}

.gallery-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  margin: 0 0 1px;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.info-block {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 10px 30px;
  background: #000000;
  border-right: 0px solid #fff;
}

.info {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.info h2 {
  font-size: 3.0rem;
  font-weight: 300;
  padding:1rem 0;
  margin: 0 0 1rem;
}
.info p {
  text-align: justify;
}

@media (max-width: 1100px) {
  .info h2 {
  font-size: 2.2rem;
  text-align: center;
}
}
@media (max-width: 768px) {
  .info h2 {
  font-size: 1.8rem;
  text-align: center;
}
}

.info p {
  color: rgba(255,255,255,.86);
  margin: 0;
}

.photos-area {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  min-height: 420px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.photo-container {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  background: #000;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.photo-container::-webkit-scrollbar {
  display: none;
}

.photo {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: #000;
}

.photo picture {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.photo-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .85rem 1rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  font-size: .9rem;
}

.nav-btn {
  width: 54px;
  height: 54px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #636363;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.prev-btn {
  left: 12px;
}
.next-btn {
  right: 12px;
}

.nav-btn svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  /* prevezme hodnotu z .nav-btn*/
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.35));
}

.nav-btn:hover svg {
  stroke-width: 1.35;
}

.nav-btn.disabled {
  opacity: .35;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .info-block {  padding: 10px 24px;}
  .photos-area {  min-height: 360px;}
}

@media (max-width: 900px) {
  .gallery-wrapper {  flex-direction: column;}
  .info-block {
    flex: 0 0 auto;
    width: 100%;
    border-right: 0;
    border-bottom: 0px solid #fff;
  }
  .photos-area {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 600px) {
  .info-block  { padding: 1rem 0.7rem;}
  .photos-area { aspect-ratio: 4 / 3;}
  .nav-btn     { width: 44px; height: 44px; }
  .nav-btn svg { width: 44px; height: 44px;
  }
}

/* =========================================
   Preco model od nas
   ========================================= */
.preco-section {
  max-width: var(--max-w);
  padding: 0;
  margin:0 auto;
  border-bottom:1px solid #ffffff;
}
.preco-section > .container {
  padding: 0;
  max-width: 100%;
}
.preco-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.preco-row .preco-img {
  overflow: hidden;
}
.preco-row .preco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.preco-row .preco-text {
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clr-bg);
}
.preco-row .preco-text p{
  text-align:justify;
}

.preco-row.preco-row--alt .preco-text {
  background: var(--clr-bg2);
}
.preco-text h2 {
  font-size: clamp(2.4rem, 3.0vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .preco-text h2 {  text-align:center;}
  .preco-row {  grid-template-columns: 1fr;}
  .preco-row .preco-img {  aspect-ratio: 4 / 3;  order: 1;}
  .preco-row .preco-text {
    padding: 2rem 1rem;
    order: 2;
  }
}
/* =========================================
   Co prinasame
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--clr-accent);
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: var(--clr-primary);
}
.feature-card p {
  font-size: .95rem;
  color: var(--clr-muted);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .feature-card h3,
  .feature-card p {
  font-size: var(--font-size1);
}
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--clr-accent);
  margin-left: auto;
  margin-right: auto;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
@media (max-width: 480px) {
  .feature-card {
  border:0;
  padding:0;
}
  .feature-icon {
  margin-bottom:0;
}
}


/* Variant na tmavom pozadi Â­ (sekcia--cierna, section--gal a pod.) */
.section--cierna .feature-card,
.section--gal .feature-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.section--cierna .feature-card h3,
.section--gal .feature-card h3 {
  color: #fff;
}
.section--cierna .feature-card p,
.section--gal .feature-card p {
  color: rgba(255,255,255,.65);
}
.section--cierna .feature-icon,
.section--gal .feature-icon {
  background: rgba(255,255,255,.08);
}

@media (max-width: 900px) {
  .feature-grid {
  grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
  .feature-grid {
  grid-template-columns: 1fr;
}
}


/* =========================================
   KAM DORUCUJEME
   ========================================= */
.stats-row--clean {
  border: none !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  max-width: 100%;
  width: 100%;
  margin: 2rem auto 0;
}
.stats-row--clean .stat-item {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0;
  min-width: 0;
}
@media (max-width: 600px) {
  .stats-row--clean {
  grid-template-columns: 1fr 1fr;
  max-width: 360px;
  gap: 2.5rem 2.5rem;
}
}

/* roztiahnut staty na celu sirku */
.section--delivery-parallax .stats-row {
  width: min(var(--max-w), calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section--delivery-parallax .stat-item {
  min-width: 0;
  padding: 1.4rem 1rem;
}
@media (max-width: 768px) {
  .section--delivery-parallax .stats-row {
  width: min(100%, calc(100vw - 2rem));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 480px) {
  .section--delivery-parallax .stats-row {
  grid-template-columns: 1fr;
}
}

/* Codex fix: Parallax */
.section--delivery-parallax {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #111;
}
.section--delivery-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/small/g11/3d-model-veslarsky-klub-bratislava-bellus-02.webp");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--delivery-parallax-y, 0px), 0) scale(1.28);
  transform-origin: center;
  will-change: transform;
}
.section--delivery-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,0,0,.42));
}
.section--delivery-parallax > .container {
  position: relative;
  z-index: 2;
}
.section--delivery-parallax .section-title {
  color: #ffffff;
  margin-bottom: 2.25rem;
}
.section--delivery-parallax .stats-row {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(2px);
}
/*.section--delivery-parallax .stat-num,*/
.section--delivery-parallax .stat-label {
  color: #ffffff;
}
@media (max-width: 768px) {
  .section--delivery-parallax {
  min-height: 430px;
}
}
@media (prefers-reduced-motion: reduce) {
  .section--delivery-parallax::before {
  transform: scale(1.08);
  will-change: auto;
}
}



@media (max-width: 768px) {
  .session--rec .container {  padding: 0 10px;  background-color:#000000;}
}

.reviews-grid--page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
  background-color: #000000;
}

.reviews-grid--page .review-card {
  width: 100%;
  height: 100%;
  background: #000;
  color: rgba(255,255,255,.88);
  border: 0px solid rgba(255,255,255,.14);
}
@media (max-width: 768px) {
  .reviews-grid--page .review-card {
  border-top: 1px solid rgba(255,255,255);
}
}

.reviews-grid--page .review-card blockquote {
  color: rgba(255,255,255,.78);
  border-left: 3px solid var(--clr-accent);
}

.reviews-grid--page .review-author-name {
  color: #fff;
}

.reviews-grid--page .review-author-title {
  color: rgba(255,255,255,.58);
}

.reviews-grid--page .review-author img {
  border-color: rgba(255,255,255,.25);
}

.review-photo {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0px solid rgba(255,255,255,.14);
  background: #000;
  color: rgba(255,255,255,.78);
  display: flex;
  flex-direction: column;
}

.review-photo figcaption {
  padding: 1.5rem 1.25rem;
  color: rgba(255,255,255,.78);
  font-size: var(--font-size2);
  text-align: center;
}

.review-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  /* Vertikalne vycentrovanie obrazka v pravom tmavom stlpci */
  margin-top: auto;
  margin-bottom: auto;
  flex: 0 0 auto;
}

/* Mobil - najprv recenzia, pod nÂou obrazok */
@media (max-width: 768px) {
  .reviews-grid--page {
  grid-template-columns: 1fr;
  max-width: 650px;
}

  .reviews-grid--page .review-card,
  .review-photo {
  height: auto;
}
}


/* Postup pri tvorbe modelu */
@media screen and (max-width: 900px) {
  .steps .step-item {
  display: block !important;
  gap: 0 !important;
  overflow: hidden;
}
  .steps .step-num {
  float: left !important;
  margin: 0 1.25rem 0.25rem 0 !important;
}
  .steps .step-body {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
  .steps .step-body h2,
  .steps .step-body h3 {
  text-align: center !important;
  padding-right: 25px !important;
}
  .steps .step-body p {
  text-align: justify !important;
}
  .steps .step-body p {
  hyphens: none !important;
  word-spacing: normal !important;
}
  .steps .step-body::after {
  content: "";
  display: block;
  clear: both;
}
}


/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #000000;
  color: #ffffff;
  border-top: 2px solid rgba(255,255,255,1);
  padding: 1.25rem 1rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,.25);
  /* skryt na zaciatku */
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  /* pomale vysunutie */
  transition:
    transform .8s ease,
    opacity .8s ease,
    visibility 0s linear .8s;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform .8s ease,
    opacity .8s ease;
}
.cookie-banner__inner {
  /*max-width: 900px;*/
  margin: 0 auto;
  text-align: center;
}
.cookie-banner p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-banner__link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__link:hover {
  color: #ff0000;
}
.cookie-banner__button {
  display: inline-block;
  padding: .75rem 2rem;
  background: #ff0000;
  color: #ffffff;
  border: 2px solid #ff0000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
  transition: all .25s ease;
}
.cookie-banner__button:hover {
  background: #b80000;
  border-color: #b80000;
}
@media (max-width: 600px) {
  .cookie-banner {
  padding: 1rem .75rem;
}
  .cookie-banner p {
  font-size: .95rem;
}
  .cookie-banner__button {
  width: 100%;
  max-width: 260px;
}
}


/*##############################*/
/*###  Modalne okno na Email ###*/
/*##############################*/
.modal-backdrop.show {
  opacity: 0.6 !important;
}
.modal-content {
  height:500px;
  border-radius: 18px !important;
  border: none !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35) !important;
  background: #ffffff;
  padding: 0 !important;
  overflow: hidden;
}
.modal-header {
  /*background: #3F7F00; */
  /*color: white; */
  margin: 10px auto 0 auto;
  text-align:center;
  border-bottom: none;
  padding: 1rem 1.5rem;
}
.modal-header .modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  white-space: pre-wrap;
}
/* Telo okna */
.modal-body {
  padding: 1.6rem 1.5rem;
  margin: 2px auto 20px auto;
  text-align:center;
}
/* Input */
.modal-body .form-control {
  border: 1px solid #d1d5db !important;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1.2rem;
}
.modal-body .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}
.modal-body span{
  font-size:0.8rem;
}
/* CTA button */
.modal-body .btn {
  /*
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border: none !important;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: 0.2s ease-in-out;
  */
  width:16rem;
  text-align: center;
  margin: 40px auto 20px auto;
  border-radius: 100px;
  /*background: #3F7F00 !important;  */
  border: 4px solid #BCEF9B;
  font-weight: 800;
  transition: transform .2s ease;
  transform: translateY(-10px) scale(1.35);
}
.modal-body .btn-success:hover {
  background: linear-gradient(90deg, #16a34a, #15803d);
  transform: translateY(-2px);
}
.btn-close {
  color: #ffffff !important;
  background-color:pink;
  filter: invert(1);
  opacity: 1;
  border:1px solid #000000;
}
.btn-close:hover {
  opacity: 1;
}


/* hero parallax */
@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    transform: none;
    will-change: auto;
  }
}

/* parallax bez cierneho bloku */
.hero-bg {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform-origin: center center;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.24) !important;
}
@media (max-width: 768px) {
  .hero-bg {  object-position: center 38%;  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg {  transform: none !important;}
}

.zev-7 {
  padding-top:2.5rem;
  padding-bottom:0;
  margin-bottom:0;
}


/* Ako pracujeme submenu */
.site-nav a.active,
.site-subnav a.active {
  color: var(--clr-accent2);
  font-weight: 700;
}

.site-subnav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-top: 1px solid rgba(0,0,0,.08);
  background: var(--clr-bg);
}

.site-subnav a {
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 500;
  padding: .45rem .85rem;
  white-space: nowrap;
  transition: all var(--transition);
}

.site-subnav a:hover {
  color: var(--clr-accent2);
  background: var(--clr-bg2);
}

.mobile-work-subnav {
  display: none;
}

@media (max-width: 1200px) {
  /*
  .site-subnav {
  min-height: 40px;
  justify-content: flex-start;
  gap: .25rem;
  overflow-x: auto;
  padding: .35rem .75rem;
  scrollbar-width: none;
  }
  */
  .site-subnav { display: none !important;}
  .site-subnav::-webkit-scrollbar {  display: none;}
  .site-subnav a {
    flex: 0 0 auto;
    font-size: .95rem;
    padding: .4rem .7rem;
  }
  .site-nav .mobile-work-subnav a {
    width: 100%;
    padding: .45rem .75rem;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
  }
  .site-nav .mobile-work-subnav a.active {
    color: var(--clr-accent2);
    font-weight: 700;
    background: transparent;
  }
  .site-nav > a.nav-audience {
    margin: .2rem 0 .35rem;
    border-left: 4px solid #ff0000;
    background: #fff1f1;
    color: #b80000;
    font-weight: 700;
  }
  .site-nav > a.nav-audience:hover,
  .site-nav > a.nav-audience:focus-visible,
  .site-nav > a.nav-audience.active {
    background: #ff0000;
    color: #fff;
  }
  .mobile-work-subnav {
    display: grid;
    width: 100%;
    gap: .15rem;
    padding: 0 0 .5rem 1rem;
    margin: -.25rem 0 .35rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
}



@media (max-width: 768px) {
  /*
    Jednotne mobilne odsadenie sekcii.
    Riesi hlavne prechody cierna/biela, kde nadpis nasledujucej sekcie
    opticky liezol prilis blizko k predoslej casti.
  */
  .section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

  /* XXXXXXXXXXXXX
  .page-hero + .section,
  .page-hero2 + .section,
  .section2 + .section,
  .preco-section + .section {
  padding-top: 3rem;
}
  */

  .section--gal + .section,
  .section--cierna + .section,
  .section--rec + .section,
  .section--delivery-parallax + .section {
  padding-top: 3.25rem;
}

  .section--gal {
  padding-top: 0;
  padding-bottom: 0;
}

  .section--gal > .container > div {
  padding-bottom: 3rem !important;
}

  .section-title {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

  .section-subtitle {
  margin-bottom: 2.25rem;
}

  .section--co > .container > div,
  .section--pre > .container > div {
  margin-top: 0 !important;
}

  .section--rec {
  padding-top: 3rem;
}
}

@media (max-width: 780px) {
  .session--rec {
  padding-top:0;
}
}

@media (max-width: 480px) {
  .section--gal + .section,
  .section--cierna + .section,
  .section--rec + .section,
  .section--delivery-parallax + .section {
  padding-top: 3rem;
}
}



/* inline YouTube player */
.yt-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yt-lite--playing {
  cursor: default;
}



/* remove delivery stats background  */
.section--delivery-parallax .stats-row {
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}


/* review red quotes instead of stars */
.stars {
  display: none;
}
/*
.review-accent {
  width: auto;
  height: auto;
  margin: 0 auto .25rem;
  background: transparent;
  color: var(--clr-accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: .8;
  text-align: center;
}

.review-accent::before {
  content: "\201C";
}

.review-accent--large {
  margin: 0 auto;
  font-size: 3.8rem;
}
*/

.review-accent {
  width: 34px;
  height: 24px;
  margin: 0 auto .9rem;
  border: 2px solid var(--clr-accent);
  border-radius: 4px;
  background: transparent;
  position: relative;
}
.review-accent::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -7px;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--clr-accent);
  border-bottom: 2px solid var(--clr-accent);
  background: #000;
  transform: rotate(-35deg);
}


/* review speech bubble instead of stars */
.stars {
  display: none;
}

.review-accent {
  width: 23px;
  height: 16px;
  margin: 0 auto 1rem;
  border: 2px solid var(--clr-accent);
  border-radius: 4px;
  background: transparent;
  position: relative;
}

.review-accent::before {
  content: none;
}

.review-accent::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -6px;
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--clr-accent);
  border-bottom: 2px solid var(--clr-accent);
  background: #000;
  transform: rotate(-35deg);
}

.review-accent--large {
  width: 27px;
  height: 19px;
  margin: 0 auto 1rem;
}



.section--home-video  {
  border-top:1px solid #000000;
}


/* index video full width */
.section--home-video .video-wrapper {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section--home-video .yt-lite {
  width: 100%;
  border-radius: 0;
}

@media (max-width: 768px) {
  .section--home-video .video-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}





/* =========================================
   VIDEA
   ========================================= */
/* Cervene tlacĂ­tko YouTube */
.video-wrapper{
  max-width:1000px;
  margin:auto;
}
.yt-lite{
  position:relative;
  display:block;
  background:#000;
  aspect-ratio:16/9;
  overflow:hidden;
}
.yt-lite img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.92);
}
.yt-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:96px;
  aspect-ratio:16/11;
  background:#ff0000;
  border-radius:28%/46%;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  transition:transform .12s ease, filter .12s ease;
}
.yt-btn::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-30%,-50%);
  width:0;
  height:0;
  border-left:26px solid #fff;
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
}
.yt-lite:hover .yt-btn{
  filter:brightness(1.05);
  transform:translate(-50%,-50%) scale(1.03);
}
@media (max-width:480px){
  .yt-btn{width:74px}
  .yt-btn::before{
  border-left:20px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}
}
/* YouTube tlacidlo cervene */
.yt-lite .yt-btn {
  background: #ff0000 !important;
}
.yt-lite .yt-btn::before {
  border-left-color: #ffffff !important;
}
.video {
  padding-top: 30px;
  background-color:#000000;
}
.video-wrapper{
  max-width:1000px;
  margin:auto;
}
.yt-lite{
  position:relative;
  display:block;
  background:#000;
  aspect-ratio:16/9;
  overflow:hidden;
}
.yt-lite img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.92);
}
.yt-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:96px;
  aspect-ratio:16/11;
  background:#ffffff;
  border-radius:28%/46%;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  transition:transform .12s ease, filter .12s ease;
}
.yt-btn::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-30%,-50%);
  width:0;
  height:0;
  border-left:26px solid #000;
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
}
.yt-lite:hover .yt-btn{
  filter:brightness(1.05);
  transform:translate(-50%,-50%) scale(1.03);
}
@media (max-width:480px){
  .yt-btn{width:74px}
  .yt-btn::before{
  border-left:20px solid #000;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}
}

/* remove mobile recenzie white lines */
@media (max-width: 768px) {
  body:has(.reviews-grid--page) .page-hero {
    border-bottom: 0 !important;
  }
  .reviews-grid--page .review-card {
    border-top: 0 !important;
  }
}


/* index.php - Ukazky nasich modelov: keep 900x600 ratio and add black gaps */
.section--gal {
  background: #000;
}

.section--gal .gallery-grid {
  gap: 10px;
  background: #000;
}

.section--gal .gallery-item {
  aspect-ratio: 3 / 2;
  background: #000;
}

.section--gal .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Druhy riadok navigacie ma rovnake pozadie ako hlavny riadok. */
.site-subnav {
  min-height: 46px;
  background: var(--clr-bg);
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.site-subnav a {
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 600;
  padding: .7rem .35rem .62rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  background: transparent;
}

.site-subnav a:hover,
.site-subnav a:focus {
  color: var(--clr-accent2);
  background: var(--clr-bg2);
  border-bottom-color: var(--clr-accent);
}

.site-subnav a.active {
  color: var(--clr-accent2);
  font-weight: 700;
  border-bottom-color: var(--clr-accent);
}

@media (max-width: 1200px) {
  .site-subnav {
    display: none !important;
  }
}
/* Codex: dark layout for preco-model-od-nas.php, matching galeria.php */
body.page-preco {
  background: #000;
  color: #fff;
}

body.page-preco .page-hero {
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
}

body.page-preco .page-hero h1,
body.page-preco .page-hero p {
  color: #fff;
}

body.page-preco .page-hero p {
  color: rgba(255, 255, 255, .82);
}

body.page-preco .preco-section {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #000;
  color: #fff;
}

body.page-preco .preco-row {
  width: min(var(--max-w), 100%);
  margin: 0 auto;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

body.page-preco .preco-row .preco-text,
body.page-preco .preco-row.preco-row--alt .preco-text {
  background: #000;
  color: #fff;
}

body.page-preco .preco-text h2 {
  color: #fff;
}

body.page-preco .preco-row .preco-text p {
  color: rgba(255, 255, 255, .88);
}

body.page-preco .preco-row .preco-text strong,
body.page-preco .preco-row .preco-text em {
  color: #fff;
}

body.page-preco .preco-row .preco-img,
body.page-preco .preco-row .preco-img img {
  background: #000;
}

@media (max-width: 768px) {
  body.page-preco .preco-row {
    width: 100%;
  }
}
/* =========================================
   COOKIE CONSENT OPTIONS
   ========================================= */
.cookie-banner__inner {
  max-width: 1100px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
}
.cookie-banner__text {
  flex: 1 1 auto;
}
.cookie-banner__text strong {
  display: block;
  color: #ffffff;
  margin-bottom: .35rem;
  font-size: 1.05rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.cookie-banner__button--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.75);
}
.cookie-banner__button--secondary:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
@media (max-width: 700px) {
  .cookie-banner__inner {
    display: block;
    text-align: center;
  }
  .cookie-banner__actions {
    margin-top: 1rem;
  }
  .cookie-banner__button {
    width: 100%;
    max-width: 320px;
  }
}
/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #ff0000;
  background: #ff0000;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease, color .2s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}
@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }
}
/* FAQ accordion - plynulejsie otvorenie a zatvorenie */
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition:
    max-height .55s ease,
    opacity .35s ease,
    padding .55s ease;
}

.faq-item.open .faq-answer {
  max-height: 900px;
  opacity: 1;
  padding: 0 0 1.25rem;
}

.faq-icon {
  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}
/* COOKIE BANNER - final text/button style */
.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: .75rem;
  align-items: stretch;
}

.cookie-banner__button {
  min-height: 46px;
  padding: .8rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .95rem;
  font-weight: 700;
}

.cookie-banner__button--secondary {
  order: 1;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,.82);
}

.cookie-banner__button:not(.cookie-banner__button--secondary) {
  order: 2;
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

@media (max-width: 700px) {
  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner__button {
    max-width: none;
  }
}
/* COOKIE BANNER - UTF-8 final style with settings */
.cookie-banner {
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.65);
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.cookie-banner__eyebrow {
  display: block;
  margin-bottom: .25rem;
  color: rgba(255,255,255,.72);
  font-size: .85rem;
}

.cookie-banner__text strong {
  display: block;
  color: #fff;
  margin-bottom: .45rem;
  font-size: 1.05rem;
}

.cookie-banner__text p {
  margin: 0;
  max-width: 760px;
}

.cookie-banner__link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: .75rem;
  align-items: stretch;
  min-width: min(460px, 100%);
}

.cookie-banner__button {
  min-height: 46px;
  padding: .8rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 0;
}

.cookie-banner__button--secondary {
  order: 1;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.82);
}

.cookie-banner__button:not(.cookie-banner__button--secondary) {
  order: 2;
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.cookie-settings-modal[hidden] {
  display: none;
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.58);
}

.cookie-settings-modal__panel {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #fff1f1;
  color: #111;
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.cookie-settings-modal__close {
  position: absolute;
  top: .8rem;
  right: .9rem;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings-modal h2 {
  margin: 0 0 .45rem;
  color: #111;
  text-align: center;
}

.cookie-settings-modal__lead {
  margin: 0 0 2rem;
  text-align: center;
}

.cookie-settings-list {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.cookie-settings-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  align-items: center;
}

.cookie-settings-row small {
  display: block;
  margin-top: .35rem;
  color: #333;
  line-height: 1.45;
}

.cookie-settings-row--disabled {
  opacity: .65;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-switch span {
  position: relative;
  display: block;
  width: 64px;
  height: 34px;
  border: 1px solid #777;
  border-radius: 999px;
  background: #fff;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #004542;
  transition: transform .2s ease, background .2s ease;
}

.cookie-switch input:checked + span::before {
  transform: translateX(30px);
}

.cookie-switch input:disabled + span::before {
  background: #80908e;
}

.cookie-settings-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 760px) {
  .cookie-banner__inner {
    display: block;
    text-align: left;
  }

  .cookie-banner__actions,
  .cookie-settings-modal__actions {
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 1rem;
  }

  .cookie-settings-modal__panel {
    padding: 1.6rem 1.2rem;
  }

  .cookie-settings-row {
    grid-template-columns: 1fr;
  }
}

/* COOKIE BANNER VISIBILITY FIX */
.cookie-banner[hidden],
.cookie-settings-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  z-index: 9999;
}

.cookie-banner.is-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* /COOKIE BANNER VISIBILITY FIX */

/* COOKIE BANNER LAYOUT FINAL */
.cookie-banner {
  padding: 2rem 1.25rem !important;
  text-align: center !important;
}

.cookie-banner__text {
  max-width: 860px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.cookie-banner__eyebrow {
  margin: 0 0 .45rem !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .9rem !important;
  font-weight: 500 !important;
}

.cookie-banner__text h2 {
  margin: 0 0 1rem !important;
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.7rem) !important;
  font-weight: 200 !important;
  line-height: 1.15 !important;
}

.cookie-banner__text p {
  max-width: 760px !important;
  margin: .45rem auto 0 !important;
  color: rgba(255,255,255,.84) !important;
  text-align: center !important;
  line-height: 1.55 !important;
}

.cookie-link {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font: inherit !important;
}

.cookie-banner__actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  max-width: 720px !important;
  margin: 1.5rem auto 0 !important;
}

.cookie-btn {
  appearance: none !important;
  width: auto !important;
  min-width: 240px !important;
  max-width: 320px !important;
  min-height: 52px !important;
  padding: .85rem 1.5rem !important;
  border: 2px solid #fff !important;
  border-radius: 0 !important;
  font: inherit !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
}

.cookie-btn--primary {
  background: #e31212 !important;
  border-color: #e31212 !important;
  color: #fff !important;
}

.cookie-btn--primary:hover,
.cookie-btn--primary:focus-visible {
  background: #b90000 !important;
  border-color: #b90000 !important;
}

.cookie-btn--secondary {
  background: transparent !important;
  color: #fff !important;
}

.cookie-btn--secondary:hover,
.cookie-btn--secondary:focus-visible {
  background: #fff !important;
  color: #000 !important;
}

.cookie-settings-modal__actions {
  display: flex !important;
  justify-content: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.cookie-settings-modal__actions .cookie-btn--secondary {
  color: #111 !important;
  border-color: #111 !important;
}

.cookie-settings-modal__actions .cookie-btn--secondary:hover,
.cookie-settings-modal__actions .cookie-btn--secondary:focus-visible {
  background: #111 !important;
  color: #fff !important;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 1.4rem 1rem !important;
  }

  .cookie-banner__actions,
  .cookie-settings-modal__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }

  .cookie-btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}
/* /COOKIE BANNER LAYOUT FINAL */
/* Codex: dark home video section */
.section--home-video {
  background: #000;
  color: #fff;
  border-top-color: #000;
}

.section--home-video .section-title,
.section--home-video .section-subtitle,
.section--home-video .lead {
  color: #fff;
}

.section--home-video .btn-outline {
  color: #ff0000;
  border-color: #ff0000;
}

.section--home-video .btn-outline:hover,
.section--home-video .btn-outline:focus-visible {
  color: #fff;
  background: #ff0000;
}
/* Codex: light home reviews section */
.section--rec {
  background: #fff;
  color: #000;
  border-top-color: #e5e5e5;
}

.section--rec .section-title,
.section--rec .section-subtitle,
.section--rec .lead,
.section--rec .review-author-name {
  color: #000;
}

.section--rec .review-card {
  background: #fff;
  color: #000;
  border: 1px solid #d7d7d7;
}

.section--rec .review-card blockquote {
  color: #222;
}

.section--rec .review-author-title {
  color: #555;
}

.section--rec .review-author img {
  border-color: #d7d7d7;
}

.section--rec .btn-outline {
  background: #fff;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.section--rec .btn-outline:hover,
.section--rec .btn-outline:focus-visible {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
/* Codex: white gaps on referencie page */
.reviews-grid--page {
  background-color: #fff;
}

.reviews-grid--page .review-card {
  background: #fff;
  color: #000;
}

.reviews-grid--page .review-card blockquote {
  color: #222;
}

.reviews-grid--page .review-author-name {
  color: #000;
}

.reviews-grid--page .review-author-title {
  color: #555;
}

.reviews-grid--page .review-author img {
  border-color: #d7d7d7;
}

.reviews-grid--page .review-photo,
.reviews-grid--page .review-photo figcaption {
  background: #000000;
  color: #222;
}

/* Zvýraznený odkaz na Online generátor v desktopovom aj mobilnom menu. */
.site-subnav a.nav-cta,
.site-nav .mobile-work-subnav a.nav-cta {
  background: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
  font-weight: 700;
}

.site-subnav a.nav-cta:hover,
.site-subnav a.nav-cta:focus,
.site-nav .mobile-work-subnav a.nav-cta:hover,
.site-nav .mobile-work-subnav a.nav-cta:focus {
  background: #cc0000;
  color: #ffffff;
  border-color: #cc0000;
}
.time-highlight {
  display: inline-block;
  padding: .05em .38em;
  color: #000;
  background: #dfff00;
  border-radius: .25em;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  transform: rotate(-1deg);
}
