/* ═══════════════════════════════════════════
   DARKVERSE — Main Stylesheet  v2.2
   Headings: Playfair Display  |  Body: DM Sans
═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:         #C8722E;
  --gold-light:   #DC9050;
  --purple:       #7B35C0;
  --purple-light: #A04EF0;
  --purple-mid:   #8B40D8;

  --dark:   #07070F;
  --dark-2: #0C0C1A;
  --dark-3: #121222;
  --dark-4: #18182E;

  --white:      #F2F0FC;
  --text:       #E4E2F4;
  --text-dim:   #C0BEDC;
  --text-muted: #857FA8;
}

html { scroll-behavior: auto; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% 5%,  rgba(123,53,192,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 95%, rgba(212,121,58,0.04) 0%, transparent 55%);
}

img { max-width: 100%; display: block; }
section[id]:not(#home) { scroll-margin-top: 80px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px;
  background: linear-gradient(to bottom, rgba(7,7,15,0.92) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.35s, border-color 0.35s;
}
nav.scrolled {
  background: rgba(7,7,15,0.98);
  border-bottom: 1px solid rgba(123,53,192,0.18);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 88px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active       { color: var(--white); }

/* CTA button — gradient border, like the nav link underlines */
.nav-cta {
  position: relative;
  color: var(--white);
  padding: 13px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--gold) 100%);
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(123,53,192,0.5), 0 2px 8px rgba(200,114,46,0.25);
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(123,53,192,0.65), 0 4px 14px rgba(200,114,46,0.35);
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-dim);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); background: var(--white); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); background: var(--white); }

/* overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

/* drawer panel */
.nav-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: #08080F;
  border-left: 1px solid rgba(123,53,192,0.2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(123,53,192,0.12);
  flex-shrink: 0;
}
.mobile-logo { height: 40px; width: auto; object-fit: contain; }
.mobile-close {
  background: none; border: none;
  color: var(--text-dim); font-size: 20px;
  cursor: pointer; padding: 4px 8px;
  transition: color 0.2s; line-height: 1;
}
.mobile-close:hover { color: var(--white); }

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.mobile-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(123,53,192,0.07);
  transition: all 0.2s;
}
.mobile-links a:last-child { border-bottom: none; }
.mobile-links a:hover { color: var(--white); background: rgba(123,53,192,0.08); padding-left: 36px; }

.mobile-cta {
  display: block;
  margin: 20px 28px 28px;
  padding: 15px;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--gold) 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 10.5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(123,53,192,0.4);
}
.mobile-cta:hover { opacity: 0.85; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#home {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(7,7,15,0.96) 0%, rgba(18,6,36,0.58) 50%, rgba(7,7,15,0.92) 100%),
    url('../images/main.jpg') center/cover no-repeat;
}
.hero-smoke {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 72% 50%, rgba(123,53,192,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 82% 65%, rgba(200,114,46,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 760px;
  animation: heroIn 1.3s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light) 20%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 54px;
  margin-top: 24px;
  font-weight: 400;
  max-width: 540px;
  line-height: 1.7;
}
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  animation: scrollBounce 2.5s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  55%      { transform: translateY(8px); }
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

/* ─────────────────────────────────────────
   SHARED COMPONENTS
───────────────────────────────────────── */
section { padding: 110px 60px; }

.section-tag {
  font-size: 9.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  flex-shrink: 0;
}
.section-tag.centered { justify-content: center; }
.section-tag.centered::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
}
.section-title.centered { text-align: center; }

.divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  margin: 32px 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--gold) 100%);
  color: var(--white);
  padding: 15px 44px;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 48px;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(123,53,192,0.45);
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--purple-light);
  padding: 13px 30px;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  min-height: 46px;
  position: relative;
  isolation: isolate;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.btn-outline:hover {
  background: linear-gradient(135deg, rgba(123,53,192,0.18), rgba(200,114,46,0.12));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(123,53,192,0.25);
}
.btn-outline:hover::before { opacity: 1; }

/* ─────────────────────────────────────────
   ABOUT / O NÁS
───────────────────────────────────────── */
#offer {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
#offer::before {
  content: 'D';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 360px;
  color: rgba(123,53,192,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
}
.about-img-border {
  position: absolute;
  bottom: -22px; right: -22px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1px solid rgba(123,53,192,0.4);
  pointer-events: none;
}
.about-text p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* ─────────────────────────────────────────
   SERVICES — numbered redesign
───────────────────────────────────────── */
#services {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 110px 60px;
}
.services-header { margin-bottom: 72px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(123,53,192,0.2);
  padding: 56px 44px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.service-card:hover {
  border-color: rgba(160,78,240,0.45);
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(7,7,15,0.55), 0 0 44px rgba(123,53,192,0.08);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 32px;
  opacity: 0.75;
  transition: opacity 0.4s;
}
.service-card:hover .service-num { opacity: 1; }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.service-text { color: var(--text-dim); font-size: 15.5px; line-height: 1.85; }

.service-body { flex: 1; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-tags span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(123,53,192,0.25);
  border-radius: 20px;
  padding: 4px 8px;
  transition: border-color 0.3s, color 0.3s;
}
.service-card:hover .service-tags span {
  border-color: rgba(160,78,240,0.5);
  color: var(--text-dim);
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
#gallery { background: var(--dark-2); padding: 110px 60px; }
.gallery-header { margin-bottom: 56px; }

[data-behold-id] { max-width: 1240px; margin: 0 auto; }

.gallery-ig-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.gallery-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  position: relative;
  transition: color 0.3s;
  isolation: isolate;
}
.gallery-ig-link::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.gallery-ig-link:hover { color: var(--white); }
.gallery-ig-link:hover::before { opacity: 1; }
.gallery-ig-icon {
  color: var(--purple-light);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.gallery-ig-link:hover .gallery-ig-icon { color: var(--gold-light); }
.gallery-ig-arrow { transition: transform 0.3s; }
.gallery-ig-link:hover .gallery-ig-arrow { transform: translateX(5px); }

/* ─────────────────────────────────────────
   MAP — Mapa ČR
───────────────────────────────────────── */
#map { background: var(--dark); padding: 110px 60px; }
.map-header { margin-bottom: 20px; }

.map-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.map-wrap { max-width: 960px; margin: 0 auto; }

.cz-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ─────────────────────────────────────────
   PRICING — redesigned
───────────────────────────────────────── */
#prices {
  background: var(--dark-2);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
#prices::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,53,192,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.pricing-header { margin-bottom: 16px; }
.pricing-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto 64px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--dark-3);
  border: 1px solid rgba(123,53,192,0.15);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover {
  border-color: rgba(123,53,192,0.5);
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(7,7,15,0.6), 0 0 40px rgba(123,53,192,0.1);
}
.pricing-card.featured {
  border-color: rgba(123,53,192,0.4);
  background: linear-gradient(160deg, var(--dark-3) 0%, rgba(123,53,192,0.06) 100%);
}
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -1px; right: 28px;
  background: linear-gradient(135deg, var(--purple-mid), var(--gold));
  color: var(--white);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  padding: 5px 14px;
  font-weight: 700;
}
.pricing-card { position: relative; }

.pricing-tier {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0;
  line-height: 1;
  letter-spacing: -1px;
}
.pricing-price span {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0;
}
.pricing-from {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}
.pricing-divider {
  width: 100%; height: 1px;
  background: rgba(123,53,192,0.15);
  margin: 20px 0;
}
.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-features li {
  color: var(--text);
  font-size: 14.5px;
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.55;
}
.pricing-features li::before {
  content: '–';
  color: var(--purple-light);
  font-weight: 600;
  flex-shrink: 0;
}
.pricing-card.featured .btn-outline {
  background: linear-gradient(135deg, var(--purple-mid), var(--gold));
  color: var(--white);
}
.pricing-card.featured .btn-outline::before { opacity: 0; }

/* ─────────────────────────────────────────
   CALENDAR
───────────────────────────────────────── */
#calendar { background: var(--dark); padding: 110px 60px; position: relative; overflow: hidden; }
#calendar::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,114,46,0.04) 0%, transparent 70%);
  top: -120px; right: -120px;
  pointer-events: none;
}
.cal-header { margin-bottom: 54px; }
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 52px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.cal-nav-btn {
  background: none;
  border: 1px solid rgba(123,53,192,0.3);
  color: var(--purple-light);
  width: 44px; height: 44px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover { background: var(--purple-mid); border-color: var(--purple-mid); color: var(--white); }
.cal-month-label {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: capitalize;
  min-width: 220px;
  text-align: center;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px; gap: 4px;
}
.cal-weekday {
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  font-weight: 600;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  border-radius: 4px;
  cursor: default;
  transition: all 0.2s;
  border: 1px solid transparent;
  user-select: none;
  font-weight: 500;
}
.cal-day.empty  { background: none; }
.cal-day.past   { color: var(--text-muted); opacity: 0.45; }
.cal-day.free   { background: rgba(123,53,192,0.1); color: var(--text); border-color: rgba(123,53,192,0.2); cursor: pointer; }
.cal-day.free:hover { background: rgba(123,53,192,0.28); border-color: var(--purple-light); color: var(--white); transform: scale(1.1); z-index: 2; }
.cal-day.booked { background: rgba(200,55,45,0.08); color: rgba(220,95,85,0.45); border-color: rgba(200,55,45,0.15); cursor: not-allowed; text-decoration: line-through; }
.cal-day.today  { border-color: var(--gold) !important; color: var(--gold-light) !important; font-weight: 700; }
.cal-day.selected { background: linear-gradient(135deg, var(--purple-mid), var(--gold)) !important; color: var(--white) !important; border-color: transparent !important; font-weight: 700; transform: scale(1.1); z-index: 3; box-shadow: 0 5px 20px rgba(123,53,192,0.5); }

.cal-legend { display: flex; gap: 22px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.cal-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.ld-free   { background: rgba(123,53,192,0.35); border: 1px solid rgba(123,53,192,0.55); }
.ld-booked { background: rgba(200,55,45,0.28);  border: 1px solid rgba(200,55,45,0.4); }
.ld-today  { background: transparent; border: 1px solid var(--gold); }

.cal-sidebar { display: flex; flex-direction: column; gap: 18px; }
.cal-info-box, .cal-selected-display { background: var(--dark-3); border: 1px solid rgba(123,53,192,0.18); padding: 28px 30px; }
.cal-info-box h3, .cal-selected-display h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.cal-selected-display h3 { color: var(--purple-light); }
.cal-info-box p { font-size: 14.5px; color: var(--text-dim); line-height: 1.8; }
.cal-selected-date { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); margin-bottom: 18px; line-height: 1.3; }
.cal-selected-empty { font-size: 14px; color: var(--text-muted); font-style: italic; }
.cal-book-btn {
  background: linear-gradient(135deg, var(--purple-mid), var(--gold));
  color: var(--white); border: none;
  padding: 14px 28px;
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.3s; width: 100%; min-height: 46px;
}
.cal-book-btn:hover { box-shadow: 0 10px 28px rgba(123,53,192,0.45); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   REVIEWS + FAQ
───────────────────────────────────────── */
#reviews { background: var(--dark-2); padding: 110px 60px; }
.reviews-header { margin-bottom: 56px; }

/* Reviews carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto 64px;
  padding-bottom: 4px; /* avoid clipping hover shadows */
}
.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  background: var(--dark-3);
  border: 1px solid rgba(123,53,192,0.16);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(160,78,240,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(7,7,15,0.4);
}

/* carousel nav */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.rev-btn {
  background: none;
  border: 1px solid rgba(123,53,192,0.35);
  color: var(--purple-light);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}
.rev-btn:hover { background: var(--purple-mid); border-color: var(--purple-mid); color: var(--white); }
.rev-btn:disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }
.rev-dots { display: flex; gap: 8px; align-items: center; }
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(160,78,240,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.rev-dot.active {
  background: var(--purple-light);
  transform: scale(1.4);
}
.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--purple-mid);
  opacity: 0.35;
  margin-bottom: 20px;
  display: block;
}
.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
  flex: 1;
  font-style: italic;
}
.review-stars  { color: var(--gold-light); font-size: 14px; letter-spacing: 2px; order: -1; margin-bottom: 12px; }
.review-author { border-top: 1px solid rgba(123,53,192,0.12); padding-top: 18px; margin-top: auto; }
.review-name   { color: var(--white); font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.review-detail,
.review-event  { color: var(--text-muted); font-size: 11.5px; letter-spacing: 0.5px; }

/* FAQ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-title-wrap { margin-bottom: 48px; }

.faq-list { border-top: 1px solid rgba(123,53,192,0.15); }
.faq-item  { border-bottom: 1px solid rgba(123,53,192,0.15); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15.5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-align: left;
  gap: 20px;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--purple-light); }

.faq-icon {
  font-size: 22px;
  color: var(--purple-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  color: var(--text-dim);
  font-size: 15px;
  padding: 0 48px 22px 0;
  line-height: 1.85;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact { background: var(--dark); padding: 110px 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 400;
  color: var(--white); line-height: 1.05;
  margin-bottom: 44px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(123,53,192,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.contact-item-label { font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--purple-light); margin-bottom: 5px; font-weight: 600; }
.contact-item-value { color: var(--text); font-size: 15px; line-height: 1.6; }
.contact-item-value a { color: var(--text); text-decoration: none; transition: color 0.25s; }
.contact-item-value a:hover { color: var(--gold-light); }
.contact-item-value small { font-size: 12px; color: var(--text-muted); }

.contact-form-wrap { background: var(--dark-3); border: 1px solid rgba(123,53,192,0.18); padding: 40px 48px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 22px; }
.form-group { margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.form-row .form-group { margin-bottom: 12px; }
.form-input, .form-textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(123,53,192,0.2);
  color: var(--text);
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 400;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); font-size: 13.5px; }
.form-input:focus, .form-textarea:focus { border-color: rgba(160,78,240,0.6); box-shadow: 0 0 0 3px rgba(123,53,192,0.1); }
.form-textarea { min-height: 95px; resize: vertical; }
.form-submit {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--gold) 100%);
  color: var(--white); border: none;
  padding: 16px 40px;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.3s; width: 100%; min-height: 50px;
}
.form-submit:hover { box-shadow: 0 10px 34px rgba(123,53,192,0.45); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-label { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; display: block; }

.pkg-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-option {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 20px;
  background: rgba(123,53,192,0.06);
  border: 1px solid rgba(123,53,192,0.2);
  color: var(--text-muted);
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.22s;
  user-select: none;
}
.pkg-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.pkg-option:hover {
  border-color: rgba(160,78,240,0.55);
  background: rgba(123,53,192,0.14);
  color: var(--text);
  transform: translateY(-1px);
}
.pkg-option:has(input:checked) {
  background: linear-gradient(135deg, rgba(139,63,207,0.38) 0%, rgba(200,114,46,0.22) 100%);
  border-color: var(--purple-light);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(160,78,240,0.25), 0 4px 16px rgba(123,53,192,0.25);
  transform: translateY(-1px);
}

.form-err { font-size: 13px; color: #e05555; min-height: 18px; margin-top: 6px; }

.h-captcha { margin-top: 10px; margin-bottom: 6px; }

/* Na dotaz — calendar */
.cal-day.maybe { background: rgba(200,120,40,0.1); color: rgba(220,145,70,0.7); border-color: rgba(200,120,40,0.25); cursor: default; }
.ld-maybe { background: rgba(200,120,40,0.25); border: 1px solid rgba(200,120,40,0.5); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: #04040C; border-top: 1px solid rgba(123,53,192,0.12); padding: 64px 60px; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 32px; text-decoration: none; }
.footer-logo img { width: 300px; height: 108px; object-fit: contain; }
.footer-logo-text { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: 5px; text-transform: uppercase; }
.footer-logo-sub { font-size: 9.5px; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-top: 3px; }
.footer-links { display: flex; justify-content: center; gap: 36px; list-style: none; margin-bottom: 30px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; }
.footer-social a { width: 44px; height: 44px; border: 1px solid rgba(123,53,192,0.25); display: flex; align-items: center; justify-content: center; color: var(--text-dim); text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--purple-light); color: var(--purple-light); background: rgba(123,53,192,0.1); }
.footer-copy { color: var(--text-muted); font-size: 11px; letter-spacing: 1.5px; }

/* ─────────────────────────────────────────
   RESPONSIVE — 1120px  (nav gets tight with 8 items)
───────────────────────────────────────── */
@media (max-width: 1120px) {
  nav { padding: 12px 32px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 9.5px; letter-spacing: 1.5px; }
  .nav-cta { padding: 11px 22px; font-size: 10px; letter-spacing: 1.5px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 900px
───────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 72px 24px; }
  #services, #gallery, #prices, #map, #calendar, #reviews, #faq, #contact { padding: 72px 24px; }
  footer { padding: 44px 24px; }

  .hero-content { padding: 0 24px; }
  .hero-scroll   { left: 24px; }

  .about-grid         { grid-template-columns: 1fr; gap: 52px; }
  .about-img-border   { display: none; }
  .about-img-wrap img { height: 340px; }

  .services-grid  { grid-template-columns: 1fr; gap: 1px; }
  .service-card   { padding: 38px 28px; }
  .service-num    { font-size: 56px; }

  .pricing-grid   { grid-template-columns: 1fr; gap: 18px; }
  .pricing-card   { padding: 38px 28px; }

  .review-card { flex: 0 0 calc((100% - 22px) / 2); }

  .calendar-layout    { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 52px; }
  .contact-form-wrap  { padding: 32px 24px; }
  .form-row           { grid-template-columns: 1fr; }

  .services-header, .gallery-header, .reviews-header { margin-bottom: 44px; }
  .cal-header { margin-bottom: 38px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 480px
───────────────────────────────────────── */
@media (max-width: 480px) {
  section { padding: 60px 18px; }
  #services, #gallery, #prices, #map, #calendar, #reviews, #faq, #contact { padding: 60px 18px; }
  .review-card { flex: 0 0 100%; }

  .hero-content    { padding: 0 18px; }
  .hero-scroll     { display: none; }

  .about-img-wrap img { height: 260px; }
  .about-text p       { font-size: 15px; }

  .pricing-price  { font-size: 34px; }

  .contact-form-wrap { padding: 24px 18px; }
  .footer-links { gap: 18px; }

  .cal-nav-btn      { width: 38px; height: 38px; }
  .cal-month-label  { font-size: 20px; min-width: unset; }
}
