/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --brown-deep:   #2C1A0E;
  --brown-dark:   #4A2E1C;
  --brown-mid:    #7A4F32;
  --brown-warm:   #A0693A;
  --brown-light:  #C8996B;
  --beige-dark:   #DEC9AA;
  --beige-mid:    #EDD9BC;
  --beige-light:  #F5EDDF;
  --beige-cream:  #FBF6EE;
  --white:        #FFFFFF;
  --gold:         #B8893D;
  --gold-light:   #D4AC67;

  /* Semantic */
  --bg:           var(--beige-cream);
  --bg-cream:     var(--beige-light);
  --bg-brown:     var(--brown-dark);
  --text-primary: var(--brown-deep);
  --text-secondary: #6B4E37;
  --text-muted:   #957660;
  --border:       rgba(160, 105, 58, 0.18);

  /* Type */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* Shadow */
  --shadow-sm:  0 2px 8px rgba(44,26,14,.08);
  --shadow-md:  0 8px 24px rgba(44,26,14,.12);
  --shadow-lg:  0 20px 50px rgba(44,26,14,.18);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease);
}

a:hover { color: var(--brown-mid); }

ul, ol { list-style: none; }

address { font-style: normal; }

/* Focus ring for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown-deep);
}

h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.01em; }
h3 { font-size: clamp(18px, 2.2vw, 22px); }

p { color: var(--text-secondary); }

strong { color: var(--brown-dark); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

/* Odsazení kotev pod fixní hlavičku při scrollu */
section[id],
[id].section {
  scroll-margin-top: 88px;
}

.section--cream  { background: var(--bg-cream); }
.section--brown  { background: var(--bg-brown); }

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.section__head h2 { margin-bottom: 14px; }
.section__lead { font-size: 17px; color: var(--text-muted); margin: 0; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split--reverse .split__visual { order: -1; }

.split__copy h2 { margin-bottom: var(--space-md); }
.split__copy p  { margin-bottom: var(--space-md); }

.split__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

/* ---- O SALONU: bohatší prezentace fotky majitelky ---- */
#o-salonu .split__visual--quote { position: relative; z-index: 0; }

/* Dekorativní zlatý rámeček, který vykukuje za fotkou (levý horní roh) */
#o-salonu .split__visual--quote::before {
  content: '';
  position: absolute;
  left: -20px;
  top: -20px;
  width: 60%;
  height: 55%;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-xl);
  opacity: .55;
  z-index: -1;
}

#o-salonu .split__img-wrap {
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(44,26,14,.28);
}

#o-salonu .split__img {
  height: 560px;
  object-position: center 24%;
  transition: transform 1s var(--ease);
}

#o-salonu .split__img-wrap:hover .split__img {
  transform: scale(1.05);
}

/* Jemný spodní přechod pro hloubku (pod citátem) */
#o-salonu .split__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,.35) 0%, transparent 42%);
  pointer-events: none;
}

/* ---- O SALONU: text se načítá postupně (staggered reveal) ---- */
/* Rodič neanimujeme jako blok — necháme animovat jednotlivé prvky */
#o-salonu .split__copy[data-reveal] {
  opacity: 1;
  transform: none;
}

#o-salonu .split__copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

#o-salonu .split__copy.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

#o-salonu .split__copy.is-visible > *:nth-child(1) { transition-delay: .08s; }
#o-salonu .split__copy.is-visible > *:nth-child(2) { transition-delay: .20s; }
#o-salonu .split__copy.is-visible > *:nth-child(3) { transition-delay: .32s; }
#o-salonu .split__copy.is-visible > *:nth-child(4) { transition-delay: .44s; }
#o-salonu .split__copy.is-visible > *:nth-child(5) { transition-delay: .56s; }
#o-salonu .split__copy.is-visible > *:nth-child(6) { transition-delay: .68s; }

.split__img--rounded {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   OWNER SPLIT — fotka majitelky na plnou výšku
   ============================================================ */
.owner-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  background: var(--bg-cream);
}

.owner-split__photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.owner-split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.owner-split__copy {
  padding: var(--space-2xl) var(--space-xl);
  max-width: 640px;
}

.owner-split__copy h2 { margin-bottom: var(--space-md); }
.owner-split__copy p  { margin-bottom: var(--space-md); }

.owner-split .quote-card {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s var(--ease);
  text-decoration: none;
}

.btn--primary {
  background: var(--brown-dark);
  color: var(--beige-cream);
}
.btn--primary:hover {
  background: var(--brown-mid);
  color: var(--white);
}

.btn--outline {
  border-color: var(--brown-mid);
  color: var(--brown-dark);
  background: transparent;
}
.btn--outline:hover {
  background: var(--brown-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 10px 12px;
}

.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B8893D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 80px;
  background: rgba(251,246,238,.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__paw {
  width: 36px;
  height: 36px;
  fill: var(--brown-warm);
  flex-shrink: 0;
  transition: transform .45s var(--ease-bounce), fill .3s var(--ease);
}

.header__logo:hover .header__paw {
  transform: rotate(-14deg) scale(1.12);
  fill: var(--gold);
}

.header__name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1;
}

.header__name em {
  font-style: italic;
  color: var(--brown-mid);
}

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

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 6px 2px;
  transition: color .25s var(--ease);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--brown-warm));
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}

.header__nav a:hover { color: var(--brown-warm); }
.header__nav a.is-active { color: var(--brown-warm); }

.header__nav a:hover::after,
.header__nav a.is-active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__tel {
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all .25s var(--ease);
  display: block;
}

.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  top: 0;
  width: 56%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg-img--left  { left: 0;  }

/* Pravá fotka leží přes levou a její levý okraj se plynule prolne — žádný ostrý ani rozmazaný šev */
.hero__bg-img--right {
  right: 0;
  object-position: center 28%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%);
}

.hero__overlay {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,26,14,.28) 0%,
    rgba(44,26,14,.52) 42%,
    rgba(44,26,14,.9)  100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.hero__copy { max-width: 680px; }

.hero__copy .eyebrow {
  color: var(--gold-light);
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}

.hero__copy h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45), 0 1px 24px rgba(0,0,0,.35);
}

.hero__lead {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.92);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

.hero__stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

.hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  display: block;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: block;
  padding: 8px 12px;
  cursor: pointer;
  transition: opacity .2s var(--ease);
}

.hero__scroll-hint:hover { opacity: .7; }

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  transition: all .3s var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--beige-dark);
}

.feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--brown-warm);
  transition: transform .45s var(--ease-bounce), color .3s var(--ease);
}

.feature__icon svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 4px 6px rgba(122,79,50,.20));
  transition: filter .35s var(--ease);
}

.feature:hover .feature__icon {
  transform: translateY(-5px) scale(1.14);
  color: var(--gold);
}

.feature:hover .feature__icon svg {
  filter: drop-shadow(0 9px 14px rgba(184,137,61,.42));
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: flex;
  height: 260px;
  overflow: hidden;
}

.photo-strip img {
  width: 20%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: all .5s var(--ease);
  filter: brightness(.92);
}

.photo-strip img:hover {
  width: 30%;
  filter: brightness(1);
}

/* ============================================================
   SLUŽBY — hnědé pozadí sekce (světlé nadpisy + karty zůstávají)
   ============================================================ */
#sluzby {
  background: var(--brown-dark);
}

#sluzby .section__head h2 { color: var(--white); }

#sluzby .info-section {
  border-top-color: rgba(255,255,255,.15);
}
#sluzby .info-section__title { color: var(--white); }
#sluzby .info-section__sub   { color: rgba(255,255,255,.72); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.service-card {
  position: relative;
  background: var(--beige-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-md);
  transition: all .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--beige-dark);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-warm);
  margin-bottom: 14px;
  transition: transform .45s var(--ease-bounce), color .3s var(--ease);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 3px 5px rgba(122,79,50,.18));
  transition: filter .35s var(--ease);
}

.service-card:hover .service-card__icon {
  transform: scale(1.16) rotate(-6deg);
  color: var(--gold);
}

.service-card:hover .service-card__icon svg {
  filter: drop-shadow(0 7px 11px rgba(184,137,61,.38));
}

.service-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.service-card--highlight {
  border-color: var(--gold);
}

.service-card--highlight .service-card__icon {
  color: var(--brown-dark);
}

.service-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.services-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-md) var(--space-md) 20px;
  background: var(--beige-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  font-size: 15px;
  color: var(--brown-dark);
}

.services-note svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.pricing-col {
  position: relative;
  background: linear-gradient(180deg, var(--white), var(--beige-cream));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

/* Horní zlatý akcent — vyjede při hoveru */
.pricing-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--brown-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}

.pricing-col:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--beige-dark);
}

.pricing-col:hover::before { transform: scaleX(1); }

.pricing-col__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  color: var(--brown-deep);
}

/* Svislý zlatý proužek před nadpisem sloupce */
.pricing-col__title::before {
  content: '';
  width: 4px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(var(--gold-light), var(--brown-warm));
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 10px;
  border-bottom: 1px solid var(--beige-mid);
  font-size: 14.5px;
  border-radius: 8px;
  transition: background .28s var(--ease), transform .28s var(--ease);
}

.price-item:last-child { border-bottom: none; }

.price-item:hover {
  background: rgba(184,137,61,.09);
  transform: translateX(4px);
}

.price-item__name {
  color: var(--text-secondary);
  flex: 1;
  transition: color .28s var(--ease);
}

.price-item:hover .price-item__name { color: var(--brown-dark); }

.price-item__price {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--brown-dark);
  white-space: nowrap;
  transition: color .28s var(--ease), transform .28s var(--ease-bounce);
}

.price-item:hover .price-item__price {
  color: var(--gold);
  transform: scale(1.08);
}

.price-item--note .price-item__price {
  color: var(--brown-light);
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--beige-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   KOSMETIKA / BRANDS
   ============================================================ */
.kosmetika-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.kosmetika-heading {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.kosmetika-text {
  color: rgba(255,255,255,.82);
  margin-bottom: var(--space-md);
}

.kosmetika-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.kosmetika-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.brand-badge {
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-section {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.info-section__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.info-section__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto var(--space-lg);
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.info-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--beige-light);
}

.info-box {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--beige-dark);
}

.info-box--warn {
  border-color: rgba(184,137,61,.35);
  background: var(--beige-light);
}

.info-box__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform .4s var(--ease-bounce);
}

.info-box__icon svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 3px 5px rgba(184,137,61,.22));
}

.info-box:hover .info-box__icon {
  transform: scale(1.14) rotate(-5deg);
}

.info-box h4 {
  font-size: 15.5px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 6px;
}

.info-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.gallery-filter {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.gallery-filter:hover {
  border-color: var(--brown-light);
  color: var(--brown-dark);
}

.gallery-filter.is-active {
  background: linear-gradient(135deg, var(--brown-warm), var(--brown-dark));
  border-color: transparent;
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery__item[hidden] { display: none; }

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--beige-mid);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s;
  filter: brightness(.95);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,.0);
  transition: background .3s;
  border-radius: var(--radius-md);
}

.gallery__item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery__item:hover::after { background: rgba(44,26,14,.1); }

.gallery__more {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   CERTIFICATES
   ============================================================ */
/* Jemná dekorativní záře v pozadí sekce */
#certifikaty {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#certifikaty::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,61,.16), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

#certifikaty::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,107,.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.cert-gallery {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--space-md);
}

/* Dekorativní zlatý rámeček vykukující za fotkou */
.cert-gallery::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 56%;
  height: 44%;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-xl);
  opacity: .5;
  z-index: -1;
}

.cert-gallery .split__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.cert-gallery__small {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Postupné načtení dvou fotek (stagger) — rodič neanimujeme jako blok */
#certifikaty .cert-gallery[data-reveal] { opacity: 1; transform: none; }

#certifikaty .cert-gallery > img {
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity .7s var(--ease), transform .6s var(--ease),
              box-shadow .5s var(--ease), filter .4s var(--ease);
}

#certifikaty .cert-gallery.is-visible > img { opacity: 1; transform: translateY(0) scale(1); }
#certifikaty .cert-gallery.is-visible > img:nth-child(1) { transition-delay: .10s; }
#certifikaty .cert-gallery.is-visible > img:nth-child(2) { transition-delay: .28s; }

/* Zoom + lift na hover (vyšší specificita, aby přebilo koncový stav revealu) */
#certifikaty .cert-gallery.is-visible > img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 34px 64px rgba(44,26,14,.32);
  filter: brightness(1.04);
  z-index: 2;
}

.cert-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.cert-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--brown-warm);
  line-height: 1;
}

.cert-stat span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 780px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: 11px 16px;
  text-align: left;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown-deep);
  transition: background .2s var(--ease);
}

.faq-item__q:hover { background: var(--beige-light); }
.faq-item__q[aria-expanded="true"] { background: var(--beige-light); color: var(--brown-mid); }

.faq-item__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform .3s var(--ease);
}

.faq-item__q[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }

.faq-item__a {
  background: var(--beige-light);
  padding: 2px 16px 12px;
  overflow: hidden;
}

.faq-item__a:not([hidden]) {
  animation: faq-open .25s var(--ease);
}

.faq-item__a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.faq-item__a a {
  color: var(--brown-warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   QUOTE CARD
   ============================================================ */
.split__visual--quote { position: relative; }

.quote-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  /* Prosklený (glass) efekt — poloprůhledné pozadí + rozostření toho, co je za ním */
  background: rgba(44, 26, 14, 0.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--beige-cream);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  max-width: 260px;
  box-shadow: 0 18px 40px rgba(44,26,14,.28);
  z-index: 2;
}

.quote-card__mark {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 10px;
}

.quote-card p {
  font-family: var(--font-head);
  font-size: 17px;
  font-style: italic;
  color: var(--beige-cream);
  line-height: 1.5;
  margin-bottom: 10px;
}

.quote-card cite {
  font-size: 12.5px;
  color: var(--beige-dark);
  letter-spacing: .05em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  text-align: center;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,26,14,.88), rgba(74,46,28,.8));
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-band h2 { color: var(--white); margin-bottom: var(--space-sm); }
.cta-band p  { color: rgba(255,255,255,.8); margin-bottom: var(--space-lg); }

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--space-md) 0 var(--space-lg);
  background: linear-gradient(165deg, var(--white), var(--beige-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px var(--space-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Horní zlatý akcent na rámečku kontaktu */
.contact-list::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--brown-warm));
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: transform .28s var(--ease);
}

.contact-item:last-child { border-bottom: none; }

.contact-item:hover { transform: translateX(5px); }

.contact-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-warm);
  margin-top: 2px;
  transition: transform .4s var(--ease-bounce), color .3s var(--ease);
}

.contact-item__icon svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 3px 5px rgba(122,79,50,.18));
}

.contact-item:hover .contact-item__icon {
  transform: scale(1.15) translateY(-2px);
  color: var(--gold);
}

.contact-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a, .contact-item span, .contact-item address {
  font-size: 15.5px;
  color: var(--text-secondary);
  display: block;
}

.contact-item a:hover { color: var(--brown-warm); }

.contact-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-top: 2px;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 340px;
}

.contact-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.contact-photo-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.google-reviews {
  margin-top: var(--space-sm);
}

.google-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--white);
  transition: all .2s var(--ease);
}

.google-reviews__link:hover {
  background: var(--beige-light);
  color: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--brown-deep);
  color: rgba(255,255,255,.8);
  overflow: hidden;
  isolation: isolate;
}

/* Velký prosvítající wordmark v pozadí */
.footer::before {
  content: 'Salon Lena';
  position: absolute;
  left: 50%;
  bottom: -0.06em;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(84px, 17vw, 260px);
  line-height: .82;
  white-space: nowrap;
  letter-spacing: .01em;
  background: linear-gradient(180deg, rgba(212,172,103,.16) 0%, rgba(212,172,103,.03) 55%, rgba(212,172,103,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: calc(var(--space-xl) + 40px);
}

.footer__logo-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--beige-cream);
  margin-bottom: var(--space-sm);
}

.footer__logo-name em {
  font-style: italic;
  color: var(--gold-light);
}

.footer__brand p {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}

.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  color: var(--gold-light);
  font-size: 14px;
  transition: color .2s var(--ease);
}

.footer__ig:hover { color: var(--white); }

.footer__nav h3,
.footer__contact h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: var(--space-md);
}

.footer__nav a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color .2s var(--ease);
}

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

.footer__contact a,
.footer__contact address,
.footer__contact span {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  font-style: normal;
  line-height: 1.55;
}

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

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-md) 0;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  width: min(480px, 92vw);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.97);
  transition: transform .3s var(--ease-bounce);
  text-align: center;
}

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

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--beige-light);
  color: var(--brown-mid);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.modal__close:hover { background: var(--beige-mid); }

.modal__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  fill: var(--brown-warm);
}

.modal__panel h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.modal__panel p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.modal__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.modal__option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all .2s var(--ease);
  text-align: left;
  color: var(--text-primary);
}

.modal__option:hover {
  border-color: var(--brown-light);
  background: var(--beige-light);
  transform: translateX(4px);
  color: var(--brown-dark);
}

.modal__option svg {
  flex-shrink: 0;
  color: var(--brown-warm);
}

.modal__option strong {
  display: block;
  font-size: 15px;
}

.modal__option span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

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

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,5,.92);
  cursor: pointer;
}

.lightbox__img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,.6);
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close {
  top: var(--space-md); right: var(--space-md);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
}

.lightbox__prev { left: var(--space-md); }
.lightbox__next { right: var(--space-md); }

.lightbox__counter {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  letter-spacing: .05em;
  background: rgba(0,0,0,.35);
  padding: 6px 14px;
  border-radius: 999px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,.25);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-xl) 0; }

  .features { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .info-boxes { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer__brand { grid-column: 1 / -1; }

  .kosmetika-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .kosmetika-img { height: 320px; }

  .owner-split { grid-template-columns: 1fr; }
  .owner-split__photo { min-height: 440px; }
  .owner-split__copy { padding: var(--space-xl) var(--space-md); }
}

/* ============================================================
   RESPONSIVE — MOBILE NAV (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
  }

  .header__nav.is-open { display: flex; }

  .header__nav a {
    padding: 14px var(--space-lg);
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }

  .header__nav a::after { display: none; }
  .header__nav a:last-child { border-bottom: none; }

  .header__hamburger { display: flex; }
  .header__tel span  { display: none; }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split--reverse .split__visual { order: 0; }

  .split__img { height: 360px; }

  .quote-card {
    position: relative;
    bottom: auto; right: auto;
    margin-top: var(--space-md);
  }

  /* --- O SALONU: fotka majitelky bez ořezu + kompaktní citát přes fotku --- */
  #o-salonu .split__visual--quote {
    position: relative;
  }

  #o-salonu .split__visual--quote::before { display: none; }  /* dekor. rámeček jen na desktopu */

  #o-salonu .split__img-wrap {
    width: min(380px, 100%);
    margin-inline: auto;   /* na tabletu vycentruje, na mobilu plná šířka */
  }

  #o-salonu .split__img {
    height: auto;
    aspect-ratio: 3 / 4;   /* přesný poměr fotky → žádný ořez */
  }

  #o-salonu .quote-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    width: min(352px, calc(100% - 28px));  /* zarovnané s fotkou, ~14px odsazení */
    max-width: none;
    margin-top: 0;
    padding: 14px 16px;
    background: rgba(44, 26, 14, .55);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid rgba(255,255,255,.18);
  }

  #o-salonu .quote-card__mark { width: 24px; height: 24px; margin-bottom: 4px; }
  #o-salonu .quote-card p    { font-size: 14px; line-height: 1.45; margin-bottom: 6px; }
  #o-salonu .quote-card cite { font-size: 11.5px; }

  .hero__stats { flex-wrap: wrap; gap: var(--space-md); }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .pricing-grid { grid-template-columns: 1fr; }
  .info-boxes   { grid-template-columns: 1fr; }

  .photo-strip img { width: 33.33%; }

  .cert-gallery { grid-template-rows: auto auto; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --space-xl: 56px; --space-2xl: 80px; }
  .container { padding: 0 var(--space-sm); }

  h1 { font-size: 38px; }
  h2 { font-size: 28px; }

  .features      { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery       { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }

  .photo-strip { height: 150px; }
  .photo-strip img { width: 33.333%; }
  .photo-strip img:nth-child(n+4) { display: none; }

  .header__actions .btn--primary { display: none; }

  /* HERO na výšku: jen jedna fotka přes celou šířku, žádný blur/šev */
  .hero__bg-img--right { display: none; }
  .hero__bg-img--left {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    object-position: center 30%;
  }

  /* Silnější ztmavení fotky + stín textu → čitelné nápisy v hero */
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(44,26,14,.30) 0%,
      rgba(44,26,14,.58) 45%,
      rgba(44,26,14,.92) 100%
    );
  }
  .hero__copy .eyebrow,
  .hero__lead,
  .hero__stat strong,
  .hero__stat span {
    text-shadow: 0 1px 10px rgba(0,0,0,.55);
  }

  /* Pruh se statistikami: rovnoměrný 3sloupcový grid místo rozházeného wrapu */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }
  .hero__stat strong { font-size: 24px; }
  .hero__stat span   { font-size: 10.5px; }

  .faq-item__q { padding: 11px 14px; font-size: 14px; }
  .faq-item__a { padding: 2px 14px 12px; }

  .cta-band__actions { flex-direction: column; align-items: center; }

  .btn { white-space: normal; text-align: center; }
  .btn--lg { padding: 14px 24px; font-size: 15px; }

  .modal__panel { padding: var(--space-lg) var(--space-md); }

  .map-wrap { height: 260px; }
  .contact-photo-grid { display: none; }

  .cert-stats { gap: var(--space-md); }

  .hero__scroll-hint { display: none; }
}
