/* --- BASE & TYPOGRAPHY --- */
:root {
  /* Luxurious Dark Theme */
  --bg-color: #0d0b0a;
  --bg-gradient: linear-gradient(145deg, #0d0b0a, #1a1512);
  --text-main: #f4eee6;
  --text-dark: #333333;
  --accent: #c9954a;
  --accent-light: #e8b87a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-border: rgba(255, 255, 255, 0.08);

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;

  --nav-height: 90px;

  /* Krémové povrchy */
  --cream-bg:        #f4eee6;
  --cream-mid:       #ede4d8;
  --cream-deep:      #e0d4c3;
  --cream-text:      #2a1f14;
  --cream-text-sub:  #5c4a38;

  /* Zlatý efekt */
  --accent-glow:     rgba(201, 149, 74, 0.35);
  --accent-shimmer:  #f5d89a;

  /* Akcentová barva pro světlá (krémová) pozadí — dostatečný kontrast WCAG AA */
  --accent-on-light: #7a4c10;
}

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

html, body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* UTILS */
.container {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
}

/* DECORATIVE MOVING BLOBS (Samy od sebe) */
.ambient-glow {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.22;
  animation: blob-drift 20s infinite alternate ease-in-out;
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #d4a96a, transparent 70%);
  top: -15%; left: -12%;
  animation-duration: 22s;
}
.glow-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #fff8f0, transparent 70%);
  bottom: -20%; right: 5%;
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}
.glow-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #d4a96a, transparent 70%);
  top: 40%; right: -5%;
  opacity: 0.12;
  animation: blob-drift-b 18s infinite alternate ease-in-out;
}
.glow-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #e8c9a0, transparent 70%);
  bottom: 15%; left: 10%;
  opacity: 0.10;
  animation: blob-drift-b 24s infinite alternate-reverse ease-in-out;
}

@keyframes blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.2); }
  100% { transform: translate(-50px, 150px) scale(0.9); }
}
@keyframes blob-drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-60px, 80px) scale(1.15); }
  100% { transform: translate(80px, -40px) scale(0.85); }
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-height);
  display: flex; align-items: center;
  z-index: 100;
  background: rgba(13, 11, 10, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--surface-border);
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
}
.logo img {
  height: 40px;
  border-radius: 4px; /* Since original might have white bg, dark theme needs it clean */
}
.nav-menu ul {
  display: flex; gap: 2.5rem;
}
.nav-menu a {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-main);
  transition: color 0.3s;
}
.nav-menu a:hover { color: var(--accent); }
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #111; padding: 1rem; border: 1px solid var(--surface-border);
  flex-direction: column; gap: 0.8rem; min-width: 200px;
}
.has-dropdown:hover .dropdown-menu { display: flex; }

/* NAV scrolled přes zlatavé sekce */
.header.scrolled {
  background: rgba(52, 28, 10, 0.95);
  border-bottom-color: rgba(201, 168, 124, 0.25);
  transition: background 0.5s ease, border-bottom-color 0.5s ease;
}
.header.scrolled .logo img {
  filter: none;
}
.header.scrolled .nav-menu a { color: var(--text-main); }
.header.scrolled .nav-menu a:hover { color: var(--accent); }
.header.scrolled .dropdown-menu {
  background: rgba(52, 28, 10, 0.97);
  border-color: rgba(201, 168, 124, 0.2);
}
.header.scrolled .dropdown-menu a { color: var(--text-main); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* MOBILNÍ NAV + HERO OPRAVY */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(13, 11, 10, 0.97);
    backdrop-filter: blur(15px);
    padding: 1rem 0 2rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.3s ease, visibility 0.35s;
    z-index: 98;
    border-bottom: 1px solid var(--surface-border);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0 2rem;
  }

  .nav-menu ul li { width: 100%; }

  .nav-menu ul li > a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--surface-border);
  }

  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: transparent;
    border: none;
    padding: 0.5rem 0 0.5rem 1.2rem;
    min-width: unset;
    gap: 0;
  }

  .has-dropdown.is-open > .dropdown-menu {
    display: flex !important;
  }

  .has-dropdown.is-open > a .fa-angle-down {
    transform: rotate(180deg);
  }

  .fa-angle-down { transition: transform 0.25s ease; display: inline-block; }

}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-dark {
  background: var(--accent); color: var(--bg-color) !important;
}
.btn-dark:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(216, 184, 152, 0.2);
}
.btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% 0;
}
.btn-dark:hover::after {
  animation: btn-shimmer 0.7s ease forwards;
}
@keyframes btn-shimmer {
  to { background-position: 200% 0; }
}
.btn-outline {
  background: transparent; border: 1px solid var(--accent); color: var(--accent) !important;
}
.btn-outline:hover {
  background: var(--accent); color: var(--bg-color) !important;
}

/* HERO: HIGH-FASHION MAGAZINE STYLE */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 4rem;
  background: radial-gradient(circle at 40% 40%, rgba(145, 110, 85, 0.85) 0%, rgba(85, 60, 45, 0.8) 60%, rgba(35, 25, 20, 0.6) 100%);
}
.hero-img-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(13, 9, 7, 0.8) 0%, rgba(13, 9, 7, 0.6) 40%, transparent 100%);
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: 0.55; /* Zvýšena opacity, aby obličej nebyl tak 'vybledlý/rozmazaný' do prázdna */
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
  width: 65%;
  max-width: 850px;
}
.hero-subtitle {
  font-size: 0.82rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 1.5rem; display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-content h1 .italic {
  font-style: italic; color: var(--accent);
}
.hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #ccc;
  max-width: 800px; margin: 0 0 2rem;
}
.hero-buttons {
  display: flex; gap: 1.5rem; justify-content: flex-start;
}

/* HERO — MOBILNÍ LAYOUT */
@media (max-width: 900px) {
  .hero {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-img-wrap::after {
    background: linear-gradient(to bottom,
      rgba(13, 9, 7, 0.35) 0%,
      rgba(13, 9, 7, 0.7) 60%,
      rgba(13, 9, 7, 0.92) 100%);
  }

  .hero-img-wrap img {
    object-position: 60% top;
  }

  .hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    justify-content: flex-start;
  }

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

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    margin-bottom: 0.75rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .hero-buttons .btn {
    text-align: center;
  }
}

/* HERO FLOATING PARTICLES */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.p {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--accent-shimmer);
  opacity: 0;
  animation: particle-rise var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}
.p1  { width: 3px; height: 3px;  left: 10%; bottom: 20%; --dur: 9s;  --delay: 0s;   }
.p2  { width: 2px; height: 2px;  left: 25%; bottom: 15%; --dur: 11s; --delay: 1.5s; }
.p3  { width: 4px; height: 4px;  left: 40%; bottom: 30%; --dur: 8s;  --delay: 3s;   }
.p4  { width: 2px; height: 2px;  left: 55%; bottom: 10%; --dur: 13s; --delay: 0.5s; }
.p5  { width: 3px; height: 3px;  left: 65%; bottom: 25%; --dur: 10s; --delay: 2s;   }
.p6  { width: 2px; height: 2px;  left: 75%; bottom: 18%; --dur: 7s;  --delay: 4s;   }
.p7  { width: 4px; height: 4px;  left: 85%; bottom: 35%; --dur: 12s; --delay: 1s;   }
.p8  { width: 2px; height: 2px;  left: 50%; bottom: 5%;  --dur: 9s;  --delay: 3.5s; }
@keyframes particle-rise {
  0%   { opacity: 0;    transform: translateY(0) scale(0.5); }
  15%  { opacity: 0.8; }
  80%  { opacity: 0.4;  transform: translateY(-180px) scale(1.2); }
  100% { opacity: 0;    transform: translateY(-220px) scale(0.8); }
}

/* GOLD SHIMMER TEXT */
@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-text {
  background: linear-gradient(
    105deg,
    var(--accent)         0%,
    var(--accent)        40%,
    var(--accent-shimmer) 50%,
    var(--accent)        60%,
    var(--accent)       100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s linear infinite;
}

/* SERVICES GRID - PHOTO CARDS WITH HOVER REVEAL */
.services-section {
  padding: 10rem 0 5rem;
  position: relative;
  background-color: #c9a87c;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px);
}
.services-header {
  text-align: center; margin-bottom: 6rem;
}
.services-header span {
  font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
}
.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream-text);
}
/* Na středním ambrovo-hnědém pozadí služby — tmavý text pro dostatečný kontrast */
.services-section .services-header h2 {
  color: #1a0f08;
}
.services-section .services-header span:not(.shimmer-text) {
  color: #3d1f00;
}
/* Shimmer přebije color, proto overridujeme na tmavší zlatý shimmer */
.services-section .services-header span.shimmer-text {
  background: linear-gradient(105deg, #3d1f00 0%, #3d1f00 40%, #7a3e00 50%, #3d1f00 60%, #3d1f00 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s linear infinite;
}
.services-section .service-card {
  border-color: rgba(100, 60, 20, 0.25);
  box-shadow: 0 12px 40px rgba(60, 30, 5, 0.25);
}

.section-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 4rem;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  padding-bottom: 4rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 2/3;
  cursor: pointer;
  border: 1px solid var(--surface-border);
  container-type: inline-size;
}

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

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

/* Nadpis vždy viditelný dole */
.sc-base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,8,7,0.92) 0%, transparent 100%);
  transition: opacity 0.35s ease;
}
.sc-base h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* Hover overlay s textem */
.sc-hover {
  position: absolute;
  inset: 0;
  background: rgba(10,8,7,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(0.8rem, 3cqi, 2rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
  gap: clamp(0.4rem, 1.5cqi, 0.8rem);
}
.sc-hover h3 {
  font-size: clamp(0.9rem, 2.5cqi, 1.3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sc-hover p {
  font-size: 0.94rem;
  color: #bbb;
  margin-bottom: 0;
  line-height: 1.5;
}

.service-card:hover .sc-base { opacity: 0; }
.service-card:hover .sc-hover { opacity: 1; transform: translateY(0); }

.sc-hover .btn {
  padding: clamp(0.4rem, 1.2cqi, 0.7rem) clamp(0.8rem, 2.5cqi, 1.5rem);
  font-size: clamp(0.72rem, 1.5cqi, 0.8rem);
  white-space: nowrap;
  background: var(--accent) !important;
  color: var(--bg-color) !important;
  border-color: var(--accent);
  flex-shrink: 0;
}

/* CONTINUOUS SELF-FLOATING FEATURES */
.features-section {
  padding: 8rem 0;
  background: #080706;
  position: relative;
  overflow: hidden;
}

/* Dekorativní ikony v pozadí sekce */
.features-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fbg-icon {
  position: absolute;
  color: var(--accent);
  opacity: 0.04;
  font-size: 180px;
  animation: fbg-float 18s infinite alternate ease-in-out;
}
.fbg-1 { top: -5%;  left: -4%;  font-size: 220px; animation-duration: 22s; }
.fbg-2 { top: 10%;  right: 3%;  font-size: 160px; animation-duration: 16s; animation-direction: alternate-reverse; opacity: 0.05; }
.fbg-3 { top: 45%;  left: 8%;   font-size: 130px; animation-duration: 20s; opacity: 0.03; }
.fbg-4 { bottom: 5%; right: 10%; font-size: 200px; animation-duration: 25s; animation-direction: alternate-reverse; opacity: 0.04; }
.fbg-5 { bottom: 30%; left: 45%; font-size: 140px; animation-duration: 14s; opacity: 0.03; }
.fbg-6 { top: 60%;  right: 30%; font-size: 170px; animation-duration: 19s; animation-direction: alternate-reverse; opacity: 0.05; }

@keyframes fbg-float {
  0%   { transform: translate(0, 0) rotate(0deg)   scale(1); }
  50%  { transform: translate(30px, -20px) rotate(8deg)  scale(1.05); }
  100% { transform: translate(-20px, 30px) rotate(-5deg) scale(0.95); }
}

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

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-box {
  background: rgba(244, 238, 230, 0.04);
  border: 1px solid rgba(201, 149, 74, 0.18);
  border-left: 3px solid rgba(201, 149, 74, 0.5);
  box-shadow: 0 2px 0 rgba(201, 149, 74, 0.08) inset, 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  animation: box-float 8s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.feature-box:hover {
  background: rgba(244, 238, 230, 0.07);
  border-left-color: var(--accent);
  box-shadow: 0 2px 0 rgba(201, 149, 74, 0.15) inset, 0 30px 80px rgba(0, 0, 0, 0.4), -4px 0 20px rgba(201, 149, 74, 0.15);
}
/* Stagger floating animations */
.feature-box:nth-child(even) { animation-duration: 9s; animation-direction: alternate-reverse; }
.feature-box:nth-child(3n) { animation-duration: 11s; }

@keyframes box-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Ikona v kartě */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 149, 74, 0.12);
  border: 1px solid rgba(201, 149, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature-icon i {
  font-size: 1.3rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 0 10px rgba(201, 149, 74, 0.3));
}
.feature-box:hover .feature-icon {
  background: rgba(201, 149, 74, 0.2);
  box-shadow: 0 0 20px rgba(201, 149, 74, 0.2);
  transform: translateY(-4px);
}
.feature-box:hover .feature-icon img {
  transform: scale(1.15) rotate(5deg);
}

.feature-box h4 {
  font-size: 1.4rem;
  color: var(--text-main);
  text-shadow: 0 0 20px rgba(244, 238, 230, 0.1);
  margin: 0;
  line-height: 1.3;
}
.feature-box h4 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.feature-box p { color: #ccc; margin: 0; line-height: 1.6; font-size: 1rem; }
.feature-box p strong {
  color: #fff;
  font-weight: 600;
}
.feature-box p .text-accent {
  color: var(--accent-light);
  font-style: italic;
  font-weight: 500;
}

/* Features section header text na tmavém pozadí */
.features-section .services-header h2 { color: var(--text-main); }

/* REVIEWS GRID + MODAL */
.reviews-section {
  padding: 8rem 0;
  background-color: #c9a87c;
  position: relative;
}
.reviews-section h2 {
  color: #1a0f08;
}

/* --- Karty na jantarovém pozadí — stejné jako effect-card --- */
.reviews-section .review-card {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(100, 60, 20, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.reviews-section .review-card:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(100, 60, 20, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.reviews-section .review-card__mark  { color: #7a4c10; }
.reviews-section .review-card__title { color: #1a0f08; }
.reviews-section .review-card__author { color: #5c3d1a; }
.reviews-section .review-card__cta {
  border-color: #7a4c10; color: #7a4c10 !important;
}
.reviews-section .review-card:hover .review-card__cta {
  background: #7a4c10; color: #faf4ec !important;
}

/* Tlačítko objednat */
.reviews-section .section-cta .btn-dark {
  background: #1a0f08;
  color: var(--accent-light) !important;
}
.reviews-section .section-cta .btn-dark:hover {
  background: #080706;
}

/* GRID KARET */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .reviews-grid { grid-template-columns: 1fr; } }

.reviews-grid .review-card:nth-child(1) { transition-delay: 0.05s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.15s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.25s; }
.reviews-grid .review-card:nth-child(4) { transition-delay: 0.35s; }

/* KARTA */
.review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 149, 74, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem 2.8rem;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,149,74,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(201, 149, 74, 0.1);
}
.review-card:hover::after { opacity: 1; }

.review-card__mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
.review-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.review-card__author {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-card__author::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--accent);
}
.review-card__cta {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  align-self: flex-start;
}
.review-card:hover .review-card__cta { 
  background: var(--accent); 
  color: #080706; 
  box-shadow: 0 5px 15px rgba(201, 149, 74, 0.2);
}

/* MODAL */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.review-modal[hidden] { display: none; }

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(122, 76, 16, 0.75);
  backdrop-filter: blur(8px);
  animation: modal-fade-in 0.3s ease both;
}
.review-modal__card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(100, 60, 20, 0.2);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  max-width: 620px;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: 0 12px 60px rgba(0,0,0,0.25);
  animation: modal-slide-up 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
@media (max-width: 480px) {
  .review-modal__card {
    padding: 3rem 1.5rem 2rem;
    border-radius: 16px;
    max-height: 85dvh;
  }
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-slide-up {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.review-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(100, 60, 20, 0.5);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.review-modal__close:hover { color: var(--accent-on-light); }
.review-modal__mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent-on-light);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.review-modal__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream-text);
  margin-bottom: 1.5rem;
}
.review-modal__text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-text-sub);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.review-modal__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-on-light);
}
.review-modal__author::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--accent-on-light);
}

/* Services CTA outline */
.services-section .btn-outline {
  border-color: var(--accent);
  color: var(--accent) !important;
}
.services-section .btn-outline:hover {
  background: var(--accent);
  color: var(--cream-text) !important;
}
/* Tlačítko uvnitř sc-hover (tmavý overlay) — oprava: zlatý text na zlatém pozadí = neviditelný */
.services-section .sc-hover .btn {
  color: var(--bg-color) !important;
}


/* =====================
   FOOTER — nový design
   ===================== */
.footer {
  position: relative;
  background: #0a0807;
  overflow: hidden;
}

/* Logo v pozadí */
.footer-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.footer-watermark img {
  width: clamp(320px, 55%, 640px);
  opacity: 0.055;
  object-fit: contain;
  user-select: none;
}

/* Kontejner nad vodoznakem */
.footer-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 0;
}

/* 4 kontaktní bloky v řadě */
.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--surface-border);
  border: 1px solid var(--surface-border);
}

/* Jeden kontaktní blok */
.fc-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 2.8rem 1.5rem;
  background: #0a0807;
  text-decoration: none;
  transition: background 0.25s;
}
.fc-block:hover { background: #0f0d0b; }
.fc-block--static { cursor: default; }
.fc-block--static:hover { background: #0a0807; }

/* CTA blok — zlaté pozadí */
.fc-block--cta {
  background: var(--accent);
}
.fc-block--cta:hover { background: var(--accent-light); }
.fc-block--cta .fc-icon { color: #000; font-size: 1.4rem; }
.fc-block--cta .fc-label { color: #000; font-weight: 600; }
.fc-block--cta .fc-value { color: #000; font-weight: 700; font-family: var(--font-sans); font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }

/* Ikonka */
.fc-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

/* Štítek (TELEFON, E-MAIL…) */
.fc-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Hodnota */
.fc-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

/* Spodní lišta: IG vlevo, copyright vpravo */
.footer-bottom {
  text-align: center;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: #aaa;
}
.footer-bottom a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* REVEAL ANIMATIONS ON LOAD/SCROLL */
.fly-up { opacity: 0; transform: translateY(80px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.is-visible { opacity: 1; transform: translate(0); }

/* PARALLAX BANNER */
.parallax-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(201, 149, 74, 0.15);
  border-bottom: 1px solid rgba(201, 149, 74, 0.15);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.65);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.parallax-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-main);
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.parallax-content h2 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.parallax-content p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(244, 238, 230, 0.9);
  margin-bottom: 2.5rem;
  text-shadow: 0 5px 15px rgba(0,0,0,0.8);
  font-weight: 300;
}

.parallax-banner .btn-outline {
  border-color: var(--accent);
  color: var(--text-main) !important;
  background: rgba(8, 7, 6, 0.4);
  backdrop-filter: blur(5px);
}

.parallax-banner .btn-outline:hover {
  background: var(--accent);
  color: var(--bg-color) !important;
}

@media (max-width: 1280px) {
  .cards-container { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-top > :last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .cards-container { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }

  /* Service karty — mobilní layout: obrázek nahoře, text dole */
  .service-card {
    display: flex;
    flex-direction: column;
    aspect-ratio: unset;
    height: auto;
    overflow: visible;
  }

  .service-card img {
    aspect-ratio: 3 / 4;
    height: auto;
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

  .service-card:hover img {
    transform: none;
  }

  /* Skryjeme původní spodní nadpis */
  .sc-base {
    display: none;
  }

  /* Obsah karty vždy viditelný, staticky pod obrázkem */
  .sc-hover {
    position: static;
    opacity: 1;
    transform: none;
    transition: none;
    background: #16110e;
    border-radius: 0 0 16px 16px;
    padding: 1rem 0.9rem 1.1rem;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
    overflow: visible;
    border: 1px solid var(--surface-border);
    border-top: none;
  }

  .sc-hover h3 {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }

  .sc-hover p {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.5;
  }

  .sc-hover .btn {
    margin-top: 0.25rem;
    font-size: 0.68rem;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    white-space: normal;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .cards-container { grid-template-columns: 1fr; }
  .service-card img { aspect-ratio: 16 / 9; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > :last-child { grid-column: unset; }
  .fc-block { padding: 1.6rem 1.5rem; }

  .services-header h2,
  .parallax-content h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  .features-section { padding: 4rem 0; }

  .feature-box {
    padding: 1.2rem 1.1rem;
    gap: 0.5rem;
  }

  .feature-box h4 { font-size: 1.05rem; }

  .feature-box p { font-size: 0.9rem; }
}

/* =====================
   CENÍK
   ===================== */
.page-header {
  padding: calc(var(--nav-height) + 6rem) 0 4rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}
.page-header h1 .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.page-header p {
  color: rgba(244, 238, 230, 0.65);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Mezoterapie: jump links ──────────────────────────────────── */
.mezo-jumplinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.mezo-jumplinks a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 238, 230, 0.65);
  text-decoration: none;
  border: 1px solid rgba(244, 238, 230, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mezo-jumplinks a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201, 149, 74, 0.08);
}

@media (max-width: 580px) {
  .mezo-jumplinks a { font-size: 0.72rem; padding: 0.35rem 0.9rem; }
}

/* CENÍK — FILTER TABS */
.cenik-filter-section {
  padding: 2.5rem 0 0;
  background-color: #c9a87c;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px);
}

.cenik-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.cenik-tab {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(100, 60, 20, 0.25);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream-text);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cenik-tab:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--accent-on-light);
  transform: translateY(-2px);
}

.cenik-tab.active {
  background: var(--accent-on-light);
  border-color: var(--accent-on-light);
  color: #fff;
  box-shadow: 0 4px 16px rgba(122, 76, 16, 0.35);
}

.pricing-section {
  padding: 3rem 0 8rem;
  background-color: #c9a87c;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.pricing-grid--centered {
  grid-template-columns: minmax(0, 600px);
  justify-content: center;
}

.pricing-category {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(100, 60, 20, 0.2);
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(60, 30, 5, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pricing-category:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pricing-category-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--cream-text);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--accent-on-light);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-list.grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pi-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.pi-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream-text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pi-dots {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(100, 60, 20, 0.3);
  position: relative;
  top: -4px;
}

.pi-price {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  color: var(--accent-on-light);
  font-weight: 700;
  white-space: nowrap;
}

.pi-desc {
  font-size: 0.95rem;
  color: var(--cream-text-sub);
  line-height: 1.6;
  margin: 0;
}

.pi-desc strong {
  color: var(--cream-text);
  font-weight: 500;
}

.pi-duration {
  font-size: 0.82rem;
  color: var(--accent-on-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
  display: inline-block;
}

@media (max-width: 1024px) {
  .pricing-list.grid-list { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pricing-category { padding: 2.5rem 1.5rem; }
  .pi-header { flex-direction: column; gap: 0.2rem; }
  .pi-dots { display: none; }
  .pi-price { color: var(--accent-on-light); align-self: flex-start; margin-top: 0.3rem; font-size: 1.25rem; font-weight: 700; }
}

/* =====================
   KDO JSEM PAGE
   ===================== */

/* Editoriální text v tmavé intro sekci – bez glass-card boxu */
.ki-editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.ki-editorial-text .sub-heading {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.ki-editorial-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  color: #f4ede0;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ki-editorial-text p {
  color: rgba(244, 237, 224, 0.75);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  max-width: 560px;
}
.ki-editorial-text strong { color: #f4ede0; font-weight: 600; }

/* Narativní článkový layout v krémové sekci */
.ki-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0 1rem;
}
.ki-article-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.ki-article-lead h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--cream-text);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.ki-article-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream-text);
  line-height: 1.75;
  margin: 0;
}
.ki-article-body p {
  color: var(--cream-text-sub);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.ki-article-body strong { color: var(--cream-text); font-weight: 600; }

/* Citace – vypíchnutá, přirozená součást textu */
.ki-pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--cream-text);
  line-height: 1.65;
  border-left: 3px solid var(--accent-on-light);
  padding: 0.75rem 0 0.75rem 2rem;
  margin: 2.5rem 0;
}

/* Hodnoty – čistý textový seznam bez karet */
.ki-article-values {
  padding-top: 2rem;
  border-top: 1px solid rgba(100,60,20,0.2);
  margin-bottom: 0.5rem;
}
.ki-article-values h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--cream-text);
  margin-bottom: 1.25rem;
}
.ki-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 3.5rem;
}
.ki-values-list li {
  color: var(--cream-text-sub);
  font-size: 0.98rem;
  line-height: 1.55;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(122,76,16,0.4);
}
.ki-values-list strong {
  color: var(--cream-text);
  font-weight: 600;
}

@media (max-width: 900px) {
  .ki-article-header { grid-template-columns: 1fr; gap: 2rem; }
  .ki-values-list { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .ki-editorial-text p { max-width: 100%; }
}

.ab-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 149, 74, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.ab-box:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 149, 74, 0.4);
}

/* Base text box */
.ab-text-box {
  padding: 3.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--accent);
}

/* Image box */
.ab-image-box {
  padding: 0;
  border: 1px solid rgba(201, 149, 74, 0.2);
}
.ab-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.ab-image-box:hover img {
  transform: scale(1.05);
}

/* Typography Inside Box */
.ab-text-box .sub-heading {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}
.ab-text-box h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.ab-content {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ab-content strong {
  color: #fff;
  font-weight: 600;
}

/* Variants */
.ab-dark-box {
  background: #090605;
}
.ab-icon i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(201,149,74,0.3));
}
.ab-wide-box {
  background: radial-gradient(circle at 100% 0%, rgba(201, 149, 74, 0.1) 0%, rgba(255,255,255,0.01) 60%);
}
.two-columns {
  flex-direction: row;
  gap: 3rem;
}
.two-columns > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ab-accent-box {
  background: rgba(5, 3, 2, 0.6);
  border-left: 3px solid var(--accent);
}
.ab-accent-box .ab-icon i {
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(201,149,74,0.3));
}
.ab-accent-box .ab-content { color: var(--text-main); font-size: 1.1rem; }
.ab-accent-box .ab-content strong { color: var(--accent); }
.ab-footer-box {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  align-items: center;
  padding: 4rem 2rem 2rem;
}
.ab-footer-box:hover { transform: none; border-color: transparent; }
.ab-highlight {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  max-width: 700px;
}
.ab-signature {
  font-family: 'Beau Rivage', cursive;
  font-size: 4rem;
  font-style: normal;
  color: var(--accent);
  margin-top: 1.5rem;
}

/* Hobby tagy */
.ab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(201, 149, 74, 0.12);
  border: 1px solid rgba(201, 149, 74, 0.35);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 500;
}
.ab-tag i { font-size: 0.7rem; }

/* Pull quote box */
.ab-quote-box {
  background: #1a0f08;
  border: none;
  padding: 3.5rem 5rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-quote-box:hover { border-color: transparent; }
.ab-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  line-height: 0;
  color: var(--accent);
  opacity: 0.5;
  position: absolute;
  top: 4.5rem;
  left: 3.5rem;
  pointer-events: none;
}
.ab-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-style: italic;
  color: #f4ede0;
  line-height: 1.65;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .two-columns { flex-direction: column; gap: 1.5rem; }
  .ki-image { min-height: 320px; aspect-ratio: 3/4; }
  .ab-quote-box { padding: 3rem 3.5rem; }
}

@media (max-width: 768px) {
  .ab-text-box { padding: 1.6rem 1.2rem; }
  .ab-quote-box { padding: 2.5rem 2rem; }
  .ab-quote-mark { font-size: 7rem; top: 3rem; left: 2rem; }
}

/* =====================
   KONTAKT PAGE
   ===================== */

.contact-section {
  padding: 2rem 0 6rem;
  position: relative;
  z-index: 2;
  background-color: #c9a87c;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px);
  border-top: 1px solid rgba(100,60,20,0.2);
  border-bottom: 1px solid rgba(100,60,20,0.2);
}

/* Přebití barev na krémovém pozadí */
.contact-section .contact-card--form,
.contact-section .contact-info-card {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--cream-deep);
  color: var(--cream-text);
}
.contact-section .contact-card--form h2 { color: var(--cream-text); }
.contact-section .contact-card__label,
.contact-section .ci-label { color: var(--accent-on-light); }
.contact-section .contact-map__header { border-bottom-color: rgba(100,60,20,0.2); }
.contact-section .contact-info-card { border-color: rgba(100,60,20,0.2); }
.contact-section .contact-intro,
.contact-section .ci-hint { color: var(--cream-text-sub); }
.contact-section .ci-value { color: var(--cream-text); }
.contact-section .cf-group label { color: var(--cream-text-sub); }
.contact-section .cf-group input,
.contact-section .cf-group select,
.contact-section .cf-group textarea {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(100, 60, 20, 0.25);
  color: var(--cream-text);
}
.contact-section .cf-group input::placeholder,
.contact-section .cf-group textarea::placeholder { color: rgba(42, 31, 20, 0.35); }
.contact-section .cf-group select option { background: var(--cream-bg); color: var(--cream-text); }
.contact-section .cf-note { color: var(--cream-text-sub); }
.contact-section .contact-map { border-color: rgba(100, 60, 20, 0.2); }
.contact-section .contact-map__header {
  background: rgba(255, 255, 255, 0.4);
  border-bottom-color: rgba(100, 60, 20, 0.2);
  color: var(--accent-on-light);
}
.contact-section .contact-info-card:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--accent);
}

/* Hlavní dvousloupcový grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* --- FORMULÁŘOVÁ KARTA --- */
.contact-card--form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  height: 100%;
}

.contact-card__label {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-card--form h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.contact-intro {
  color: rgba(244, 238, 230, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

/* Honeypot - zcela skryté */
.cf-honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

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

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-group label {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
}

.cf-required {
  color: var(--accent);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.cf-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9954a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.8rem;
}

.cf-group select option {
  background: #1a1512;
  color: var(--text-main);
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(244, 238, 230, 0.3);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--accent);
  background: rgba(201, 149, 74, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 149, 74, 0.12);
}

.cf-group input:invalid:not(:placeholder-shown),
.cf-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 80, 80, 0.6);
}

.cf-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
}

.cf-note {
  font-size: 0.82rem;
  color: rgba(244, 238, 230, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.cf-note i {
  color: var(--accent);
  flex-shrink: 0;
}

/* --- PRAVÝ SLOUPEC --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Mřížka 2×2 pro kontaktní karty */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  backdrop-filter: blur(10px);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 149, 74, 0.4);
  background: rgba(201, 149, 74, 0.05);
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 149, 74, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-info-card:hover .ci-icon {
  background: rgba(201, 149, 74, 0.22);
}

.ci-icon--instagram {
  background: linear-gradient(135deg, rgba(193, 53, 132, 0.2), rgba(253, 193, 104, 0.2));
  color: #e1306c;
}

.contact-info-card--instagram:hover .ci-icon--instagram {
  background: linear-gradient(135deg, rgba(193, 53, 132, 0.35), rgba(253, 193, 104, 0.35));
}

.ci-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.ci-label {
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.ci-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  word-break: break-word;
}

.ci-hint {
  font-size: 0.82rem;
  color: rgba(244, 238, 230, 0.45);
}

/* --- MAPA --- */
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  position: relative;
}

.contact-map__header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--surface-border);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-map iframe {
  display: block;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter 0.3s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0) contrast(1.08);
}

/* --- RESPONZIVITA --- */
@media (max-width: 1024px) {
  .contact-card--form {
    padding: 2.2rem;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-card--form {
    padding: 1.8rem 1.4rem;
  }
  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* =====================
   KOSMETIKA PAGE
   ===================== */

/* -- Intro sekce (dark) -- */
.kosmetika-intro-section {
  padding: 2rem 0 5rem;
  position: relative;
  z-index: 2;
}

.kosmetika-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.ki-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ki-image {
  min-height: 460px;
}

.ki-image img {
  height: 100%;
  object-fit: cover;
}

/* ── Mezoterapie: tmavá sekce „Co čekat po ošetření?" ─────────── */
.mezo-recovery-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  background: var(--bg-color);
  border-top: 1px solid rgba(201, 149, 74, 0.2);
  border-bottom: 1px solid rgba(201, 149, 74, 0.2);
}

.mezo-recovery-section .madero-process {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.mezo-recovery-section .madero-process::before {
  display: none;
}

.mezo-recovery-section .madero-process-steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.mezo-recovery-section .madero-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 149, 74, 0.18);
  border-top: 3px solid var(--accent-light);
  border-radius: 14px;
  padding: 1.75rem 1.25rem 1.5rem;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.mezo-recovery-section .madero-step-num {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.mezo-recovery-section .madero-step-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.01em;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.mezo-recovery-section .madero-step-text span {
  display: block;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(244, 238, 230, 0.6);
}

@media (max-width: 800px) {
  .mezo-recovery-section .madero-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mezo-recovery-section .madero-process-steps {
    grid-template-columns: 1fr;
  }
}

/* -- Krémová sekce -- */
.kosmetika-cream-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 2;
  background-color: #c9a87c;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(100,60,20,0.04) 2px, rgba(100,60,20,0.04) 3px);
  border-top: 1px solid rgba(100,60,20,0.2);
  border-bottom: 1px solid rgba(100,60,20,0.2);
}

/* Label nad nadpisem */
.brand-label {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Zlatavé pozadí: přebití accent/světlých barev pro čitelnost ── */
.kosmetika-cream-section .brand-label,
.kosmetika-cream-section .variant-label,
.kosmetika-cream-section .pi-duration { color: var(--accent-on-light); }

.kosmetika-cream-section .cbc-tags span {
  color: var(--accent-on-light);
  border-color: rgba(100, 60, 20, 0.35);
  background: rgba(255, 255, 255, 0.3);
}

.kosmetika-cream-section .massage-pullquote {
  color: var(--accent-on-light);
  border-left-color: var(--accent-on-light);
}

.kosmetika-cream-section .kosmetika-divider,
.kosmetika-cream-section .kosmetika-effects,
.kosmetika-cream-section .kosmetika-cta { border-color: rgba(100, 60, 20, 0.2); }

.kosmetika-cream-section .effect-card {
  border-color: rgba(100, 60, 20, 0.2);
}

.kosmetika-cream-section .carousel-dot { background: rgba(100, 60, 20, 0.3); }
.kosmetika-cream-section .carousel-dot.active { background: var(--accent-on-light); }

.kosmetika-cream-section .scroll-btn {
  border-color: rgba(100, 60, 20, 0.25);
  background: rgba(255, 255, 255, 0.5);
}

.kosmetika-cream-section .mezo-pillar {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(100, 60, 20, 0.2);
}

/* ── Cell by Cell ─────────────────────────────────── */
.kosmetika-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-bottom: 4rem;
}

.kosmetika-brand-text {
  min-width: 0;
}

.kosmetika-brand-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream-text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.brand-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream-text);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.kosmetika-brand-text p {
  color: var(--cream-text-sub);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Ingredient tagy */
.cbc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.cbc-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(190, 140, 90, 0.35);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--accent);
  background: rgba(190, 140, 90, 0.07);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.cbc-tags span i {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ── Mezoterapie – detail sekce ────────────────────────────────── */
.mezo-detail {
  padding-bottom: 0;
}

.mezo-detail-header {
  max-width: 40%;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.mezo-detail-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream-text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.mezo-detail-header p {
  color: var(--cream-text-sub);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.mezo-note {
  text-align: center;
  font-style: italic;
}

.mezo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mezo-pillar {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: mezo-slide-up 0.6s both;
  animation-delay: var(--pd, 0ms);
}

.mezo-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

@keyframes mezo-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mezo-pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 149, 74, 0.1);
  border: 1px solid rgba(201, 149, 74, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  animation: mezo-pulse 3s ease-in-out infinite;
  animation-delay: var(--pd, 0ms);
}

@keyframes mezo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 149, 74, 0); }
  50%       { box-shadow: 0 0 0 9px rgba(201, 149, 74, 0.12); }
}

.mezo-pillar strong {
  font-size: 1rem;
  color: var(--cream-text);
  font-weight: 600;
  line-height: 1.3;
}

.mezo-pillar p {
  font-size: 0.95rem;
  color: var(--cream-text-sub);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .mezo-pillars {
    grid-template-columns: 1fr;
  }

  .mezo-detail-header {
    max-width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .mezo-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── konec mezoterapie detail ──────────────────────────────────── */

/* ── Frekvence — vertikální seznam ─────────────────────────────── */
.freq-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  max-width: 580px;
  margin-inline: auto;
}

.freq-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--cream-deep);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--fd, 0ms);
}

.freq-row:last-child {
  border-bottom: 1px solid var(--cream-deep);
}

.freq-row.in-view {
  opacity: 1;
  transform: none;
}


.freq-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.freq-label strong {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--cream-text);
  font-weight: 600;
}

.freq-label span {
  font-size: 0.85rem;
  color: var(--cream-text-sub);
}

.freq-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .freq-row {
    padding: 1.4rem 0;
  }
}

@media (max-width: 300px) {
  .freq-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  .freq-badge {
    justify-self: center;
  }
}
/* ── konec frekvence ────────────────────────────────────────────── */

/* ── Bílá / světlá sekce (kontraindikace atd.) ──────────────────── */
.kosmetika-white-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 2;
  background-color: var(--cream-deep);
  border-top: 1px solid rgba(100,60,20,0.15);
  border-bottom: 1px solid rgba(100,60,20,0.12);
}

/* Původ značky */
.cbc-origin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--cream-text-sub);
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kosmetika-brand-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.kosmetika-brand-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.8s ease;
}

.kosmetika-brand-image:hover img {
  transform: scale(1.04);
}

/* Oddělovač */
.kosmetika-divider {
  height: 1px;
  background: var(--cream-deep);
  margin: 3rem 0 4rem;
}

/* ── Masáž ────────────────────────────────────────── */
.kosmetika-massage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-bottom: 4rem;
}

.kosmetika-massage-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.kosmetika-massage-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.8s ease;
}

.kosmetika-massage-image:hover img {
  transform: scale(1.04);
}

.kosmetika-massage-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream-text);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

/* Pull quote */
.massage-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin: 0 0 1.2rem;
  line-height: 1.6;
}

.kosmetika-massage-text p {
  color: var(--cream-text-sub);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

/* -- Účinky masáže -- */
.kosmetika-effects {
  padding: 0 0 4rem;
}

.effects-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream-text);
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Label varianta (dočasný) */
.variant-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin: 3rem 0 1rem;
  font-weight: 600;
}

/* Sdílená karta */
.effect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--cream-deep);
  border-radius: 20px;
  flex-shrink: 0;
}

.effect-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.effect-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.effect-card strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream-text);
  font-weight: 500;
  line-height: 1.3;
}

.effect-card p {
  font-size: 0.88rem;
  color: var(--cream-text);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.effect-card .kw {
  font-weight: 700;
  background-image: linear-gradient(rgba(201, 149, 74, 0.28) 100%, transparent 100%);
  background-repeat: no-repeat;
  background-position: 0 55%;
  background-size: 100% 45%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ── VARIANTA 1: Marquee ── */
.effects-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.effects-marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.effects-marquee:hover .effects-marquee-track {
  animation-play-state: paused;
}

.effects-marquee .effect-card {
  width: 240px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── VARIANTA 2: Posuvný pás ── */
.effects-scroll-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.effects-scrolltrack {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  flex: 1;
}

.effects-scrolltrack .effect-card {
  width: 240px;
  scroll-snap-align: start;
}

.scroll-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--cream-deep);
  background: rgba(255,255,255,0.7);
  color: var(--cream-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.scroll-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

/* ── VARIANTA 3: Karusel ── */
.effects-carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.5s ease;
}

.effects-carousel .effect-card {
  width: calc((100% - 2 * 1.2rem) / 3);
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* -- CTA -- */
.kosmetika-cta {
  text-align: center;
  padding: 4rem 0 1rem;
  border-top: 1px solid var(--cream-deep);
}

.kosmetika-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream-text);
  margin-bottom: 0.75rem;
}

.kosmetika-cta p {
  color: var(--cream-text-sub);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.kosmetika-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Outline tlačítko na krémovém pozadí */
.btn-cream-outline {
  background: transparent;
  border: 1.5px solid var(--cream-text) !important;
  color: var(--cream-text) !important;
}

.btn-cream-outline:hover {
  background: var(--cream-text) !important;
  color: var(--cream-bg) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 31, 20, 0.12);
}

/* -- Responzivita -- */
@media (max-width: 1024px) {
  .kosmetika-intro-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }
  .ki-image {
    min-height: 320px;
    aspect-ratio: 3/4;
  }
  .kosmetika-brand-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .kosmetika-brand-image {
    max-width: 100%;
    width: 100%;
  }
  .kosmetika-massage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .kosmetika-massage-text { order: 1; }
  .kosmetika-massage-image {
    order: 2;
    max-width: 100%;
    width: 100%;
  }
  .kosmetika-massage-image img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .effects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kosmetika-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .kosmetika-cta-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .effects-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LAMINACE OBOČÍ – fact panel (místo fotky)
   ============================================ */

.laminace-brand-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: flex-start;
  width: 100%;
}

.laminace-fact {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.laminace-fact:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.laminace-fact-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.laminace-fact-icon i {
  color: #fff;
  font-size: 1rem;
}

.laminace-fact-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.laminace-fact-text strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream-text);
  line-height: 1.2;
}

.laminace-fact-text span {
  font-size: 0.82rem;
  color: var(--cream-text-sub);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .laminace-brand-facts {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .laminace-fact {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

@media (max-width: 500px) {
  .laminace-fact {
    flex: 1 1 100%;
  }
}

/* ============================================
   LAMINACE OBOČÍ – effects-list (kreativní sekce na krémovém pozadí)
   ============================================ */

.effects-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.effects-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--cream-text-sub);
  font-size: 1rem;
  line-height: 1.6;
}

.effects-list li i {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Statická mřížka karet (péče po proceduře) */
.effects-cards-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .effects-cards-static {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .effects-cards-static {
    grid-template-columns: 1fr;
  }
}

.effects-cards-4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .effects-cards-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .effects-cards-4col {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MADEROTERAPIE – průběh procedury (tmavý blok)
   ============================================ */

.madero-process {
  background: var(--bg-color);
  border-radius: 24px;
  padding: 3.5rem;
  margin: 0 0 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 149, 74, 0.18);
}

.madero-process::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 149, 74, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brand-label-light {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.75rem;
}

.madero-process-header {
  margin-bottom: 3rem;
}

.madero-process-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-main);
  line-height: 1.15;
}

.madero-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.madero-step {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 149, 74, 0.25);
}

.madero-step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--accent-light);
  line-height: 1;
}

.madero-step-body strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.mezo-warn-icon {
  font-size: 0.8em;
  color: var(--accent-light);
  vertical-align: middle;
  margin-left: 0.3em;
  opacity: 0.9;
}

.madero-step-body p {
  color: rgba(244, 238, 230, 0.6);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Nadpis sekce (pro koho) ─────────────────── */

.madero-section-heading {
  padding-bottom: 2rem;
}

.madero-section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream-text);
  line-height: 1.15;
}

@media (max-width: 900px) {
  .madero-process {
    padding: 2.5rem 2rem;
  }
  .madero-process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .madero-step {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 149, 74, 0.25);
    border-left: none;
    padding-left: 0;
    gap: 0.5rem;
  }
  .madero-step-num {
    font-size: 2rem;
  }
}

/* ============================================
   MADEROTERAPIE – kontraindikace info lišta
   ============================================ */

.madero-kontra {
  margin: 1.5rem 0 0;
}

.madero-kontra-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(180, 60, 60, 0.18), rgba(160, 40, 40, 0.10));
  border: 1.5px solid rgba(180, 60, 60, 0.45);
  border-left: 4px solid #b83c3c;
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
}

.madero-kontra-inner > i {
  color: #b83c3c;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.madero-kontra-inner strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--cream-text);
  font-weight: 600;
}

.madero-kontra-inner span {
  color: var(--cream-text-sub);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   LAMINACE OBOČÍ – vhodnost grid
   ============================================ */

/* ── Kontraindikace – Varianta A (individual items) ── */
.kontra-list-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream-text);
  margin: 0 0 0.85rem;
}

.kontra-list-heading i {
  color: #b83c3c;
  font-size: 1rem;
  flex-shrink: 0;
}

.kontra-item-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.kontra-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(184,60,60,0.13), rgba(160,40,40,0.06));
  border: 1px solid rgba(184,60,60,0.28);
  border-left: 3px solid #b83c3c;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  transition: background 0.2s;
}

.kontra-item i {
  color: #b83c3c;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.kontra-item span {
  font-size: 0.88rem;
  color: var(--cream-text);
  line-height: 1.4;
}

.kontra-dotaz-link {
  color: var(--cream-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(42,31,20,0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.kontra-dotaz-link:hover {
  color: var(--cream-text-sub);
  text-decoration-color: var(--cream-text-sub);
}

/* ── Kontraindikace – Varianta B (warning block) ── */
.kontra-warning-block {
  background: linear-gradient(135deg, rgba(184,60,60,0.16), rgba(160,40,40,0.07));
  border: 1.5px solid rgba(184,60,60,0.42);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  box-sizing: border-box;
}

.kontra-warning-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,60,60,0.22);
}

.kontra-warning-header i {
  color: #b83c3c;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.kontra-warning-header h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream-text);
  margin: 0;
  line-height: 1.3;
}

.kontra-warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.kontra-warning-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream-text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.kontra-warning-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #b83c3c;
  border-radius: 50%;
  flex-shrink: 0;
}

.laminace-vhodnost-intro {
  text-align: center;
  padding-bottom: 2rem;
}

.laminace-vhodnost-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream-text);
  margin-bottom: 0;
  line-height: 1.15;
}

.laminace-vhodnost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.laminace-vhodnost-box {
  border-radius: 20px;
  padding: 2rem 2.5rem;
  border: 1px solid var(--cream-deep);
}

.laminace-vhodnost-pro {
  background: rgba(248, 238, 220, 0.72);
  border-color: rgba(200, 162, 108, 0.55);
}

.laminace-vhodnost-ne {
  background: rgba(248, 238, 220, 0.72);
  border-color: rgba(200, 162, 108, 0.55);
}

.laminace-vhodnost-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.laminace-vhodnost-heading h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--cream-text);
  margin: 0;
}

.laminace-vhodnost-pro .laminace-vhodnost-heading i {
  color: #5a9e5a;
  font-size: 1.4rem;
}

.laminace-vhodnost-ne .laminace-vhodnost-heading i {
  color: #b85555;
  font-size: 1.4rem;
}

.laminace-vhodnost-pro .effects-list li i {
  color: #5a9e5a;
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 0.3rem;
}

.laminace-vhodnost-ne .effects-list li i {
  color: #b85555;
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 0.3rem;
}

@media (max-width: 700px) {
  .laminace-vhodnost-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LAMINACE – Úprava obočí tmavý panel
   ============================================ */

.upravaoboci-panel {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(28, 20, 12, 0.9);
  border: 1px solid rgba(201, 149, 74, 0.2);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.uop-left {
  flex: 1;
  min-width: 0;
}

.uop-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 149, 74, 0.8);
  margin-bottom: 0.6rem;
}

.uop-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #f5efe8;
  margin: 0 0 0.9rem;
  line-height: 1.2;
}

.uop-left p {
  color: rgba(245, 239, 232, 0.55);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

.uop-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
  flex-shrink: 0;
}

.uop-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.uop-item i {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.uop-item span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #f5efe8;
  line-height: 1.3;
}

@media (max-width: 700px) {
  .upravaoboci-panel {
    flex-direction: column;
    padding: 2rem 1.8rem;
    gap: 1.5rem;
  }
  .uop-right {
    width: 100%;
    gap: 0.7rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   KOSMETIKA – INTERAKTIVNÍ EFEKTY
   Cell by Cell: rotující světelný kruh + hover štítky
   Kosmetická masáž: breathing animace
   ═══════════════════════════════════════════════════════════ */

/* ── Wrapper pro interaktivní oblast produktu ── */
.cbc-interactive-wrapper {
  position: relative;
  transition: scale 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Obrázek je nad glow vrstvami */
.cbc-interactive-wrapper .kosmetika-brand-image {
  position: relative;
  z-index: 2;
}

/* ── Hover štítky ── */
.cbc-hover-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cbc-interactive-wrapper:hover .cbc-hover-labels {
  opacity: 1;
}

.cbc-label {
  position: absolute;
  background: rgba(13, 11, 10, 0.82);
  color: var(--accent-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 149, 74, 0.5);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: cbc-label-float 3s ease-in-out infinite;
}

.cbc-label--1 { top: 22%; left: -2%;   animation-delay: 0s;   }
.cbc-label--2 { top: 50%; right: -2%;  animation-delay: 1s;   }
.cbc-label--3 { bottom: 22%; left: 8%; animation-delay: 1.8s; }

@keyframes cbc-label-float {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-5px); }
}

/* ── Masáž – breathing animace (storytelling efekt) ── */
.kosmetika-massage-breathe img {
  animation: massage-breathe 7s ease-in-out infinite;
  transform-origin: center center;
}

.kosmetika-massage-breathe:hover img {
  animation-play-state: paused;
  transform: scale(1.04);
}

@keyframes massage-breathe {
  0%,  100% { transform: scale(1);                       }
  25%        { transform: scale(1.025) translateY(-3px); }
  50%        { transform: scale(1.015) translateY(0);    }
  75%        { transform: scale(1.03)  translateY(-2px); }
}

/* Jemný světelný přeliv přes masážní obrázek */
.kosmetika-massage-breathe::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(201, 149, 74, 0.06) 0%,
    transparent 50%,
    rgba(201, 149, 74, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: massage-shimmer 7s ease-in-out infinite;
}

@keyframes massage-shimmer {
  0%,  100% { opacity: 0.4; }
  50%        { opacity: 1;   }
}

/* ── Kdo jsem: portrét – hover štítky (uvnitř overflow:hidden boxu) ── */
.ki-portrait-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ab-image-box:hover .ki-portrait-labels {
  opacity: 1;
}
.ki-portrait-labels .cbc-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Responsive úpravy */
@media (max-width: 768px) {
  .cbc-label--1 { left: 2%; }
  .cbc-label--2 { right: 2%; }
  .cbc-label--3 { left: 4%; }
}
