/* ============================================================
   RELAX PRO ŽENY — Hlavní stylesheet
   Stack: Čisté HTML/CSS, bez frameworků
   Verze: 1.0
   ============================================================ */

/* ============================================================
   1. RESET & ZÁKLADY
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background-color: #FBF8F5;
  color: #3A2A1E;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   2. TYPOGRAFIE & FONTY
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap&subset=latin,latin-ext');

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  line-height: 1.25;
  font-weight: 400;
  color: #3D2B1F;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #5C4030;
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

/* ============================================================
   3. PROMĚNNÉ / BARVY
   ============================================================ */
:root {
  /* Hlavní barevná paleta — Cappuccino / Teplá kávová hnědá */
  --color-brown-dark:     #3D2B1F;  /* tmavá hnědá — měkčí než dřívější #2C2018 */
  --color-brown:          #6B5040;  /* sytá cappuccino hnědá */
  --color-brown-mid:      #8B6B55;  /* střední kávová */
  --color-brown-light:    #B89878;  /* světlá cappuccino */
  --color-beige:          #EDE0D5;  /* teplá béžová */
  --color-beige-light:    #F5EDE6;  /* světlá krémová */
  --color-cream:          #FBF8F5;  /* krémová */
  --color-silver:         #B8B8B8;  /* stříbrná */
  --color-silver-light:   #E8E8E8;  /* světlá stříbrná */
  --color-gold:           #C4A07A;  /* barva cappuccina — hlavní akcent */
  --color-gold-light:     #E8D5B5;  /* světlá cappuccino */
  --color-white:          #FFFFFF;

  --shadow-sm:   0 2px 8px rgba(61, 43, 31, 0.08);
  --shadow-md:   0 4px 20px rgba(61, 43, 31, 0.12);
  --shadow-lg:   0 8px 40px rgba(61, 43, 31, 0.16);
  --shadow-xl:   0 16px 60px rgba(61, 43, 31, 0.20);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --transition-fast:    0.2s ease;
  --transition-normal:  0.35s ease;
  --transition-slow:    0.6s ease;

  --max-width: 1200px;
  --section-padding: clamp(60px, 8vw, 120px);
}

/* ============================================================
   4. UTILITY TŘÍDY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

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

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.text-brown  { color: var(--color-brown); }

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-brown-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-subtitle2 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-brown-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.5rem auto;
}

/* ============================================================
   5. TLAČÍTKA
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--color-brown-dark);
  color: var(--color-white);
  border: 1px solid var(--color-brown-dark);
}

.btn-primary:hover {
  background: var(--color-brown);
  border-color: var(--color-brown);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-brown-dark);
  border: 1px solid var(--color-brown-dark);
}

.btn-outline:hover {
  background: var(--color-brown-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #A87848);
  color: var(--color-white);
  border: 1px solid transparent;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #A87848, var(--color-gold));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}

/* Disabled stav tlačítka */
.btn-disabled {
  background: var(--color-silver-light);
  color: var(--color-brown-light);
  border: 1px solid var(--color-silver);
  cursor: default;
  pointer-events: none;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================================
   6. NAVIGACE
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}

.site-header.header-transparent {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition-normal);
}

.scrolled .site-logo img {
  height: 42px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-brown-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown-dark);
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: center;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Header CTA tlačítko */
.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-brown-dark);
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobilní nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  transition: color var(--transition-fast);
}

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

/* ============================================================
   7. HERO SEKCE (kosmetika.html)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-brown-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-placeholder.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(61, 43, 31, 0.80) 0%,
    rgba(61, 43, 31, 0.55) 45%,
    rgba(61, 43, 31, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--color-white);
  padding: 140px 0 100px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

/* Rezervace placeholder UI */
.reservation-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}


/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease infinite;
}

/* ============================================================
   8. SERVICES / CENÍK
   ============================================================ */
.services-section {
  background: var(--color-cream);
}

.treatment-group {
  margin-bottom: clamp(50px, 7vw, 80px);
}

.treatment-group:last-child {
  margin-bottom: 0;
}

.treatment-group-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-beige);
}

.treatment-group-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-gold), #A87848);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.1rem;
}

.treatment-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-brown-dark);
}

/* Karty ošetření */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Osamělá karta na posledním řádku (lichý počet) — vycentrovat */
.treatments-grid .treatment-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.75rem);
  margin-inline: auto;
}

.treatment-card {
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), #A87848);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.treatment-card:hover {
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.treatment-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-brown-dark);
  line-height: 1.3;
}

.treatment-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.treatment-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-beige-light);
  color: var(--color-brown-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.treatment-duration svg {
  width: 12px;
  height: 12px;
}

.treatment-description {
  font-size: 0.92rem;
  color: var(--color-brown-mid);
  line-height: 1.7;
  margin-bottom: 0;
  text-align: justify;
}

/* ── Karta s balíčky (radiofrekvence) ── */
.treatment-card--packages {
  background: linear-gradient(160deg, #FBF6F1 0%, var(--color-white) 60%);
  border-color: var(--color-gold-light);
}

.treatment-card--packages::before {
  transform: scaleX(1);
  opacity: 0.6;
}

.treatment-price--from {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-brown-mid);
}

.treatment-packages {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.treatment-package {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm, 6px);
  background: var(--color-beige-light);
  border: 1px solid var(--color-beige);
  font-size: 0.85rem;
}

.treatment-package--highlight {
  background: linear-gradient(90deg, #F5EDE6, #EEE0CE);
  border-color: var(--color-gold-light);
}

.treatment-package-label {
  font-weight: 700;
  color: var(--color-brown-dark);
  flex-shrink: 0;
}

.treatment-package-detail {
  color: var(--color-brown-mid);
  flex: 1;
}

.treatment-package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 12, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay.open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-img {
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.3s ease;
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 9001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close svg {
  pointer-events: none;
}

/* ── Tělový nástřik — trigger button + hint ── */
.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-hint {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lightbox-trigger:hover .lightbox-hint,
.lightbox-trigger:focus-visible .lightbox-hint {
  opacity: 1;
  transform: scale(1);
}

.lightbox-trigger:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ── Tělový nástřik — layout s obrázkem ── */
.nastrik-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.nastrik-img-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nastrik-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nastrik-img-col:hover .nastrik-img {
  transform: scale(1.03);
}

.nastrik-card-col .treatment-card {
  height: 100%;
}

@media (max-width: 768px) {
  .nastrik-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Doplňkové služby ── */
.addon-single-card {
  max-width: 680px;
}

.wax-item-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--color-brown-light);
  font-style: italic;
  line-height: 1.3;
  margin-top: 0.1rem;
}

/* ── Epilace voskem — cenová tabulka ── */
.wax-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wax-price-card {
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.wax-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), #A87848);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.wax-price-card:hover {
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.wax-price-card:hover::before {
  transform: scaleX(1);
}

.wax-price-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-brown-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-beige);
}

.wax-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wax-price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.wax-item-name {
  font-size: 0.88rem;
  color: var(--color-brown-mid);
  white-space: nowrap;
}

.wax-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-beige);
  margin-bottom: 3px;
}

.wax-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gold);
  white-space: nowrap;
}

/* ============================================================
   9. O NÁS
   ============================================================ */
.about-section {
  background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-cream) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-text .section-label {
  margin-bottom: 0.75rem;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.value-text {
  font-size: 0.92rem;
  color: var(--color-brown);
  line-height: 1.6;
}

.value-text strong {
  display: block;
  font-weight: 700;
  color: var(--color-brown-dark);
  margin-bottom: 0.15rem;
}

/* Lobey brand badge */
.lobey-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
}

.lobey-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lobey-brand-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brown-light);
}

.lobey-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-brown-dark);
}

.lobey-brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}

/* Profil kosmetičky */
.about-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cosmetic-profile {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.profile-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-beige), var(--color-beige-light));
  position: relative;
  overflow: hidden;
}

.profile-photo--portrait {
  aspect-ratio: 3/4;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-brown-light);
  gap: 0.75rem;
}

.profile-photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.profile-photo-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.profile-info {
  padding: 1.75rem;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-brown-dark);
  margin-bottom: 0.25rem;
}

.profile-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.profile-bio {
  font-size: 0.92rem;
  color: var(--color-brown);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Galerie salonu (mini) */
.salon-mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.salon-mini-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--color-beige);
  overflow: hidden;
  position: relative;
}

.salon-mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.salon-mini-gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-beige), var(--color-beige-light));
  color: var(--color-brown-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-align: center;
}

/* ============================================================
   10. REZERVACE
   ============================================================ */
.reservation-section {
  background: var(--color-brown-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.reservation-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.reservation-inner .section-label {
  color: var(--color-gold-light);
}

.reservation-inner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.reservation-inner p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.reservation-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.reservation-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  /* TODO: odstranit po doplnění Reservio URL */
}

/* ============================================================
   11. VĚRNOSTNÍ PROGRAM
   ============================================================ */
.loyalty-section {
  background: var(--color-cream);
}

.loyalty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.loyalty-card-wrapper {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 4vw, 50px);
}

/* Luxusní věrnostní kartička */
.loyalty-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown) 50%, var(--color-brown-dark) 100%);
  border-radius: 16px;
  padding: 2rem;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.loyalty-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,122,0.15) 0%, transparent 70%);
}

.loyalty-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.loyalty-card-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.loyalty-card-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.loyalty-stamps {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.stamp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.stamp.filled {
  background: linear-gradient(135deg, var(--color-gold), #A87848);
  border-color: var(--color-gold);
}

.stamp.filled svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.stamp.empty {
  background: rgba(255,255,255,0.04);
}

.stamp.reward {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: var(--color-gold);
  position: relative;
}

.stamp.reward::before {
  content: '★';
  font-size: 1.4rem;
  color: var(--color-brown-dark);
}

.loyalty-reward-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--color-gold-light);
  position: relative;
  z-index: 1;
  margin-bottom: 0.25rem;
}

.loyalty-card-number {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.loyalty-text h2 {
  margin-bottom: 1.25rem;
}

.loyalty-text p {
  margin-bottom: 1rem;
}

.loyalty-conditions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-beige);
}

.loyalty-conditions h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown-light);
  margin-bottom: 0.75rem;
}

.loyalty-conditions ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.loyalty-conditions li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-brown);
}

.loyalty-conditions li::before {
  content: '–';
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   12. DÁRKOVÝ POUKAZ
   ============================================================ */
.voucher-section {
  background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-cream) 100%);
}

.voucher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Vizuál poukazu */
.voucher-visual {
  display: flex;
  justify-content: center;
}

.voucher-mockup {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige-light) 100%);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.voucher-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), #A87848, var(--color-gold));
}

.voucher-mockup-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-beige);
}

.voucher-mockup-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--color-brown-dark);
  text-transform: uppercase;
}

.voucher-mockup-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.voucher-mockup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  text-align: center;
  margin: 1.25rem 0 0.5rem;
}

.voucher-mockup-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-brown-mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.voucher-mockup-value {
  text-align: center;
  background: linear-gradient(135deg, var(--color-beige), var(--color-beige-light));
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.voucher-value-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brown-light);
  margin-bottom: 0.25rem;
}

.voucher-value-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-brown-dark);
}

/* Skutečný obrázek poukazu */
.voucher-img-wrapper {
  width: 100%;
  perspective: 1000px;
}

.voucher-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow:
    0 4px 12px rgba(61, 43, 31, 0.12),
    0 20px 50px rgba(61, 43, 31, 0.20),
    0 2px 4px rgba(61, 43, 31, 0.08);
  transform: rotate(-2deg) translateY(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease;
  will-change: transform;
}

.voucher-img-wrapper:hover .voucher-img {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    0 8px 20px rgba(61, 43, 31, 0.10),
    0 32px 70px rgba(61, 43, 31, 0.18),
    0 4px 8px rgba(61, 43, 31, 0.06);
}

.voucher-content h2 {
  margin-bottom: 1.25rem;
}

.voucher-content p {
  margin-bottom: 1rem;
}

.voucher-conditions {
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.voucher-conditions h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown-light);
  margin-bottom: 0.75rem;
}

.voucher-conditions ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.voucher-conditions li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-brown);
}

.voucher-conditions li::before {
  content: '—';
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Voucher — přepínač hodnota / služba */
.voucher-choice-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown-mid);
  margin-bottom: 0.6rem;
}

.voucher-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.voucher-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-brown-mid);
  background: var(--color-white);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  border: none;
  text-align: center;
  user-select: none;
}

.voucher-tab + .voucher-tab {
  border-left: 1px solid var(--color-beige);
}

.voucher-tab input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.voucher-tab.active,
.voucher-tab:has(input:checked) {
  background: var(--color-gold);
  color: var(--color-white);
}

.voucher-panel {
  margin-top: 0;
}

/* ============================================================
   13. KONTAKT
   ============================================================ */
.contact-section {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-beige);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--color-beige-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown-light);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--color-brown-dark);
  font-weight: 400;
}

.contact-item-value a {
  color: var(--color-brown-dark);
  transition: color var(--transition-fast);
}

.contact-item-value a:hover {
  color: var(--color-gold);
}

/* Mapa */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-beige);
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-beige), var(--color-beige-light));
  color: var(--color-brown-mid);
  gap: 0.75rem;
  font-size: 0.85rem;
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
}

/* Kontaktní formulář */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ============================================================
   14. FORMULÁŘ
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
}

label .required {
  color: var(--color-gold);
  margin-left: 3px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--color-brown-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196, 160, 122, 0.14);
}

input::placeholder, textarea::placeholder {
  color: var(--color-brown-light);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238B6B55' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Skryté pole pro hodnotu poukazu */
.form-group.hidden {
  display: none;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  border: 1.5px solid var(--color-beige);
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
  margin-top: 3px;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  display: grid;
  place-content: center;
}

.form-checkbox input[type="checkbox"]:hover {
  border-color: var(--color-gold);
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.form-checkbox input[type="checkbox"]:checked::before {
  content: '';
  width: 10px;
  height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background: #fff;
}

.form-checkbox-text {
  font-size: 0.85rem;
  color: var(--color-brown);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-checkbox-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success / Error messages */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #F0F9F0;
  border: 1px solid #A8D5A2;
  color: #2D6A27;
  display: block;
}

.form-message.error {
  background: #FEF0F0;
  border: 1px solid #F5B8B8;
  color: #C0392B;
  display: block;
}

/* ============================================================
   15. MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(61, 43, 31, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-beige);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-brown-dark);
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--color-brown-mid);
  margin-top: 0.25rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.modal-close:hover {
  background: var(--color-beige);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-brown-dark);
  stroke-width: 2;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-brown-dark);
  color: rgba(255,255,255,0.8);
  padding: clamp(50px, 7vw, 80px) 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--color-white);
}

.footer-claim {
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.5);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-col-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-hours-item span:first-child {
  color: rgba(255,255,255,0.5);
}

.footer-hours-item span:last-child {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.65);
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   17. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--color-white);
  border-top: 1px solid var(--color-beige);
  box-shadow: 0 -4px 30px rgba(61, 43, 31, 0.12);
  padding: 1.25rem clamp(20px, 5vw, 60px);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

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

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--color-brown);
  flex: 1;
  min-width: 250px;
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   18. SCROLL ANIMACE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   19. KEYFRAME ANIMACE
   ============================================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   20. VSTUPNÍ ROZCESTNÍK (index.html)
   ============================================================ */
.entry-page {
  min-height: 100vh;
  background: var(--color-brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.entry-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.entry-bg--mobile { display: none; }

@media (max-width: 768px) {
  .entry-bg--desktop { display: none; }
  .entry-bg--mobile  { display: block; transform: translate(-50%, -50%) scale(0.60); }
}

.entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61,43,31,0.52) 0%,
    rgba(61,43,31,0.78) 100%
  );
}

.entry-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 40px 20px;
  width: 100%;
  max-width: 900px;
}

.entry-logo {
  margin: 0 auto 2rem;
}

.entry-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Fallback, pokud logo chybí */
.entry-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.entry-logo-text span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 0.25rem;
}

.entry-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.5rem auto 2rem;
}

.entry-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
  font-weight: 300;
}

.entry-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.entry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 2.5rem) 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.entry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,160,122,0.10), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.entry-card:hover {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.10);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  color: var(--color-white);
}

.entry-card:hover::before {
  opacity: 1;
}

.entry-card-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease;
}

.entry-card:hover .entry-card-icon {
  border-color: var(--color-gold);
}

.entry-card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--color-gold-light);
  stroke-width: 1.5;
  transition: stroke 0.4s ease;
}

.entry-card:hover .entry-card-icon svg {
  stroke: var(--color-gold);
}

.entry-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.entry-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* "Připravujeme" badge */
.entry-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(196,160,122,0.18);
  border: 1px solid rgba(196,160,122,0.38);
  color: var(--color-gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.entry-description {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(16px, 4vw, 40px);
}

.entry-description p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  margin-bottom: 1rem;
}

.entry-description p:last-child {
  margin-bottom: 0;
}

.entry-footer-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}

/* ============================================================
   21. STRÁNKA PŘIPRAVUJEME
   ============================================================ */
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-cream) 100%);
  padding: 40px 20px;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-md);
}

.coming-soon-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
}

.coming-soon-content .section-label {
  margin-bottom: 0.75rem;
}

.coming-soon-content h1 {
  margin-bottom: 1.25rem;
}

.coming-soon-content p {
  font-size: 1.05rem;
  color: var(--color-brown-mid);
  margin-bottom: 2.5rem;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   22. PRÁVNÍ STRÁNKY
   ============================================================ */
.legal-page {
  padding-top: 100px;
}

.legal-hero {
  background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown));
  color: var(--color-white);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.legal-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.65);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 60px);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-beige);
  color: var(--color-brown-dark);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
  color: var(--color-brown);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--color-brown-dark);
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-update {
  background: var(--color-beige-light);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--color-brown-mid);
  margin-bottom: 2rem;
  display: inline-block;
}

/* ============================================================
   23. RESPONZIVITA — TABLET
   ============================================================ */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .loyalty-grid,
  .voucher-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .voucher-visual {
    order: 1;
  }

  .about-media {
    order: 1;
  }

  .loyalty-card-wrapper {
    order: 1;
  }


  .hero-content {
    max-width: 100%;
  }

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

/* ============================================================
   24. RESPONZIVITA — MOBIL
   ============================================================ */
@media (max-width: 640px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .entry-cards {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .coming-soon-actions {
    flex-direction: column;
    align-items: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .treatments-grid .treatment-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin-inline: 0;
  }

  .treatment-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wax-price-grid {
    grid-template-columns: 1fr;
  }

  .salon-mini-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .loyalty-stamps {
    gap: 0.5rem;
  }

  .stamp {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   25. FOCUS / ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.85rem;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* High contrast / prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Print */
@media print {
  .site-header,
  .cookie-banner,
  .modal-overlay,
  .hamburger,
  .mobile-nav,
  .hero-actions,
  .scroll-indicator {
    display: none !important;
  }
}
