/* ============================================================
   PROMĚNNÉ & RESET
   ============================================================ */
:root {
  --navy:        #111f42;
  --navy-dark:   #0c1630;
  --navy-light:  #1a2e5a;
  --gold:        #e9b20f;
  --gold-dark:   #c99a0d;
  --text:        #333333;
  --text-muted:  #666666;
  --text-light:  #f0f2f5;
  --white:       #ffffff;
  --bg:          #f7f8fa;
  --border:      #e2e6ea;

  --radius-sm:   12px;
  --radius-md:   16px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 2px 8px rgba(17,31,66,.08);
  --shadow-md:   0 8px 24px rgba(17,31,66,.12);
  --shadow-lg:   0 20px 48px rgba(17,31,66,.18);

  --space-1:  .5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-5:  2.5rem;
  --space-6:  3rem;
  --space-8:  4rem;
  --space-10: 5rem;
  --space-12: 6rem;

  --font-body:    'Barlow', sans-serif;
  --font-heading: 'Exo 2', sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --transition: all .3s var(--ease);

  --width:     85%;
  --max-width: 1380px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 112.5%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }
address { font-style: normal; }

/* Honeypot – skryté antispamové pole */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.text--accent { color: var(--gold); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section { padding: var(--space-12) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-label {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.section-label--light { opacity: .9; }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: var(--space-2);
}

.section-title--light { color: var(--white); }
.section-title--sm { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-desc--light { color: rgba(255,255,255,.65); }

/* ============================================================
   TLAČÍTKA
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  background: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
  letter-spacing: .04em;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233,178,15,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn--lg   { padding: .75rem 1.75rem; }
.btn--sm   { padding: .5rem 1.25rem; font-size: .9375rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGACE
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease;
}

.header--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.header--scrolled .nav__logo img {
  height: 0;
  opacity: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-2) 0;
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo img {
  height: 80px;
  width: auto;
  border-radius: 0;
  transition: height .35s ease, opacity .35s ease;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: auto;
}

.nav__cta-mobile-wrap { display: none; }

.nav__link {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav__link:hover,
.nav__link--active { color: var(--white); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: var(--space-2);
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background .25s ease, transform .2s ease;
  white-space: nowrap;
}

.nav__cta:hover {
  background: #f5c842;
  transform: translateY(-1px);
}

.nav__cta .fa-phone {
  font-size: 1rem;
  flex-shrink: 0;
}

.nav__cta-inner {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__cta-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
}

.nav__cta-number {
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 150px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 52% at 100% 75%, rgba(233,178,15,.26) 0%, transparent 68%),
    linear-gradient(to right, rgba(12,22,48,.95) 0%, rgba(12,22,48,.88) 45%, rgba(17,31,66,.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4) 0 var(--space-8);
  max-width: 70%;
}

@media (min-width: 1200px) {
  .hero__content { max-width: 65%; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,178,15,.14);
  border: 1px solid rgba(233,178,15,.35);
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem 1.125rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: clamp(2.5rem, 11vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: var(--space-3);
}

.hero__title--accent {
  display: block;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--gold);
}

.hero__subtitle {
  font-size: clamp(1.15rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 520px;
}

.hero__break { display: none; }
.cta__break { display: none; }

.hero__btn-secondary {
  font-size: 1.05rem;
  padding: .7rem 1.65rem;
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Scroll indikátor */
.hero__scroll {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(233,178,15,.7);
  background: rgba(17,31,66,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(233,178,15,.25), inset 0 0 8px rgba(233,178,15,.08);
}

.hero__scroll::after {
  content: '';
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(233,178,15,.5), rgba(17,31,66,0));
}

.hero__scroll-chevron {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  animation: bounceDown 1.8s ease-in-out infinite;
}

/* Vlnový přechod hero → služby */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 105px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(233,178,15,.3));
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0);    opacity: .5; }
  50%       { transform: translateY(8px); opacity: 1;  }
}

/* ============================================================
   SLUŽBY – PÁS FOTEK
   ============================================================ */
.services {
  background: var(--navy);
  padding: 0;
}


.services__bento {
  display: flex;
  height: 215px;
  gap: 0;
}

/* Karta – obecně */
.service-card {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  transition: transform .4s var(--ease);
}

.service-card:hover {
  transform: scale(1.03);
  z-index: 2;
}

/* Rozmístění v gridu – všechny karty stejně velké (3 + 3) */

/* Obrázek */
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}

.service-card:hover .service-card__img { transform: scale(1.07); }

/* Přechod přes obrázek */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,18,40,.96) 0%,
    rgba(10,18,40,.65) 45%,
    rgba(10,18,40,.20) 100%
  );
  transition: var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(10,18,40,.98) 0%,
    rgba(10,18,40,.72) 55%,
    rgba(10,18,40,.30) 100%
  );
}

/* Obsah karty */
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Ikona */
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.service-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Název */
.service-card__title {
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Popis */
.service-card__desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ============================================================
   O MNĚ
   ============================================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Tmavá plocha vpravo – split-background efekt */
.about__split {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  z-index: 0;
}

.about .container { position: relative; z-index: 1; }

/* Text */
.about__text {
  max-width: 52%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-right: var(--space-5);
}

.about__text .section-label,
.about__text .section-title { text-align: left; }

.about__lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
}

.about__body {
  color: var(--text-muted);
  line-height: 1.8;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-1) 0;
}

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.55;
}

.about__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: .875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Podpis */
.about__signature {
  font-family: 'Shalimar', cursive;
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-top: var(--space-2);
  align-self: flex-end;
}

/* Fotka – vyplňuje celou pravou tmavou plochu */
.about__photo-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.about__photo-frame {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}

.about__photo-wrap:hover .about__photo { transform: scale(1.03); }

/* Badge "20+ let" – glassmorphism přes fotku */
.about__badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-5);
  background: rgba(17, 31, 66, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(233,178,15,.35);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  z-index: 3;
}

.about__badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}

.about__badge-num span { font-size: 1.5rem; vertical-align: middle; position: relative; top: -0.25em; }

.about__badge-text {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   RECENZE
   ============================================================ */
.reviews {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Dekorativní světelné záblesky */
.reviews::before,
.reviews::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.reviews::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(233,178,15,.07) 0%, transparent 70%);
}

.reviews::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(26,46,90,.5) 0%, transparent 70%);
}

.reviews .container { position: relative; z-index: 1; }

/* Hodnocení box */
.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-5);
  gap: var(--space-2);
  max-width: 360px;
  margin: 0 auto var(--space-10);
}

.reviews__google-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1);
}

.reviews__score {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.reviews__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 1.4rem;
}

.reviews__count {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: var(--space-1);
}

.reviews__btn { width: 100%; justify-content: center; margin-top: var(--space-1); }

/* Carousel */
.reviews__carousel-wrap {
  position: relative;
}

.reviews__carousel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-5);
  align-items: stretch;
}

/* Nepravidelná masonry mřížka – desktop */
.reviews__carousel .review-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.reviews__carousel .review-card:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1;
}
.reviews__carousel .review-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.reviews__carousel .review-card:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}
.reviews__carousel .review-card:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 3;
}

/* Dots – skryté na desktopu */
.reviews__dots { display: none; }

/* Šipky – schované na desktopu */
.reviews__arrow { display: none; }

/* Odkaz na další recenze */
.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.reviews__more {
  font-size: 1.125rem;
  color: rgba(255,255,255,.55);
}
.reviews__more-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}
.reviews__more-link:hover { opacity: .75; }
.reviews__invite {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
}
.reviews__write-btn {
  margin-top: .25rem;
}

/* Karta recenze */
.review-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 3.5rem var(--space-5);
  gap: var(--space-3);
  transition: border-color .3s ease, transform .3s ease;
}

.review-card:hover {
  border-color: rgba(233,178,15,.3);
  transform: translateY(-4px);
}

.review-card__google {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}

.review-card__text {
  color: rgba(255,255,255,.8);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: auto;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { background: linear-gradient(180deg, #e2e5ed 0%, #eceef3 100%); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* Info box */
.contact__info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.contact__info-title,
.contact__form-title {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: var(--space-4);
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__item strong {
  display: block;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact__item p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.6;
}

.contact__link {
  color: var(--navy);
  font-weight: 600;
}
.contact__link:hover { color: var(--gold); }

/* Formulář */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: .5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: .5rem;
}

.form__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.form__req { color: var(--gold); }

.form__input,
.form__textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(17,31,66,.08);
}

.form__input.error,
.form__textarea.error { border-color: #dc3545; }

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  font-size: .8125rem;
  color: #dc3545;
  min-height: 1.1em;
}

.form__success {
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  display: none;
}
.form__success.show { display: block; }

.form__gdpr {
  margin-bottom: .75rem;
}

.form__gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.form__gdpr-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.form__gdpr-check.error {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}

.form__submit-wrap {
  display: flex;
  justify-content: flex-end;
}

/* Mapa */
.contact__map {
  position: sticky;
  top: 96px;
  height: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   PATIČKA
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding-top: var(--space-12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand > a {
  display: block;
}

.footer__logo {
  height: 120px;
  width: auto;
  border-radius: 0;
  margin-bottom: var(--space-3);
}

.footer__tagline {
  font-size: .9375rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: var(--space-3);
}

.footer__social { display: flex; gap: var(--space-2); }

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer__nav-title {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
}

.footer__contact-list i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer__link {
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.footer__link:hover { color: var(--gold); }

.footer__legal {
  padding: var(--space-5) 0 var(--space-4);
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  line-height: 1.9;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer__bottom {
  padding: var(--space-4) 0;
  text-align: center;
}

.footer__copy {
  font-size: .875rem;
  color: rgba(255,255,255,.35);
}

.footer__cookie-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .875rem;
  color: rgba(255,255,255,.35);
  padding: 0;
  transition: var(--transition);
}
.footer__cookie-btn:hover { color: var(--gold); }

.footer__credit {
  color: var(--gold);
  font-weight: 600;
}

.footer__credit:hover { color: var(--gold-dark); }

/* ============================================================
   COOKIE LIŠTA
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: var(--space-3) 0;
  z-index: 2000;
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}

.cookie-bar.visible { transform: translateY(0); }

.cookie-bar__inner {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.cookie-bar__text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  flex: 1;
}

.cookie-bar__text i {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-bar__text p {
  font-size: .875rem;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.cookie-bar__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

.cookie-btn-decline {
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq__item {
  background: var(--navy-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0s linear .35s;
}

.faq__item.active {
  background: #e2e5ed;
  transition: background-color 0s linear 0s;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0s linear .35s;
}

.faq__question:hover,
.faq__question:focus-visible {
  color: var(--gold);
}

.faq__item.active .faq__question {
  color: var(--navy);
  transition: color 0s linear 0s;
}

.faq__item.active .faq__question:hover,
.faq__item.active .faq__question:focus-visible {
  color: var(--gold-dark);
}

.faq__icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.faq__item.active .faq__icon { transform: rotate(180deg); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}

.faq__item.active .faq__answer { grid-template-rows: 1fr; }

.faq__answer-inner {
  overflow: hidden;
  padding: 0 var(--space-4);
  color: var(--navy);
  line-height: 1.75;
  transition: padding .35s var(--ease);
}

.faq__item.active .faq__answer-inner { padding-bottom: var(--space-3); }

.faq__answer-inner p + p { margin-top: var(--space-2); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: var(--space-12) 0;
  background:
    linear-gradient(150deg, rgba(17,31,66,.93) 0%, rgba(12,22,48,.93) 100%),
    url('../Obrazky/cta.jpg') center / cover no-repeat;
}

.cta__inner {
  text-align: center;
  max-width: 640px;
  padding: 0 var(--space-3);
}

.cta__desc {
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

/* ============================================================
   SCROLL ANIMACE
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity .7s ease;
}

.reveal.visible {
  opacity: 1;
}

/* ============================================================
   RESPONZIVITA – TABLET (≤ 1100 px)
   ============================================================ */
@media (max-width: 1100px) {

  .nav__cta { display: none; }

  .services__bento {
    height: 185px;
  }

  .about__text { max-width: 50%; }

  .about__split { width: 48%; }
  .about__photo-wrap { width: 48%; }

  .reviews__carousel { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .contact__map  { position: static; height: 420px; }
  .footer { padding-top: var(--space-6); text-align: center; }
  .footer__sep-cookies { display: none; }
  .footer__cookie-btn { display: block; margin: 4px auto 0; }
  .footer__brand, .footer__nav, .footer__contact-col { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__logo { margin-left: auto; margin-right: auto; }
  .footer__contact-list { align-items: center; }
  .footer__contact-list li { flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  .footer__contact-list i { margin-top: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

/* ============================================================
   RESPONZIVITA – MOBIL (≤ 768 px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --width: 92%; }

  .nav__logo img { height: 60px; }
  .footer__logo { height: 90px; }
  .hero__title { font-size: clamp(2.8rem, 12vw, 5.5rem); }
  .hero__break { display: inline; }
  .cta__break { display: inline; }

  .about__text {
    width: 100%;
    max-width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    text-align: center;
  }
  .about__text .section-label,
  .about__text .section-title { text-align: center; }
  .about__lead,
  .about__body { text-align: center; }

  .btn--lg,
  .btn--primary {
    padding: .75rem 1.75rem;
    font-size: 1rem;
  }

  .form__submit-wrap {
    display: flex;
    justify-content: flex-end;
  }

  #submitBtn {
    width: auto;
  }

  .section { padding: var(--space-8) 0; }
  .contact.section { padding-bottom: var(--space-4); }
  .cta { padding: var(--space-8) 0; }

  /* Nav */
  .nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: rgba(14,24,54,.6);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-left: 1px solid rgba(233,178,15,.15);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    transition: right .35s var(--ease);
    box-shadow: -8px 0 48px rgba(0,0,0,.45);
    z-index: 999;
  }

  .nav__list.open { right: 0; }
  .nav__link { font-size: 1.25rem; font-weight: 600; }
  .nav__cta { display: none; }
  .nav__cta-mobile-wrap { display: block; }
  .nav__cta--mobile { display: flex; margin-top: var(--space-2); margin-left: 0; align-self: center; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero {
    min-height: calc(100dvh - 130px);
    padding-bottom: 50px;
  }

  .hero__content {
    max-width: 100%;
    padding-top: calc(var(--space-10) + 3rem);
    padding-bottom: var(--space-4);
    text-align: center;
  }

  .hero__badge { margin: 0 auto; }

  .hero__wave { bottom: -17px; }
  .hero__wave svg { transform: translateY(16px); }
  .hero__scroll { top: 40px; }
  .hero__subtitle { margin-bottom: var(--space-5); }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Services */
  .services__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }

  .service-card { height: 110px; }

  /* About – bílé pozadí, foto nahoře, text dole */
  .about { background: var(--white); overflow: hidden; padding-top: 0; }
  .about__split { display: none; }
  .about__photo-wrap {
    position: static;
    width: 100%;
    height: 360px;
    clip-path: none;
    margin-bottom: 0;
  }
  .about .container { padding-top: var(--space-8); }
  .about__text {
    width: 100%;
    max-width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    align-items: center;
    text-align: center;
  }
  .about__text .section-label { color: var(--gold); }
  .about__text .section-label,
  .about__text .section-title { text-align: center; }
  .about__text .section-title { color: var(--navy); }
  .about__lead { color: var(--navy); text-align: center; }
  .about__body { color: var(--text-muted); text-align: center; }
  .about__list-item { color: var(--text); text-align: left; }
  .about__list-icon { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
  .about__badge { display: none; }
  .about__signature { color: var(--navy); align-self: center; font-size: 2.1rem; }

  /* Reviews */
  .reviews__carousel-wrap { position: relative; }
  .reviews__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: var(--space-2);
  }
  .reviews__carousel::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 100%; }
  .reviews__carousel .review-card:nth-child(n) {
    grid-column: unset;
    grid-row: unset;
  }
  .reviews__dots { display: none; }
  .reviews__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(17,31,66,.75);
    border: 1px solid rgba(233,178,15,.4);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background .2s ease;
  }
  .reviews__arrow:hover { background: rgba(17,31,66,1); }
  .reviews__arrow--prev { left: -12px; }
  .reviews__arrow--next { right: -12px; }
  .reviews__dot {
    width: 10px; height: 10px;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
    padding: 0;
  }
  .reviews__dot.active { background: var(--gold); transform: scale(1.3); }

  /* Form */
  .form__row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .form__group { margin-bottom: .15rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer__tagline { max-width: 100%; }

  /* Cookie */
  .cookie-bar__inner { flex-direction: column; gap: var(--space-2); }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   RESPONZIVITA – MALÝ MOBIL (≤ 480 px)
   ============================================================ */
@media (max-width: 480px) {

  .service-card { height: 110px; }
}

/* ============================================================
   4K / VELKÉ OBRAZOVKY (≥ 1920 px)
   ============================================================ */
@media (min-width: 1920px) {
  :root {
    --width:     78%;
    --max-width: 1680px;
  }

  .services__bento {
    height: 250px;
  }

  .hero__title { font-size: 6rem; }
}
