/*
  =========================================
  VELVET RESONANCE - DESIGN SYSTEM STYLES
  =========================================
  Theme: Luxurious Serenity
  Palette: Gold, Sage, Limestone, Charcoal
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --surface: #fff8f5;
  --surface-dim: #e1d8d4;
  --surface-bright: #fff8f5;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #fbf2ed;
  --surface-container: #f5ece7;
  --surface-container-high: #efe6e2;
  --surface-container-highest: #e9e1dc;
  --on-surface: #1e1b18;
  --on-surface-variant: #4b4738;

  --primary: #A79783; /* Gold Accent */
  --on-primary: #ffffff;
  --primary-container: #c5b358;
  --on-primary-container: #504500;

  --secondary: #808368; /* Muted Sage */
  --on-secondary: #ffffff;
  --secondary-container: #d6e7a1;
  --on-secondary-container: #5a682f;

  --tertiary: #5e604d;
  --on-tertiary: #ffffff;

  --outline: #7c7766;
  --outline-variant: #cdc6b3;

  /* Typography Tokens */
  --font-display: 'Fraunces', serif;
  --font-sans: 'Manrope', sans-serif;

  /* Spacing & Layout Tokens */
  --unit: 8px;
  --container-max: 1400px;
  --header-container-max: 1540px;
  --gutter: 24px;
  --margin-mobile: 20px;
  --margin-desktop: 60px;
  --section-padding: 120px;

  /* Border Radii */
  --rounded-sm: 0benefit-text-box25rem;
  --rounded-default: 0.5rem;
  --rounded-md: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.5rem;
  --rounded-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--on-surface);
  line-height: 1.2;
}

.headline-xl {
  font-size: clamp(2rem, 5vw, 4rem); /* Responsive typography: min 32px, max 64px */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive: min 32px, max 48px */
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.headline-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}

.body-lg {
  font-family: var(--font-sans);
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-surface-variant);
}

.body-md {
  font-family: var(--font-sans);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-surface-variant);
}

.label-sm {
  font-family: var(--font-sans);
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--margin-mobile);
  padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
  }
}

section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

/* Navigation Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.site-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--header-container-max);
  height: 110px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
header.site-header .logo {
    justify-self: start;
    align-items: center;
    display: flex;
  }
@media (min-width: 1200px) {
  header.site-header .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  header.site-header .nav-links {
    display: flex;
    justify-self: center;
  }

  header.site-header .header-actions {
    justify-self: end;
  }
}

header.site-header .logo img {
  height: 64px;
  width: auto;
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled Header State (> 100px) */
header.site-header.scrolled {
  background-color: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 119, 102, 0.1);
  box-shadow: 0 10px 30px rgba(30, 27, 24, 0.05);
}

header.site-header.scrolled .nav-container {
  height: 72px;
}

header.site-header.scrolled .logo img {
  transform: scale(0.72);
}

header.site-header .nav-links {
  display: none;
  gap: 32px;
}

header.site-header .nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--on-surface-variant);
  transition: var(--transition-fast);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

header.site-header .nav-links a:hover {
  color: var(--primary);
}

header.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1200px) {
  header.site-header .nav-links {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--rounded-default);
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--surface);
  box-shadow: 0 10px 30px -10px rgba(86, 100, 43, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  z-index: -1;
  transition: none;
}

.btn-primary:hover::after {
  left: 110%;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  box-shadow: 0 15px 35px -10px rgba(86, 100, 43, 0.4);
  filter: brightness(0.95);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(108, 94, 6, 0.05);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--surface);
  border-color: rgba(255, 248, 245, 0.5);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background-color: var(--surface);
  color: var(--on-surface);
  border-color: var(--surface);
}

.btn-white {
  background-color: var(--surface);
  color: var(--on-surface);
  border-color: var(--surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--surface) !important;
  border-color: var(--surface);
  box-shadow: none;
}

/* Big Hero Section with Picture Behind It */
section.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px; /* Accommodate header */
  padding-bottom: 120px;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 248, 245, 0.85) 0%,
    rgba(255, 248, 245, 0.7) 50%,
    rgba(255, 248, 245, 0.95) 100%
  ), url('images/spa_background.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  color: var(--on-surface-variant);
  opacity: 0.8;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  animation: hero-scroll-slide 2s infinite ease-in-out;
}

@keyframes hero-scroll-slide {
  0% {
    transform: translateY(-4px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
  100% {
    transform: translateY(-4px);
    opacity: 0.4;
  }
}
section.hero-section .container {
  max-width: 1400px;
}

section.hero-section .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  align-items: center;
}

@media (min-width: 992px) {
  section.hero-section .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

/* Hero Left Column: Text and Buttons */
/* Hero Left Column: Text and Buttons */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-kicker {
  color: var(--primary);
  letter-spacing: 0.2em;
  font-weight: 700;
}

.hero-title {
  color: var(--on-surface);
}

.hero-description {
  max-width: 580px;
  color: var(--on-surface-variant);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Hero Right Column: Blobs with Photos */
.hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  width: 100%;
}

/* Premium Staggered Cinematic Reveal Animations */
@media (prefers-reduced-motion: no-preference) {
  .hero-kicker,
  .hero-title,
  .hero-description,
  .hero-actions,
  .hero-visuals {
    opacity: 0;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: forwards;
  }

  .hero-kicker {
    animation-name: hero-fade-in;
    animation-delay: 0.1s;
  }

  .hero-title {
    animation-name: hero-reveal-title;
    animation-delay: 0.25s;
  }

  .hero-description {
    animation-name: hero-fade-up;
    animation-delay: 0.45s;
  }

  .hero-actions {
    animation-name: hero-fade-up;
    animation-delay: 0.65s;
  }

  .hero-visuals {
    animation-name: hero-reveal-visuals;
    animation-delay: 0.35s;
  }

  @keyframes hero-fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes hero-fade-up {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-reveal-title {
    0% {
      opacity: 0;
      transform: translateY(30px);
      clip-path: inset(0 0 100% 0);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
      clip-path: inset(0 0 -24px 0);
    }
  }

  @keyframes hero-reveal-visuals {
    0% {
      opacity: 0;
      transform: scale(1.06);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
}

@media (min-width: 992px) {
  .hero-visuals {
    height: 550px;
  }
}

/* Overlapping Organic Blobs */
.blob-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.blob {
  position: absolute;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(86, 100, 43, 0.12);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.blob img,
.blob video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Blob - Scalp Care / Video */
.blob-main {
  width: 410px;
  height: 490px;
  top: 0%;
  left: 0%;
  z-index: 1;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  box-shadow: 0 30px 60px -10px rgba(108, 94, 6, 0.15);
}

/* Secondary Blob - Botanicals / Video */
.blob-secondary {
  width: 260px;
  height: 340px;
  bottom: 0%;
  right: 0%;
  z-index: 2;
  border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
  box-shadow: 0 20px 40px -5px rgba(86, 100, 43, 0.15);
}

@media (max-width: 576px) {
  .blob-main {
    width: 240px;
    height: 310px;
    left: 0%;
  }
  .blob-secondary {
    width: 180px;
    height: 230px;
    right: 0%;
  }
}



/* Introduction/About Section */
.about-section {
  background-color: var(--surface-container-low);
  text-align: center;
}

#o-nas {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 10 2 20 10 T 40 10' fill='none' stroke='%2380715e' stroke-width='2' opacity='0.08'/%3E%3Cpath d='M0 30 L 10 22 L 20 30 L 30 22 L 40 30' fill='none' stroke='%23a3a68d' stroke-width='1.2' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.section-kicker {
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 24px;
}

/* Leaf-and-wave ornament after every section H2 */
.section-title::after {
  content: '';
  display: block;
  width: 160px;
  height: 28px;
  margin: 14px auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 28' fill='none'%3E%3C!-- Wavy stem --%3E%3Cpath d='M10 14 C30 6 50 22 80 14 C110 6 130 22 150 14' stroke='%236c5e06' stroke-width='1.4' stroke-linecap='round' opacity='0.35'/%3E%3C!-- Left leaf --%3E%3Cpath d='M46 14 C40 6 32 4 30 10 C32 16 40 18 46 14 Z' fill='%2356642b' opacity='0.28'/%3E%3Cline x1='38' y1='14' x2='46' y2='14' stroke='%2356642b' stroke-width='0.8' opacity='0.4'/%3E%3C!-- Right leaf (mirrored) --%3E%3Cpath d='M114 14 C120 6 128 4 130 10 C128 16 120 18 114 14 Z' fill='%2356642b' opacity='0.28'/%3E%3Cline x1='122' y1='14' x2='114' y2='14' stroke='%2356642b' stroke-width='0.8' opacity='0.4'/%3E%3C!-- Center bud --%3E%3Ccircle cx='80' cy='14' r='3.5' fill='%236c5e06' opacity='0.3'/%3E%3Ccircle cx='80' cy='14' r='1.5' fill='%236c5e06' opacity='0.5'/%3E%3Cpath d='M80 10.5 C80 7 82 5 80 3.5 C78 5 80 7 80 10.5 Z' fill='%2356642b' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Booking section: left-aligned, light version for dark bg */
.booking-section .section-title::after {
  margin-left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 28' fill='none'%3E%3Cpath d='M10 14 C30 6 50 22 80 14 C110 6 130 22 150 14' stroke='%23dac769' stroke-width='1.4' stroke-linecap='round' opacity='0.5'/%3E%3Cpath d='M46 14 C40 6 32 4 30 10 C32 16 40 18 46 14 Z' fill='%23bdce89' opacity='0.4'/%3E%3Cline x1='38' y1='14' x2='46' y2='14' stroke='%23bdce89' stroke-width='0.8' opacity='0.5'/%3E%3Cpath d='M114 14 C120 6 128 4 130 10 C128 16 120 18 114 14 Z' fill='%23bdce89' opacity='0.4'/%3E%3Cline x1='122' y1='14' x2='114' y2='14' stroke='%23bdce89' stroke-width='0.8' opacity='0.5'/%3E%3Ccircle cx='80' cy='14' r='3.5' fill='%23dac769' opacity='0.45'/%3E%3Ccircle cx='80' cy='14' r='1.5' fill='%23dac769' opacity='0.65'/%3E%3Cpath d='M80 10.5 C80 7 82 5 80 3.5 C78 5 80 7 80 10.5 Z' fill='%23bdce89' opacity='0.4'/%3E%3C/svg%3E");
}


.section-description {
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: var(--on-surface-variant);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Item - Refusing standard cards, using Limestone over Cream subtle shifts with ambient glow */
.feature-item {
  background-color: var(--surface-container-lowest);
  padding: 40px var(--gutter);
  border-radius: var(--rounded-lg);
  box-shadow: 0 30px 60px rgba(108, 94, 6, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.feature-item:hover {
  box-shadow: 0 40px 70px rgba(86, 100, 43, 0.07);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--rounded-full);
  background-color: var(--surface-container);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.feature-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
}

/* About Grid & Metrics Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.about-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-content-left .section-title::after {
  margin-left: 0;
}

.about-content-left .section-description {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
}

.about-metrics-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 32px;
  border-top: 1px solid var(--outline-variant);
  padding-top: 32px;
}

@media (min-width: 576px) {
  .about-metrics-row {
    flex-direction: row;
    gap: 32px;
  }
}

.metric-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.01em;
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--on-surface-variant);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-img-frame {
  width: 100%;
  max-width: 440px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(108, 94, 6, 0.12);
  background-color: var(--surface-container);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(108, 94, 6, 0.08);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-frame:hover .about-img {
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
  }
}

/* Services Section (Služby) - Background Image Card Boxes */
.services-section {
  background-color: var(--surface);
}

.services-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-bg-card {
  position: relative;
  height: 360px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(30, 27, 24, 0.12);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-bg-card.featured {
  height: 460px;
}

@media (min-width: 992px) {
  .service-bg-card {
    height: 380px;
  }
  .service-bg-card.featured {
    height: 540px;
  }
  .service-bg-card.featured .service-bg-title {
    font-size: 2rem;
  }
  .service-bg-card.featured .service-bg-desc {
    font-size: 1rem;
  }
}

.service-bg-card:hover {
  box-shadow: 0 30px 70px rgba(30, 27, 24, 0.25);
}

.service-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.service-bg-card:hover .service-bg-img {
  transform: scale(1.06);
}

.service-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 27, 24, 0.92) 0%, rgba(30, 27, 24, 0.45) 55%, rgba(30, 27, 24, 0.15) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.service-bg-card:hover .service-bg-overlay {
  background: linear-gradient(to top, rgba(30, 27, 24, 0.95) 0%, rgba(30, 27, 24, 0.6) 60%, rgba(30, 27, 24, 0.2) 100%);
}

.service-bg-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-bg-badge {
  align-self: flex-start;
  background-color: var(--secondary);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--rounded-full);
}

.service-bg-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 4px;
}

.service-bg-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255, 248, 245, 0.88);
  line-height: 1.6;
  margin-bottom: 8px;
}

.service-bg-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-container);
  transition: color 0.3s ease;
}

.service-bg-card:hover .service-bg-link {
  color: #ffffff;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.service-card-description {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(124, 119, 102, 0.1);
  font-weight: 600;
}

.service-price {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.5rem;
}

.service-duration {
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Pricing Section (Ceník) with dot leaders */
.pricing-section {
  background-color: var(--surface-container-high);
}

.pricing-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--on-surface);
  white-space: normal;
  line-height: 1.3;
}

.pricing-dots {
  flex-grow: 1;
  border-bottom: 2px dotted var(--outline-variant);
  margin-left: 12px;
  margin-right: 12px;
  position: relative;
  top: -4px;
}

.pricing-val {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--on-surface);
  white-space: nowrap;
}

.pricing-meta {
  display: flex;
  justify-content: space-between;
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  gap: 16px;
}

@media (max-width: 576px) {
  .pricing-header-row {
    align-items: flex-start;
  }
  .pricing-title {
    font-size: 1.125rem;
    padding-right: 8px;
  }
  .pricing-dots {
    display: none;
  }
  .pricing-meta {
    flex-direction: column;
    gap: 4px;
  }
}

/* Reviews Section */
.reviews-section {
  background-color: var(--surface-container-low);
  padding: 120px 0;
  position: relative;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.google-badge-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--surface-container-lowest);
  padding: 16px 24px;
  border-radius: var(--rounded-md);
  box-shadow: 0 10px 30px rgba(30, 27, 24, 0.04);
  border: 1px solid rgba(124, 119, 102, 0.1);
}

.google-badge-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-right: 1px solid var(--outline-variant);
  padding-right: 16px;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--on-surface-variant);
}

.google-badge-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1;
}

.stars-row {
  color: var(--primary-container);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.rating-count {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--on-surface-variant);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .reviews-grid {
    gap: 32px;
  }
}

.review-card {
  background-color: var(--surface-container-lowest);
  padding: 32px;
  border-radius: var(--rounded-lg);
  box-shadow: 0 15px 45px rgba(108, 94, 6, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

@media (min-width: 1200px) {
  .review-card {
    padding: 40px;
  }
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(108, 94, 6, 0.07);
}

.review-quote-mark {
  position: absolute;
  top: 12px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--surface-container-highest);
  line-height: 1;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.review-stars {
  color: var(--primary-container);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-surface);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto; /* Push to bottom for uniform height alignment */
  position: relative;
  z-index: 1;
}

.author-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  background-color: var(--surface-container-highest);
  color: var(--secondary);
}

.author-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 2px;
}

.author-meta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--on-surface-variant);
}

/* FAQ Section */
.faq-section {
  background-color: var(--surface);
  padding: 120px 0;
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--outline-variant);
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--outline-variant);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--on-surface);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 24px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

/* Rotate cross to form an X when open */
details[open] .faq-icon svg {
  transform: rotate(45deg);
  color: var(--primary-container);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-content {
  min-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 16px;
  color: var(--on-surface-variant);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

details[open] .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-content p {
  margin-bottom: 12px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: var(--on-surface);
}

/* Booking & CTA Section */
.booking-section {
  background-image: linear-gradient(
    rgba(30, 27, 24, 0.85),
    rgba(30, 27, 24, 0.8)
  ), url('images/spa_background.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--surface);
  text-align: left;
}

.booking-section .section-title {
  color: var(--surface);
  margin-bottom: 24px;
}

.booking-section .section-description {
  color: rgba(255, 248, 245, 0.8);
  max-width: 100%;
  margin-bottom: 32px;
}

.booking-section .section-kicker {
  color: var(--primary-container);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  align-items: start;
}

@media (min-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.booking-detail-card {
  background-color: transparent;
  padding: 16px 20px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.booking-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--rounded-full);
  background-color: var(--surface-container);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-detail-icon svg {
  width: 20px;
  height: 20px;
}

.booking-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 248, 245, 0.6);
  margin-bottom: 4px;
}

.booking-detail-text p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--surface);
}

.booking-detail-text p a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration var(--transition-fast);
}

.booking-detail-text p a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.booking-form {
  max-width: 100%;
  margin: 0;
  background-color: var(--surface-container-lowest);
  padding: 24px;
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(124, 119, 102, 0.15);
  box-shadow: 0 30px 60px rgba(30, 27, 24, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .booking-form {
    padding: 40px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

/* Input Fields - bottom border only transitioning to Gold focus state */
.form-control {
  width: 100%;
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  border-radius: var(--rounded-default);
  color: var(--on-surface);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 12px 16px;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 94, 6, 0.1);
  background-color: var(--surface-container-lowest);
}

.form-control::placeholder {
  color: var(--outline);
  opacity: 0.6;
}

/* Footer */
footer.site-footer {
  background-color: var(--on-surface);
  color: var(--surface-dim);
  padding: 60px 0;
  font-size: 0.875rem;
}

footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  footer.site-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  filter: invert(1);
  width: 130px;
  height: auto;
}

.footer-col h4 {
  color: var(--surface);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--surface-dim);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--primary-container);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 245, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Floating booking button */
.booking-bar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--surface);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(30, 27, 24, 0.25);
  z-index: 99;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  cursor: pointer;
}

.booking-bar:hover {
  transform: scale(1.08) translateY(-2px);
  background-color: var(--primary-container);
  color: var(--on-primary-container);
  box-shadow: 0 12px 32px rgba(108, 94, 6, 0.35);
}

.booking-bar svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

.booking-bar:hover svg {
  transform: rotate(5deg);
}

@media (min-width: 768px) {
  /* Floating element layout for desktop */
  .booking-bar {
    right: 30px;
    bottom: 30px;
    width: 64px;
    height: 64px;
  }
  .booking-bar svg {
    width: 28px;
    height: 28px;
  }
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================================
   OVERDRIVE ZENITH SYNERGY SYSTEM STYLES
   ========================================= */

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

/* 2. Interactive Headspa Ritual Visualizer Section */
.ritual-visualizer-section {
  background-color: var(--surface-container-low);
  position: relative;
  overflow: hidden;
}

.ritual-visualizer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .ritual-visualizer-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }
}

.ritual-steps-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ritual-step-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background-color: var(--surface-container-lowest);
  border: 1px solid rgba(124, 119, 102, 0.15);
  border-radius: var(--rounded-lg);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.ritual-step-btn:hover {
  background-color: var(--surface-container-low);
  transform: translateX(6px);
  border-color: var(--primary-container);
}

.ritual-step-btn.active {
  background-color: var(--surface-container);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(108, 94, 6, 0.1);
  transform: translateX(10px);
}

.ritual-step-btn .step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.6;
}

.ritual-step-btn.active .step-num {
  opacity: 1;
}

.ritual-step-btn .step-label {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
}

.ritual-card-active {
  background-color: var(--surface-container-lowest);
  padding: 40px;
  border-radius: var(--rounded-xl);
  box-shadow: 0 30px 60px rgba(30, 27, 24, 0.05);
  border: 1px solid rgba(124, 119, 102, 0.1);
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ritual-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ritual-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: var(--surface-container-low);
  padding: 6px 14px;
  border-radius: var(--rounded-full);
}

.ritual-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.benefit-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.ritual-visualizer-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  background-color: var(--surface-container-low);
  margin-top: 24px;
  border: 1px dashed rgba(124, 119, 102, 0.2);
}

#ritual-step-canvas {
  width: 100%;
  height: 100%;
}

/* 3. Glass Concierge Booking Dialog & Overlay */
.concierge-modal {
  border: none;
  border-radius: var(--rounded-xl);
  padding: 0;
  background: transparent;
  max-width: 720px;
  width: 90%;
  margin: auto;
  box-shadow: 0 40px 100px rgba(30, 27, 24, 0.3);
  overflow: hidden;
}

.concierge-dialog-card {
  background-color: var(--surface);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  border: 1px solid rgba(124, 119, 102, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
}

.concierge-header {
  padding: 32px 40px;
  background-color: var(--surface-container-low);
  border-bottom: 1px solid rgba(124, 119, 102, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.concierge-close {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-variant);
  transition: var(--transition-fast);
}

.concierge-close:hover {
  background-color: rgba(30, 27, 24, 0.08);
  color: var(--on-surface);
}

.concierge-body {
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background-color: var(--surface-container-lowest);
  border: 1px solid rgba(124, 119, 102, 0.15);
  border-radius: var(--rounded-md);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 10px;
}

.addon-checkbox-label:hover {
  border-color: var(--primary);
  background-color: var(--surface-container-low);
}

.addon-checkbox-label input {
  display: none;
}

.addon-custom-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--outline);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.addon-checkbox-label input:checked + .addon-custom-box {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.addon-checkbox-label input:checked + .addon-custom-box::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.addon-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--on-surface);
  flex-grow: 1;
}

.addon-meta {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.slot-chip {
  padding: 12px;
  border-radius: var(--rounded-default);
  border: 1px solid rgba(124, 119, 102, 0.2);
  background-color: var(--surface-container-lowest);
  color: var(--on-surface);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slot-chip:hover {
  border-color: var(--primary);
}

.slot-chip.active {
  background-color: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(108, 94, 6, 0.25);
}

.concierge-total-box {
  background-color: var(--surface-container-high);
  padding: 24px;
  border-radius: var(--rounded-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .concierge-total-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.total-price-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.total-duration-val {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 600;
}

.concierge-success-state {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--surface-container-low);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Entry and Exit Animations for Dialog & Backdrop */
.concierge-modal {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              display 0.5s allow-discrete,
              overlay 0.5s allow-discrete;
}

.concierge-modal[open] {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@starting-style {
  .concierge-modal[open] {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
}

.concierge-modal::backdrop {
  background: rgba(30, 27, 24, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.5s ease,
              backdrop-filter 0.5s ease,
              display 0.5s allow-discrete,
              overlay 0.5s allow-discrete;
}

.concierge-modal[open]::backdrop {
  background: rgba(30, 27, 24, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@starting-style {
  .concierge-modal[open]::backdrop {
    background: rgba(30, 27, 24, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}

/* =========================================
   BOTANICAL DESIGN ELEMENTS
   ========================================= */



/* --- Full-Width Inter-Section Water Divider --- */
.section-wavy-divider {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: visible;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
  margin-top: -30px;
  margin-bottom: -30px;
}

.section-wavy-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive Non-Squishing Leaves CSS positioning */
.divider-leaves-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.divider-leaf {
  position: absolute;
  pointer-events: none;
  transform-origin: center;
}

.divider-leaf.leaf-1 {
  left: 19.4%;
  top: 45.7%;
  width: 24px;
  height: 36px;
  transform: translate(-50%, -50%) rotate(-20deg);
  opacity: 0.18;
}

.divider-leaf.leaf-2 {
  left: 50%;
  top: 40%;
  width: 24px;
  height: 44px;
  transform: translate(-50%, -50%) rotate(12deg);
  opacity: 0.14;
}

.divider-leaf.leaf-3 {
  left: 80.5%;
  top: 51.4%;
  width: 24px;
  height: 32px;
  transform: translate(-50%, -50%) rotate(-8deg);
  opacity: 0.16;
}

@media (max-width: 768px) {
  .divider-leaf.leaf-1 {
    width: 18px;
    height: 27px;
    left: 15%;
  }
  .divider-leaf.leaf-2 {
    width: 18px;
    height: 33px;
  }
  .divider-leaf.leaf-3 {
    width: 18px;
    height: 24px;
    left: 85%;
  }
}

/* Ambient Glow Orbs */
.section-ambient-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: blur(80px);
}

.glow-gold {
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-sage {
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

/* =========================================
   3-COLUMN HEAD SPA BENEFITS SPOTLIGHT
   ========================================= */
.headspa-spotlight-section {
  background-color: var(--surface-container-low);
  position: relative;
  overflow: hidden;
}

.headspa-grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .headspa-grid-3col {
    grid-template-columns: 0.95fr 1.15fr 0.95fr;
    gap: 36px;
  }
}

/* Col 1: Visual Photo Frame */
.spotlight-col-photo {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(30, 27, 24, 0.08);
}

.spotlight-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-col-photo:hover .spotlight-photo-img {
  transform: scale(1.05);
}

/* Col 2: Text & Benefits */
.spotlight-col-text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 992px) {
  .spotlight-col-text {
    text-align: left;
  }
  .spotlight-col-text .section-title::after {
    margin-left: 0;
  }
}

.spotlight-intro {
  margin-bottom: 20px;
  color: var(--on-surface-variant);
}

.spotlight-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.benefit-item-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  transition: var(--transition-fast);
  text-align: left;
}

.benefit-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--surface-container);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-box svg {
  width: 20px;
  height: 20px;
}

.benefit-text-box h4 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 5px;
}

.benefit-text-box p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.45;
}

/* Col 3: Un-boxed CTA Column (Text on Top, Photo in Bottom) */
.spotlight-col-cta {
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  box-shadow: none;
}

.spotlight-cta-top {
  padding: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spotlight-cta-badge {
  align-self: flex-start;
  background-color: var(--primary);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--rounded-full);
}

.spotlight-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.25;
}

.spotlight-cta-desc {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.45;
}

.spotlight-cta-bottom-photo {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 45px rgba(30, 27, 24, 0.08);
}

.spotlight-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-cta-bottom-photo:hover .spotlight-cta-img {
  transform: scale(1.05);
}


/* ==========================================================================
   GALLERY SECTION (Naše prostory) - PINTEREST MASONRY LAYOUT
   ========================================================================== */
.gallery-section {
  background-color: var(--surface);
  padding: var(--section-padding) 0;
}

.gallery-masonry {
  column-count: 1;
  column-gap: 24px;
}

@media (min-width: 576px) {
  .gallery-masonry {
    column-count: 2;
  }
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(30, 27, 24, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--surface-container);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 27, 24, 0.75) 0%, rgba(30, 27, 24, 0.25) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--gutter);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-caption {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 27, 24, 0.12);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}


/* ==========================================================================
   GIFT VOUCHERS SECTION (Dárkové poukazy)
   ========================================================================== */
#vouchery {
  background-color: var(--surface-container-low);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 10 2 20 10 T 40 10' fill='none' stroke='%2380715e' stroke-width='2' opacity='0.08'/%3E%3Cpath d='M0 30 L 10 22 L 20 30 L 30 22 L 40 30' fill='none' stroke='%23a3a68d' stroke-width='1.2' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-top: var(--margin-desktop);
  padding-bottom: var(--margin-desktop);
}

.vouchers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

@media (min-width: 992px) {
  .vouchers-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
  }
}

.vouchers-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vouchers-content .section-title::after {
  margin-left: 0;
}

.vouchers-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.vouchers-img-frame {
  width: 100%;
  max-width: 480px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(108, 94, 6, 0.1);
  background-color: var(--surface-container);
  border: 1px solid rgba(108, 94, 6, 0.08);
}

.vouchers-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vouchers-img-frame:hover .vouchers-img {
  transform: scale(1.03);
}


/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal-item {
    opacity: 0;
    transform: translateY(32px) scale(0.985);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }

  .reveal-item.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Stagger delays for sibling elements */
  .reveal-item:nth-child(2) {
    transition-delay: 0.12s;
  }
  .reveal-item:nth-child(3) {
    transition-delay: 0.24s;
  }
  .reveal-item:nth-child(4) {
    transition-delay: 0.36s;
  }
  .reveal-item:nth-child(5) {
    transition-delay: 0.48s;
  }
  .reveal-item:nth-child(6) {
    transition-delay: 0.6s;
  }
}


/* ==========================================================================
   MOBILE NAVIGATION MENU & OVERLAY
   ========================================================================== */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.mobile-nav-toggle .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--rounded-full);
  transition: background-color 0.3s ease;
}

@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none;
  }
}

@media (max-width: 1199px) {
  header.site-header .logo img {
    height: 48px;
  }
  header.site-header .nav-container {
    height: 76px;
  }
  header.site-header.scrolled .nav-container {
    height: 64px;
  }
  header.site-header.scrolled .logo img {
    transform: scale(0.85);
  }
  header.site-header .nav-links,
  header.site-header .header-actions {
    display: none !important;
  }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--surface);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 50%;
  border: 1px solid rgba(108, 94, 6, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-close:hover {
  background-color: var(--surface-container-low);
  transform: rotate(90deg);
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 75vh;
  width: 90%;
  max-width: 400px;
  text-align: center;
  padding: 40px 0;
}

.mobile-nav-logo {
  display: block;
  margin-bottom: 24px;
}

.mobile-nav-logo img {
  height: 120px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--on-surface);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--primary);
}

.mobile-nav-links a.mobile-nav-cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--surface);
  background-color: var(--secondary);
  padding: 14px 28px;
  border-radius: var(--rounded-default);
  margin-top: 12px;
  box-shadow: 0 10px 25px rgba(86, 100, 43, 0.2);
}

.mobile-nav-links a.mobile-nav-cta:hover {
  filter: brightness(0.95);
  box-shadow: 0 15px 30px rgba(86, 100, 43, 0.3);
}

.mobile-nav-footer {
  margin-top: 40px;
}

.mobile-nav-footer p {
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  margin: 4px 0;
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-nav-links a {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-overlay.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }
  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(6) { transition-delay: 0.35s; }
  .mobile-nav-overlay.active .mobile-nav-links a:nth-child(7) { transition-delay: 0.4s; }
}




