/* =============================================
   STUDIO DENISA – Hlavní stylesheet
   ============================================= */

/* --- Reset & base --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #B8718A;   /* dusty rose – primární akcent */
  --gold-dark:   #9A5A72;   /* tmavší rose */
  --gold-light:  #D4A0B4;   /* světlý blush */
  --rose:        #D4939D;   /* sekundární blush pro badge */
  --dark:        #1E1218;   /* deep plum */
  --dark-2:      #2A1820;   /* střední dark plum */
  --cream:       #F8F3F5;   /* světlý rose blush bg */
  --cream-2:     #F2EBF0;   /* jemnější blush */
  --text:        #2C2028;   /* near-black s purpurovým nádechem */
  --text-muted:  #8C7880;
  --white:       #FFFFFF;
  --border:      #EAE0E5;   /* jemný rose border */
  --shadow:      0 4px 24px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.10);
  --radius:      12px;
  --transition:  .3s ease;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* --- Typography ----------------------------------- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* --- Buttons -------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-gold:disabled { background: #ccc; cursor: not-allowed; transform: none; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline.dark {
  color: var(--text);
  border-color: var(--border);
}
.btn-outline.dark:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   NAVIGACE
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 24px rgba(0,0,0,.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-script {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .25em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: .9rem;
  letter-spacing: .04em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO – split layout
   ============================================= */
#hero {
  height: 100vh;
  min-height: 620px;
  display: grid;
  grid-template-columns: 54% 46%;
  padding: 0;
  overflow: hidden;
}

.hero-left {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 120px 64px 80px 80px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-content {
  max-width: 520px;
  text-align: left;
  color: var(--text);
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.hero-desc {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.85;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 27%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 1rem;
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   O NÁS
   ============================================= */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 30%;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-text .section-title { margin-bottom: 24px; }

.about-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-perks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.perk i { color: var(--gold); }

/* =============================================
   SLUŽBY
   ============================================= */
#services { background: var(--white); }

/* Filtrovací taby – text underline styl */
.services-filter {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 12px 28px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--dark); }
.filter-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 500;
  background: transparent;
}

.services-category-group {
  margin-bottom: 64px;
}
.services-category-group:last-child { margin-bottom: 0; }

/* Kategorie heading – velký italic, bez ikon */
.services-cat-header {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.services-cat-header i { display: none; }
.services-cat-header h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  padding: 8px 0 20px;
  letter-spacing: .01em;
}

/* Editorial list – vertikální stack, ne grid */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.services-loading {
  padding: 48px;
  text-align: center;
  color: var(--text-muted);
}
.services-loading i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }

/* Service card = horizontální řádek */
.service-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 22px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  width: 100%;
  position: relative;
  transition: background var(--transition), padding var(--transition), border-color var(--transition), border-radius var(--transition);
  cursor: default;
}
.service-card::before { display: none; }
.service-card:hover {
  background: var(--cream-2);
  box-shadow: none;
  transform: none;
  border-color: var(--gold-light);
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
}
.service-card[data-service-id] { cursor: pointer; }

.service-card h4 {
  flex: 0 0 240px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--dark);
  margin-bottom: 0;
  transition: color var(--transition);
}
.service-card:hover h4 { color: var(--dark); }

.service-card p {
  flex: 1;
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.service-card-footer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 0;
  border: none;
}
.service-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.service-duration {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.service-card-book {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition), gap .2s ease;
  white-space: nowrap;
}
.service-card:hover .service-card-book {
  opacity: 1;
  transform: translateX(0);
  gap: 10px;
}

.service-category-badge { display: none; }

/* =============================================
   GALERIE
   ============================================= */
#gallery {
  background: var(--cream);
  padding: 96px 0 72px;
}
#gallery .section-title { color: var(--dark); }
#gallery .section-label { color: var(--gold); }

.gallery-section-header { margin-bottom: 48px; }

.gallery-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: .02em;
}

/* Masonry grid */
.gallery-masonry-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.gthumb {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--cream-2);
  grid-row: span 1;
}
.gthumb--tall  { grid-row: span 2; }
.gthumb--wide  { grid-column: span 2; }

.gthumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.88) saturate(1.05);
}
.gthumb:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.15);
}

.gthumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184,113,138,0) 0%,
    rgba(184,113,138,.18) 100%
  );
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 14px;
  border: 1.5px solid transparent;
}
.gthumb:hover .gthumb-overlay {
  opacity: 1;
  border-color: rgba(184,113,138,.5);
}

/* CTA po galeriii */
.gallery-cta {
  text-align: center;
  padding: 56px 24px 8px;
}
.gallery-cta p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* =============================================
   REZERVAČNÍ SYSTÉM
   ============================================= */
/* A) Krokový indikátor – tab styl */
.booking-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: default;
  transition: all var(--transition);
}
.step-num {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.step-name {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}
.step.active {
  border-bottom-color: var(--gold);
}
.step.active .step-num,
.step.active .step-name { color: var(--gold); }
.step.done { cursor: pointer; }
.step.done .step-num,
.step.done .step-name { color: var(--dark); }
.step.done:hover { border-bottom-color: var(--gold-light); }
.step.done:hover .step-num,
.step.done:hover .step-name { color: var(--gold); }

/* C) Otevřený layout – bez karty */
.booking-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.booking-step-content { display: none; }
.booking-step-content.active { display: block; }

.booking-step-content h3 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 28px;
}

/* Info o vybrané službě ve kroku 2 */
.selected-service-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 28px;
}
.selected-service-badge:empty { display: none; }
.selected-service-badge .ssb-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.selected-service-badge .ssb-info { flex: 1; }
.selected-service-badge .ssb-name {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
}
.selected-service-badge .ssb-meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.selected-service-badge .ssb-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

/* Kategorie služeb */
.service-categories {}
/* B) Service options – editorial řádky */
.category-block { margin-bottom: 40px; }
.category-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 0;
  padding: 0 0 12px;
}
.category-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-option {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition), padding var(--transition), border-radius var(--transition);
}
.service-option:hover {
  background: var(--cream-2);
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 8px;
  border-color: transparent;
}
.service-option.selected {
  background: rgba(184,113,138,.07);
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 8px;
  border-color: transparent;
  box-shadow: inset 3px 0 0 var(--gold);
}
.service-option-left { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.service-option-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
}
.service-option-dur {
  font-size: .8rem;
  color: var(--text-muted);
}
.service-option-price {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  flex-shrink: 0;
}

/* Kalendář */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.calendar-wrap,
.slots-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
#calMonthYear {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  text-transform: capitalize;
}
.cal-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}
.cal-nav:hover { border-color: var(--gold); color: var(--gold); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.cal-weekdays span {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 4px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(184,113,138,.12);
  border-color: var(--gold);
  color: var(--gold);
}
.cal-day.selected {
  background: var(--gold);
  color: var(--white);
  font-weight: 500;
}
.cal-day.today:not(.selected) { font-weight: 700; color: var(--gold); }
.cal-day.disabled { color: var(--border); cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.slots-wrap {}
.slots-hint {
  font-size: .9rem;
  color: var(--text-muted);
  text-align: center;
  padding: 32px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.custom-time-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.custom-time-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--text-muted);
  font-size: .8rem;
}
.custom-time-divider::before,
.custom-time-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.custom-time-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-time-inputs input[type="number"] {
  width: 72px;
  padding: 10px 8px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  text-align: center;
  outline: none;
  transition: border-color var(--transition);
  -moz-appearance: textfield;
}
.custom-time-inputs input[type="number"]::-webkit-inner-spin-button,
.custom-time-inputs input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.custom-time-inputs input[type="number"]:focus { border-color: var(--gold); }
.custom-time-sep {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
}
.custom-time-error {
  font-size: .78rem;
  color: #c0392b;
  min-height: 1em;
}
.slot-btn {
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .88rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
  text-align: center;
}
.slot-btn:not([disabled]):hover  { border-color: var(--gold); color: var(--gold); background: rgba(184,113,138,.06); }
.slot-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--white); }
.slot-short {
  background: #fff5f5;
  border-color: #f5c2c7;
  color: #c0392b;
  cursor: not-allowed;
  opacity: .85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.slot-short-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .8;
}

/* Timeline */
.day-timeline {
  margin-bottom: 20px;
}
.tl-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: .78rem;
  color: var(--text-muted);
}
.tl-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tl-legend-item::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10px;
  border-radius: 3px;
}
.tl-legend-busy::before   { background: #e8b4c0; }
.tl-legend-preview::before { background: rgba(74,163,110,.25); border: 1.5px solid #4aa36e; }
.tl-bar {
  position: relative;
  height: 48px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: visible;
}
.tl-busy {
  position: absolute;
  top: 0;
  height: 100%;
  background: #e8b4c0;
  border-radius: 6px;
  z-index: 1;
}
.tl-preview {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(74,163,110,.2);
  border: 2px solid #4aa36e;
  border-radius: 6px;
  z-index: 2;
  transition: left .15s ease, width .15s ease;
  pointer-events: none;
}
.tl-tick {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}
.tl-tick-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: var(--border);
}
.tl-tick-label {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tl-tick-pre {
  position: absolute;
  bottom: -20px;
  right: 1px;
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tl-tick-post {
  position: absolute;
  bottom: -20px;
  left: 1px;
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tl-bar { margin-bottom: 28px; }

/* Formulář */
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .02em;
}
.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: .8rem;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input.error,
.form-group textarea.error { border-color: #e74c3c; }

/* Shrnutí */
.booking-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.summary-row:last-child { border: none; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { font-weight: 500; color: var(--dark); }
.summary-row.total .label { font-weight: 600; color: var(--dark); }
.summary-row.total .value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
}

.summary-notice {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
#booking .btn-outline {
  color: var(--text);
  border-color: var(--border);
}
#booking .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* Úspěch */
.booking-success {
  text-align: center;
  padding: 24px 0;
}
.success-icon {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 20px;
}
.booking-success h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.booking-success p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.success-code {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  margin: 8px 0 16px;
}
.success-note {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* =============================================
   KONTAKT
   ============================================= */
#contact { background: var(--white); }
#contact .section-title { color: var(--dark); }
#contact .section-label { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info p { color: var(--text-muted); }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 4px;
  width: 20px;
  text-align: center;
}
.contact-item strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item p { color: var(--text); font-size: .95rem; }
.contact-item a:hover { color: var(--gold); }

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.map-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(44,26,36,.1);
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all var(--transition);
}
.map-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,113,138,.05);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-script { font-size: 1.1rem; }
.footer-brand .logo-name { font-size: 1.25rem; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  margin-top: 12px;
  color: rgba(255,255,255,.4);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong,
.footer-contact strong {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.footer-contact i { color: var(--gold); width: 16px; text-align: center; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
#lightboxImg {
  /* Malé obrázky vynutíme zobrazit větší – min 70vw nebo 700px */
  width: min(90vw, 900px);
  min-width: min(70vw, 700px);
  max-width: min(90vw, 900px);
  max-height: 85vh;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  image-rendering: auto;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px;
  transition: color var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* =============================================
   RESPONZIVNÍ – VELKÝ MONITOR (min 1440px)
   ============================================= */
@media (min-width: 1440px) {
  .container        { max-width: 1380px; }
  .gallery-masonry-wrap { max-width: 1520px; padding: 0 48px; }
  section           { padding: 112px 0; }
  .section-title    { font-size: clamp(2.4rem, 3vw, 3.6rem); }
  .hero-title       { font-size: clamp(4.5rem, 6vw, 7.5rem); }
  .hero-left        { padding: 140px 72px 100px 120px; }
  .hero-sub         { font-size: 1.1rem; }
  .service-card     { padding: 24px 0; }
  .service-card h4  { flex: 0 0 260px; font-size: 1.15rem; }
  .service-price    { font-size: 1.35rem; }
  .about-text p     { font-size: 1.1rem; }
  .stat-num         { font-size: 2.8rem; }
  .booking-card     { max-width: 960px; }
  .gallery-masonry-wrap { grid-auto-rows: 210px; }
}

/* =============================================
   RESPONZIVNÍ – ULTRAWIDE / 4K (min 1920px)
   ============================================= */
@media (min-width: 1920px) {
  .container        { max-width: 1680px; }
  .gallery-masonry-wrap { max-width: 1860px; padding: 0 60px; }
  section           { padding: 136px 0; }
  .section-title    { font-size: clamp(2.8rem, 2.8vw, 4.2rem); }
  .section-label    { font-size: .9rem; }
  .hero-title       { font-size: clamp(5rem, 6vw, 9rem); }
  .hero-content     { max-width: min(960px, 56vw); }
  .hero-sub         { font-size: 1.25rem; }
  .service-card     { padding: 26px 0; }
  .service-card h4  { flex: 0 0 280px; font-size: 1.2rem; }
  .service-card p   { font-size: 1rem; }
  .service-price    { font-size: 1.6rem; }
  .about-text p     { font-size: 1.15rem; }
  .stat-num         { font-size: 3.2rem; }
  .stat-label       { font-size: .9rem; }
  .booking-card     { max-width: 1100px; }
  .gallery-masonry-wrap { grid-auto-rows: 240px; }
  .nav-container    { max-width: 1680px; }
  .logo-name        { font-size: 1.3rem; }
  .logo-script      { font-size: 1.15rem; }
  .nav-links        { gap: 40px; }
  .nav-links a      { font-size: 1rem; }
  body              { font-size: 1.05rem; }
}

/* =============================================
   RESPONZIVNÍ – ULTRAWIDE 34"+ (min 2200px)
   ============================================= */
@media (min-width: 2200px) {
  .container        { max-width: min(86vw, 2800px); }
  .nav-container    { max-width: min(86vw, 2800px); }
  .gallery-masonry-wrap { max-width: min(90vw, 3000px); padding: 0 80px; }
  section           { padding: 160px 0; }
  .hero-content     { max-width: min(58vw, 1400px); }
  .hero-title       { font-size: clamp(7rem, 5.5vw, 14rem); }
  .hero-sub         { font-size: 1.35rem; }
  .section-title    { font-size: clamp(3.5rem, 2.5vw, 5.5rem); }
  .section-label    { font-size: 1rem; }
  .service-card     { padding: 28px 0; }
  .service-card h4  { flex: 0 0 320px; font-size: 1.25rem; }
  .service-card p   { font-size: 1rem; }
  .service-price    { font-size: 1.5rem; }
  .about-text p     { font-size: 1.2rem; }
  .stat-num         { font-size: 4rem; }
  .booking-card     { max-width: min(60vw, 1400px); }
  .gallery-masonry-wrap { grid-auto-rows: 280px; }
  .logo-name        { font-size: 1.5rem; }
  .logo-script      { font-size: 1.3rem; }
  .nav-links        { gap: 52px; }
  .nav-links a      { font-size: 1.05rem; }
  body              { font-size: 1.15rem; }
}

/* =============================================
   RESPONZIVNÍ – TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-images  { display: none; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONZIVNÍ – MOBIL (max 768px)
   ============================================= */
@media (max-width: 768px) {
  section { padding: 44px 0; }

  /* --- Navigace --- */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 850;
  }
  .nav-links.open  { display: flex; }
  .nav-links a     { font-size: 1.1rem; }
  .nav-links .nav-cta { margin-top: 8px; }

  /* --- Typografie – globálně menší na mobilu --- */
  .section-title   { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .section-label   { font-size: .68rem; letter-spacing: .14em; }
  .section-header  { margin-bottom: 32px; }

  /* --- Hero – na mobilu: text nahoře, foto dole --- */
  #hero            { grid-template-columns: 1fr; grid-template-rows: auto 44vh; height: auto; min-height: unset; }
  .hero-left       { padding: 100px 24px 40px; order: 1; justify-content: center; }
  .hero-right      { order: 2; height: 44vh; }
  .hero-img        { object-position: center 20%; }
  .hero-content    { width: 100%; max-width: 100%; text-align: center; }
  .hero-tagline    { font-size: .68rem; letter-spacing: .2em; margin-bottom: 14px; justify-content: center; }
  .hero-title      { font-size: clamp(2.4rem, 9vw, 3.4rem); margin-bottom: 16px; }
  .hero-title em   { display: inline; }
  .hero-sub        { font-size: .88rem; margin-bottom: 28px; }
  .hero-actions    { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 260px; justify-content: center; font-size: .82rem; padding: 12px 24px; }
  .hero-scroll     { display: none; }

  /* --- O nás --- */
  .about-text p    { font-size: .9rem; }
  .about-stats     { flex-direction: row; gap: 8px; margin: 24px 0; padding: 18px 0; }
  .stat-num        { font-size: 1.7rem; }
  .stat-label      { font-size: .62rem; letter-spacing: .04em; }
  .about-perks     { gap: 10px; margin-top: 18px; }
  .perk            { font-size: .8rem; }

  /* --- Služby --- */
  .services-filter { gap: 6px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center; }
  .filter-btn      { padding: 7px 16px; font-size: .75rem; }
  .services-filter { margin-bottom: 36px; }
  .filter-btn      { padding: 10px 16px; font-size: .72rem; letter-spacing: .1em; }
  .services-cat-header h3 { font-size: 1.7rem; padding: 4px 0 14px; }
  .services-category-group { margin-bottom: 40px; }
  /* Mobil: karty se stohují vertikálně */
  .service-card    { flex-wrap: wrap; gap: 4px 16px; padding: 14px 0; }
  .service-card h4 { flex: 1 1 100%; font-size: .95rem; margin-bottom: 2px; }
  .service-card p  { flex: 1 1 100%; font-size: .8rem; line-height: 1.5; }
  .service-card-footer { flex-direction: row; gap: 12px; padding-top: 8px; border-top: 1px solid var(--border); width: 100%; justify-content: space-between; }
  .service-price   { font-size: 1.05rem; }
  .service-duration { font-size: .75rem; }
  .service-card-book { display: none; }

  /* --- Galerie --- */
  #gallery         { padding: 44px 0 32px; }
  .gallery-section-header { margin-bottom: 28px; }
  .gallery-quote   { font-size: .95rem; }
  .gallery-masonry-wrap {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
    gap: 6px;
    padding: 0 12px;
  }
  .gthumb--tall    { grid-row: span 1; }
  .gthumb--wide    { grid-column: span 1; }
  .gallery-cta     { padding: 20px 16px 0; }
  .gallery-cta p   { font-size: .85rem; }

  /* --- Rezervace --- */
  .booking-step-content h3 { font-size: 1.3rem; margin-bottom: 18px; }
  .booking-steps   { margin-bottom: 32px; }
  .step            { padding: 0 14px 14px; }
  .step-name       { display: none; }
  .step-num        { font-size: .72rem; }
  .datetime-grid   { grid-template-columns: 1fr; gap: 20px; }
  .form-row        { grid-template-columns: 1fr; }
  .form-group label { font-size: .8rem; }
  .form-group input,
  .form-group textarea { font-size: .88rem; padding: 10px 14px; }
  .cal-day         { font-size: .82rem; }
  .slots-grid      { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .slot-btn        { padding: 9px 6px; font-size: .78rem; }
  .selected-service-badge { padding: 8px 12px; gap: 8px; }
  .ssb-name        { font-size: .85rem; }
  .ssb-meta        { font-size: .75rem; }
  .ssb-price       { font-size: 1rem; }

  /* --- Kontakt --- */
  .contact-info    { padding: 0; }
  .contact-item    { margin-bottom: 16px; gap: 12px; }
  .contact-item strong { font-size: .72rem; }
  .contact-item p  { font-size: .88rem; }

  /* --- Footer --- */
  .footer-inner    { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand p  { font-size: .82rem; }
  .footer-links a, .footer-contact p { font-size: .85rem; }
  .footer-bottom p { font-size: .76rem; }
}

/* =============================================
   RESPONZIVNÍ – MALÝ MOBIL (max 480px)
   ============================================= */
@media (max-width: 480px) {
  section { padding: 36px 0; }

  .section-title   { font-size: clamp(1.3rem, 7vw, 1.7rem); }
  .section-header  { margin-bottom: 24px; }

  /* Hero */
  .hero-tagline    { font-size: .64rem; }
  .hero-title      { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-sub        { font-size: .8rem; }

  /* Služby */
  .filter-btn      { padding: 6px 13px; font-size: .72rem; }
  .service-card    { padding: 12px 14px; }
  .service-card h4 { font-size: .9rem; }

  /* Galerie */
  .gallery-masonry-wrap {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 110px;
    gap: 5px;
  }

  /* Rezervace */
  .slots-grid      { grid-template-columns: repeat(2, 1fr); }
  .booking-form    { padding: 20px 16px; }
  .calendar-wrap,
  .slots-wrap      { padding: 16px; }
  .step-actions    { flex-direction: column-reverse; gap: 8px; }
  .step-actions .btn { width: 100%; justify-content: center; font-size: .8rem; }

  /* Kontakt */
  .map-img         { aspect-ratio: 16/9; }
}
