/* ============================================================
   NATALIA BEAUTY — MOCKUP v3
   Palette pulled directly from the salon:
   White walls · Warm gold fixtures · Near-black logo · Marble
   Light, airy, feminine — premium without being heavy
   ============================================================ */

:root {
  /* Core palette — all from the salon interior */
  --white:      #FFFFFF;
  --cream:      #FAF8F5;        /* warm off-white — section alt bg */
  --cream-dk:   #F2EDE6;        /* slightly deeper cream */
  --gold:       #C4A24A;        /* warm gold — matches shelf frames */
  --gold-dk:    #A8882E;        /* deeper gold — hover */
  --gold-text:  #86691E;        /* zlata pro maly text na svetlem — WCAG AA 5.0:1 */
  --gold-lt:    #EFE3C0;        /* very light gold tint */
  --gold-pale:  #FBF7EC;        /* barely-there gold */
  --black:      #0D0D0B;        /* near-black — matches NB logo */
  --charcoal:   #2A2824;        /* dark warm — body text */
  --gray:       #7A746E;        /* warm mid gray - WCAG AA 4.6:1 na bile */
  --gray-lt:    #E6E0D8;        /* warm light border */

  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-sans:    'Jost', system-ui, sans-serif;

  --nav-h:      70px;
  --radius:     4px;
  --shadow-sm:  0 2px 12px rgba(13,13,11,.06);
  --shadow:     0 4px 24px rgba(13,13,11,.09);
  --shadow-lg:  0 16px 56px rgba(13,13,11,.13);
  --shadow-warm: 0 8px 32px rgba(13,13,11,.12), 0 2px 8px rgba(196,162,74,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; overflow-x: hidden; }
body   { font-family: var(--ff-sans); background: var(--white); color: var(--black); line-height: 1.72; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; cursor: pointer; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Focus-visible — přístupnost pro klávesnici */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible { outline-offset: 4px; }

/* Screen-reader only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap    { max-width: 1160px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 8rem 0; }
.section p { font-size: 1.02rem; }
.section--cream { background: var(--cream); }
.section--cream-dk { background: var(--cream-dk); }

/* ── Eyebrow ── */
.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: rgba(255,255,255,.75); }
.eyebrow--light::before { background: var(--gold); opacity: .7; }

/* ── Type ── */
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 400; line-height: 1.08; color: var(--black); }
h1 { font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 500; }
em { font-style: italic; color: var(--gold-text); }
h2--center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2.4rem;
  font-family: var(--ff-sans); font-size: .84rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid transparent; border-radius: 0;
  transition: all .22s ease; white-space: nowrap; cursor: pointer;
}
.btn--gold  { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,162,74,.3); }
.btn--black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black:hover { background: var(--charcoal); }
.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,13,11,.15); }
.btn--outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--black); }
.btn--outline-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline-w:hover { border-color: var(--white); }
.btn--lg { padding: 1.15rem 2.5rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-lt);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .4s, transform .4s, box-shadow .3s;
  pointer-events: none;
}
.nav.nav--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2.5rem;
  height: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav__logo {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 500;
  letter-spacing: .04em; color: var(--black); justify-self: start;
  display: flex; align-items: center; gap: .45rem;
}
.nav__logo-accent { color: var(--gold); font-style: italic; }
.nav__links {
  display: flex; align-items: center; gap: 2.5rem; justify-self: center;
}
.nav__links a {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); padding-bottom: 2px; border-bottom: 1.5px solid transparent;
  transition: all .18s;
}
.nav__links a:hover { color: var(--black); border-bottom-color: var(--gold); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; justify-self: end;
}
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--black); transition: all .25s; }
.nav__burger.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2){ opacity: 0; }
.nav__burger.open span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--white); z-index: 299;
  flex-direction: column; padding: 3rem 2.5rem; gap: .1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) {
  font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 300;
  color: var(--black); padding: .65rem 0;
  border-bottom: 1px solid var(--gray-lt); transition: color .2s;
}
.mobile-menu a:not(.btn):hover { color: var(--gold); }
.mobile-menu .btn {
  margin-top: 1.5rem; width: 100%;
  justify-content: center; text-align: center;
  font-family: var(--ff-sans); letter-spacing: .15em;
}

/* ============================================================
   HERO — full bleed photo, text left-anchored
   ============================================================ */
.hero-scroll-wrap {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex; align-items: center;
  background: var(--cream);
}

/* Fotka — orez se rozevira sam, plynule, po prvnim scrollu */
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  background: linear-gradient(135deg, #F5F3F0 0%, #E8E2D8 40%, #D4C8B4 100%);
  clip-path: inset(22% 48% 22% 5% round 14px);
  will-change: clip-path;
}

/* Gradient so left text is always readable over the light photo */
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    95deg,
    rgba(13,13,11,.82) 0%,
    rgba(13,13,11,.68) 32%,
    rgba(13,13,11,.28) 62%,
    rgba(13,13,11,.05) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 2.5rem;
  max-width: 1160px; margin: 0 auto;
}
.hero__inner { max-width: 660px; }

.hero__kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__kicker::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.hero__title {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: .75rem;
}
.hero__title strong {
  display: block;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
}
.hero__subtitle {
  font-size: 1.35rem; max-width: 30ch; font-weight: 300;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 400px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Rating badge bottom right */
.hero__badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 1.1rem 1.6rem; text-align: center;
}
.hero__badge-stars  { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.hero__badge-num    { font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1; }
.hero__badge-label  { font-size: .62rem; color: rgba(255,255,255,.5); letter-spacing: .08em; margin-top: .15rem; }

/* Scroll indicator */
.hero--revealed .hero__scroll { opacity: 0; pointer-events: none; }
.hero__scroll {
  position: absolute; top: 50%; right: 22%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  color: var(--black); z-index: 2;
  transition: opacity .4s;
}
.hero__scroll-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--charcoal);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__scroll-line {
  display: block; width: 1px; height: 90px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero__scroll svg { color: var(--gold); animation: scrollChevron 1.8s ease-in-out infinite; }
@keyframes scrollChevron {
  0%, 40% { opacity: 0; transform: translateY(-4px); }
  70%      { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; transform: translateY(3px); }
}

/* Thin gold line divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 20%, var(--gold-lt) 80%, transparent);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 6rem; align-items: center;
}
.about__photo-wrap { position: relative; }
.about__photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  /* placeholder — remove once real photo added */
  background: linear-gradient(160deg, var(--cream-dk) 0%, var(--gold-lt) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: var(--gray);
}
.about__photo.has-img { display: block; background: none; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; border-radius: inherit; }
.about__stamp {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--black); color: var(--white);
  padding: 1.3rem 1.6rem; text-align: center; box-shadow: var(--shadow-lg);
}
.about__stamp-num   { font-family: var(--ff-serif); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about__stamp-label { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin-top: .3rem; }

.about__text { padding-top: .5rem; }
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p  { color: var(--gray); margin-bottom: 1rem; font-size: .95rem; }
.about__quote {
  font-family: var(--ff-serif); font-size: 1.3rem; font-style: italic;
  color: var(--charcoal); border-left: 2px solid var(--gold);
  padding-left: 1.25rem; margin: 2rem 0; line-height: 1.55;
}
.about__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__head { text-align: center; margin-bottom: 3.5rem; }
.services__head h2 { margin-bottom: .75rem; }
.services__head p  { color: var(--gray); max-width: 460px; margin: 0 auto; font-size: .92rem; }

.tabs-row {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--gray-lt);
  margin-bottom: 3rem;
  overflow-x: auto; scrollbar-width: none;
  gap: 0;
}
.tabs-row::-webkit-scrollbar { display: none; }
.tabs-hint { display: none; } /* shown only on mobile via media query */
.stab {
  padding: 1rem 1.6rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all .18s; white-space: nowrap;
}
.stab:hover { color: var(--charcoal); }
.stab.active { color: var(--black); border-bottom-color: var(--gold); }

.stab-panel { display: none; }
.stab-panel.active { display: block; }

.tab-hero {
  width: 100%; height: 320px; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 2.5rem;
}
.tab-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.card {
  background: var(--white); border: 1px solid var(--gray-lt);
  border-radius: var(--radius); padding: 0;
  display: flex; flex-direction: row;
  min-height: 200px;
  transition: box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.card__img {
  width: 42%; flex-shrink: 0; overflow: hidden;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body {
  padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; justify-content: center;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--gold-lt); }
.card--featured {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.card__body .card__tag {
  display: inline-block; width: fit-content;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-lt);
  background: var(--gold-pale); padding: .2rem .75rem; border-radius: 20px;
  margin-bottom: .2rem;
}
.card__body h3   { font-size: 1.2rem; line-height: 1.2; }
.card__body .card__sub { font-size: .72rem; color: var(--gold); font-weight: 600; }
.card__body p    { font-size: .88rem; color: var(--gray); flex: 1; line-height: 1.65; }
.card__variants { margin-top: .25rem; }
.card__variant {
  display: flex; justify-content: space-between;
  padding: .45rem 0; border-bottom: 1px solid var(--gray-lt);
  font-size: .83rem; color: var(--gray);
}
.card__variant:last-child { border: none; }
.card__variant strong { color: var(--charcoal); font-weight: 600; }
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; margin-top: auto; border-top: 1px solid var(--gray-lt);
}
.card__time  { font-size: .72rem; color: var(--gray); }
.card__price { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); }
.card__book  {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); transition: opacity .2s;
}
.card__book:hover { opacity: .7; }

/* ============================================================
   CTA BAND
   ============================================================ */
.band { background: var(--black); padding: 5rem 0; }
.band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.band h2 { color: var(--white); margin-bottom: .4rem; }
.band h2 em { color: var(--gold); }
.band p  { color: rgba(255,255,255,.5); font-size: .92rem; }
.band__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   TEAM
   ============================================================ */
.team__head  { text-align: center; margin-bottom: 4rem; }
.team__grid  { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.member      { text-align: center; flex: 0 0 180px; }
.member__photo-wrap {
  width: 180px; height: 180px; border-radius: 50%;
  margin: 0 auto 1.25rem; overflow: hidden;
  border: 2px solid var(--gold-lt);
  box-shadow: var(--shadow-warm);
  /* placeholder */
  background: linear-gradient(160deg, var(--cream-dk) 0%, var(--gold-lt) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem;
}
.member__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.member__photo-wrap .ph-icon {
  width: 38px; height: 38px; border: 1px solid rgba(196,162,74,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.member__photo-wrap .ph-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.member__photo-wrap .ph-label {
  font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray); text-align: center; padding: 0 .75rem; line-height: 1.8;
}
.member h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.member p  { font-size: .8rem; color: var(--gray); line-height: 1.55; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--black); }
.reviews h2 { color: var(--white); }
.reviews h2 em { color: var(--gold); }
.reviews__head  { text-align: center; margin-bottom: 1.5rem; }
.reviews__score {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-bottom: 4rem;
}
.reviews__num   { font-family: var(--ff-serif); font-size: 3.5rem; font-weight: 300; line-height: 1; color: var(--white); }
.reviews__right .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: .1em; }
.reviews__right .count { font-size: .88rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.reviews__grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.review {
  background: var(--white); border: 1px solid var(--gray-lt);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: .85rem;
  transition: box-shadow .25s;
}
.review:hover { box-shadow: var(--shadow); }
.review__stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; }
.review p { font-size: .9rem; font-style: italic; flex: 1; color: var(--gray); line-height: 1.7; }
/* review top row: avatar + name + Google G */
.review__top { display: flex; align-items: center; gap: .75rem; }
.review__av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold-lt);
  color: var(--gold-dk); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 1rem; font-weight: 600;
}
.review__meta { flex: 1; }
.review__meta strong { display: block; font-size: .86rem; color: var(--charcoal); }
.review__date { font-size: .7rem; color: var(--gray); }
.review__gicon { flex-shrink: 0; opacity: .85; }

/* Google badge next to overall score */
.reviews__gbadge {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--gray-lt); border-radius: 6px;
  padding: .45rem .8rem; text-decoration: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--gray); background: var(--white);
  transition: border-color .2s, color .2s;
  align-self: center; margin-left: 1.5rem;
}
.reviews__gbadge:hover { border-color: #4285F4; color: #4285F4; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: stretch; min-width: 0; }
.contact__info h2 { margin-bottom: 2.5rem; }
.contact__list { display: flex; flex-direction: column; gap: 1.75rem; }
.citem { display: flex; gap: 1.1rem; align-items: flex-start; }
.citem__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.citem__icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.citem__label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); margin-bottom: .2rem; }
.citem p  { font-size: 1.02rem; color: var(--gray); }
.citem a  { font-size: 1.02rem; font-weight: 600; color: var(--charcoal); transition: color .2s; }
.citem a:hover { color: var(--gold); }
.citem em { font-style: normal; font-size: .9rem; color: var(--gray); display: block; }
.contact__map-wrap { margin-top: 2.5rem; }
.contact__map-wrap iframe { width: 100%; height: 340px; min-height: 280px; aspect-ratio: 16/9; border: 0; display: block; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact__map-note { font-size: .86rem; color: var(--gray); text-align: center; margin-top: .6rem; }

.contact__book { background: var(--cream); border: 1px solid var(--gray-lt); border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow-sm); }
.contact__book h3 { font-family: var(--ff-serif); font-size: 1.8rem; margin-bottom: .35rem; }
.contact__book .sub { font-size: .83rem; color: var(--gray); margin-bottom: 2.5rem; line-height: 1.6; }
.contact__book-btns { display: flex; flex-direction: column; gap: .85rem; }
.contact__book-btns .btn { justify-content: center; }
.contact__divider {
  text-align: center; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gray); position: relative; padding: .25rem 0;
}
.contact__divider::before, .contact__divider::after {
  content: ''; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--gray-lt);
}
.contact__divider::before { left: 0; }
.contact__divider::after  { right: 0; }
.contact__note { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-lt); font-size: .75rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,.4); }
.footer__inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem; padding: 5rem 2.5rem;
  max-width: 1160px; margin: 0 auto;
}
.footer__logo {
  font-family: var(--ff-serif); font-size: 1.65rem;
  color: var(--white); margin-bottom: .85rem;
}
.footer__logo em { color: var(--gold); }
.footer__desc { font-size: .96rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer__contacts a { display: block; font-size: .96rem; margin-bottom: .4rem; transition: color .2s; }
.footer__contacts a:hover { color: var(--white); }
.footer__col h3 { font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a  { font-size: .96rem; transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  max-width: 1160px; margin: 0 auto;
  font-size: .84rem; color: rgba(255,255,255,.35);
}

/* ============================================================
   FAB
   ============================================================ */
.fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: var(--gold); color: var(--black);
  padding: .9rem 1.8rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(196,162,74,.4);
  transition: background .2s, transform .2s;
  border-radius: 2rem;
}
.fab:hover { background: var(--gold-dk); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__badge { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__stamp { right: 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .band__inner { flex-direction: column; text-align: center; }
  .band__btns { justify-content: center; flex-wrap: wrap; }

  /* Reviews: 1 column on tablet */
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  /* Team: horizontal swipe on tablet */
  .team__grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1.5rem; padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .team__grid::-webkit-scrollbar { display: none; }
  .member { scroll-snap-align: center; flex: 0 0 220px; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .wrap { padding: 0 1.25rem; }

  /* ── Nav ── */
  .nav__logo { font-size: 1.1rem; white-space: nowrap; }

  /* ── Hero ── */
  .hero { max-height: none; min-height: 100svh; height: 100svh; }
  .hero__img { object-position: center 65%; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(13,13,11,.45) 0%,
      rgba(13,13,11,.35) 40%,
      rgba(13,13,11,.65) 100%
    );
  }
  .hero__content { padding: 0 1.25rem; display: flex; align-items: center; height: 100%; }
  .hero__inner   { max-width: 100%; }
  .hero__title   { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .hero__subtitle { font-size: .88rem; max-width: 100%; }
  .hero__actions { flex-direction: column; gap: .75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* ── About (o-nas) ── */
  .about__photo { aspect-ratio: 3/4; max-height: 480px; }
  .about__photo img { object-position: center 20%; }
  .about__stamp { right: 0; bottom: 0; }
  .about__text { text-align: center; }
  .about__quote { text-align: left; }
  .about__actions { justify-content: center; flex-direction: column; }
  .about__actions .btn { width: 100%; justify-content: center; }

  /* ── About teaser (index) ── */
  .about-teaser__photo { aspect-ratio: 3/2; max-height: 260px; }

  /* ── Services — swipeable cards ── */
  .services__head { text-align: center; }
  .tabs-row { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .tabs-row::-webkit-scrollbar { display: none; }
  .tabs-wrap { position: relative; }
  .tabs-wrap::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 40px; height: 52px;
    background: linear-gradient(to right, transparent, var(--white));
    pointer-events: none; z-index: 2;
  }
  .tabs-hint {
    display: block;
    font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gray); text-align: center;
    margin-top: .5rem; margin-bottom: 2rem;
  }
  .cards-wrap { overflow-x: unset; margin: 0; padding: 0; }
  .cards { display: grid; grid-template-columns: 1fr; gap: 1rem; flex-wrap: unset; }
  .card {
    flex-direction: row; min-height: 160px;
    flex: unset; max-width: unset; scroll-snap-align: unset; width: 100%;
  }
  .card__img { width: 38%; flex-shrink: 0; height: auto; }
  .card__img img { object-position: top; }
  .card__body { padding: .9rem 1rem; }
  .card__body h3 { font-size: .95rem; }
  .card__body p { font-size: .82rem; line-height: 1.5; }
  .card__price { font-size: .88rem; }
  .card__foot { flex-wrap: wrap; gap: .4rem; }

  /* ── Galerie ── */
  .galerie__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: .4rem; }

  /* ── Reviews ── */
  .reviews__num { font-size: 2.8rem; }
  .reviews__score { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .reviews__gbadge { margin-left: 0; }
  .reviews__grid {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    gap: 1rem; margin: 0 -1.25rem; padding: 0 1.25rem 1rem;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review { scroll-snap-align: start; flex: 0 0 85vw; max-width: 320px; }

  /* ── Team ── */
  .team__head { text-align: center; }
  .team__grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1.5rem; padding: 0 1.25rem 1rem;
    margin: 0 -1.25rem; scrollbar-width: none;
  }
  .team__grid::-webkit-scrollbar { display: none; }
  .member { scroll-snap-align: center; width: 160px; flex: 0 0 160px; text-align: center; }
  .member__photo-wrap { width: 130px; height: 130px; }

  /* ── CTA Band ── */
  .band { padding: 3rem 0; }
  .band__inner { gap: 1.5rem; }
  .band__btns { flex-direction: column; width: 100%; }
  .band__btns .btn { width: 100%; justify-content: center; }

  /* ── Contact ── */
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__map-wrap iframe { height: 240px; }
  .contact__list { text-align: left; }
  .contact__book { text-align: center; padding: 1.5rem 1.1rem; width: 100%; box-sizing: border-box; }
  .contact__book h3 { text-align: center; }
  .contact__book-btns { display: flex; flex-direction: column; gap: .75rem; }
  .contact__book-btns .btn { width: 100%; justify-content: center; }
  .contact__social { gap: .6rem; }

  /* ── Footer ── */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .5rem; }

  /* ── FAB ── */
  .fab { bottom: 1.25rem; right: 1.25rem; padding: .85rem 1.6rem; font-size: .66rem; }

  /* ── Overflow fixes ── */
  .btn { white-space: normal; text-align: center; }
  .galerie__cta .btn { width: 100%; box-sizing: border-box; justify-content: center; }
  .contact__social-link { white-space: normal; }
  .footer__contacts a { word-break: break-word; }
  .citem a { word-break: break-word; }
  * { max-width: 100%; box-sizing: border-box; }

  /* ── Page header (sluzby, o-nas) ── */
  .page-header { padding: calc(var(--nav-h) + 2.5rem) 0 2rem; }
  .page-header h1 { font-size: 2.2rem; }
  .page-header__sub { font-size: .9rem; }

  /* ── Legal ── */
  .nav__logo-img { height: 34px; }
  .contact__social { gap: .75rem; }
}

.footer__notino-btn {
  margin-top: .5rem;
  padding: .65rem 1.4rem;
  font-size: .65rem;
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal__wrap {
  display: grid; grid-template-columns: 220px 1fr; gap: 5rem; align-items: start;
}
.legal__nav {
  position: sticky; top: calc(var(--nav-h) + 2rem);
  border-left: 2px solid var(--gray-lt); padding-left: 1.5rem;
}
.legal__nav ul { display: flex; flex-direction: column; gap: .4rem; }
.legal__nav a {
  font-size: .75rem; font-weight: 500; letter-spacing: .06em;
  color: var(--gray); transition: color .18s;
  display: block; padding: .3rem 0;
}
.legal__nav a:hover { color: var(--gold); }
.legal__section { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--gray-lt); }
.legal__section:last-child { border-bottom: none; margin-bottom: 0; }
.legal__section h2 {
  font-size: 1.6rem; margin-bottom: 1.25rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold-lt);
}
.legal__section h3 { font-size: 1rem; font-family: var(--ff-sans); font-weight: 600; margin: 1.5rem 0 .6rem; letter-spacing: .04em; }
.legal__section p { color: var(--charcoal); margin-bottom: .85rem; font-size: .93rem; line-height: 1.8; }
.legal__section a { color: var(--gold); }
.legal__section a:hover { text-decoration: underline; }
.legal__list { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal__list li { font-size: .93rem; color: var(--charcoal); line-height: 1.8; margin-bottom: .4rem; list-style: disc; }
.legal__info-box {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem; margin: 1rem 0;
}
.legal__info-box p { margin-bottom: .35rem; font-size: .9rem; }
.legal__info-box p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .legal__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal__nav { position: static; border-left: none; border-top: 2px solid var(--gray-lt); padding: 1.25rem 0 0; }
  .legal__nav ul { flex-direction: row; flex-wrap: wrap; gap: .5rem 1.5rem; }
}

/* ============================================================
   INSTAGRAM SEKCE
   ============================================================ */
/* Galerie */
.galerie__head { text-align: center; margin-bottom: 3rem; }
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: .5rem;
}
.galerie__item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  transition: box-shadow .3s;
}
.galerie__item:hover { box-shadow: 0 16px 48px rgba(13,13,11,.18), 0 4px 12px rgba(196,162,74,.12); }
.galerie__item img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .4s; }
.galerie__item:hover img { transform: scale(1.05); }
.galerie__cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 768px) {
  .galerie__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}

.insta__head { text-align: center; margin-bottom: 3rem; }
.insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
}
.insta__item {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream-dk); display: block;
}
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insta__item:hover img { transform: scale(1.05); }
.insta__overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,11,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.insta__item:hover .insta__overlay { opacity: 1; }
.insta__item--ph .insta__ph-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dk);
  opacity: .6;
}
.insta__cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 900px) {
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .insta__item:nth-child(n+4) { display: none; }
}
@media (max-width: 600px) {
  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: .3rem; }
  .insta__item:nth-child(n+4) { display: none; }
}

/* ============================================================
   NAV — logo image + active link + rezervovat CTA
   ============================================================ */
.nav__logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.nav__cta {
  justify-self: end;
  padding: .55rem 1.2rem !important;
  font-size: .62rem !important;
  letter-spacing: .12em !important;
  border-radius: 2rem !important;
}
@media (max-width: 960px) { .nav__cta { display: none; } }
.nav__link--active { color: var(--black) !important; border-bottom-color: var(--gold) !important; }

/* ============================================================
   PAGE HEADER — for o-nas.html and sluzby.html
   ============================================================ */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  background: var(--cream);
  text-align: center;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header__sub { font-size: 1rem; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ============================================================
   ABOUT TEASER — short section on index.html
   ============================================================ */
.about-teaser__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-teaser__photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-warm); }
.about-teaser__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.about-teaser__text h2 { margin-bottom: 1.25rem; }
.about-teaser__text p { color: var(--gray); font-size: 1.06rem; margin-bottom: 1rem; }
.about-teaser__actions { margin-top: 2rem; }

/* ============================================================
   CONTACT — social links
   ============================================================ */
.contact__social {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
}
.contact__social-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal); border: 1.5px solid var(--gray-lt);
  padding: .6rem 1.2rem; border-radius: 2rem;
  transition: all .2s;
}
.contact__social-link:hover { border-color: var(--gold); color: var(--gold); }

/* standalone map — fills the right column on its own */
.contact__map-wrap--standalone { margin-top: 0; }

/* ============================================================
   RESPONSIVE — new elements
   ============================================================ */
@media (max-width: 900px) {
  .about-teaser__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-teaser__photo { max-height: 320px; }
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

/* Hero text — nabehne behem rozevirani fotky */
.hero__content, .hero__badge {
  opacity: 0;
  transition: opacity .9s ease, transform 1.1s cubic-bezier(.16,.84,.32,1);
  will-change: transform, opacity;
}
.hero__content { transform: translateY(26px) scale(.965); }
.hero__badge   { transform: translateY(20px); }
.hero--revealed .hero__content {
  opacity: 1; transform: translateY(0) scale(1); transition-delay: .45s;
}
.hero--revealed .hero__badge {
  opacity: 1; transform: translateY(0); transition-delay: .7s;
}

/* Bez animaci: rovnou finalni stav */
@media (prefers-reduced-motion: reduce) {
  .hero__img { clip-path: inset(0 round 0); }
  .hero__content, .hero__badge { opacity: 1; transform: none; transition: none; }
}

/* Scroll-triggered elements */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="up"]    { transform: translateY(32px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }


/* ============================================================
   REVIEWS — 3D coverflow karusel (rotace kolem osy Y)
   ============================================================ */
.reviews__carousel {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  perspective: 1600px;
  min-height: 340px;
  margin-top: 1rem;
}
.reviews__stage {
  position: relative;
  flex: 1; max-width: 900px; height: 340px;
  transform-style: preserve-3d;
}
.reviews__stage .review {
  position: absolute; top: 0; left: 50%;
  width: min(380px, 78vw);
  margin-left: calc(min(380px, 78vw) / -2);
  min-height: 300px;
  background: var(--white); border: 1px solid var(--gray-lt);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: .85rem;
  transform-origin: 50% 50%;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .55s ease, box-shadow .4s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
/* poradi vrstev:  -2/+2 zpoza stredu  <  -1/+1 po stranach  <  0 vpredu */
.reviews__stage .review[data-pos="0"] {
  transform: translateX(0) translateY(0) translateZ(0) rotateY(0deg) scale(1);
  opacity: 1; z-index: 6; box-shadow: var(--shadow-lg);
}
.reviews__stage .review[data-pos="1"] {
  transform: translateX(60%) translateZ(-150px) rotateY(-30deg) scale(.94);
  opacity: .5; z-index: 4;
}
.reviews__stage .review[data-pos="-1"] {
  transform: translateX(-60%) translateZ(-150px) rotateY(30deg) scale(.94);
  opacity: .5; z-index: 4;
}
/* vykukuji zpoza hlavni karty */
.reviews__stage .review[data-pos="2"] {
  transform: translateX(9%) translateY(-22px) translateZ(-300px) rotateY(-10deg) scale(.9);
  opacity: .28; z-index: 2;
}
.reviews__stage .review[data-pos="-2"] {
  transform: translateX(-9%) translateY(-22px) translateZ(-300px) rotateY(10deg) scale(.9);
  opacity: .28; z-index: 2;
}
.reviews__stage .review[data-pos="hidden"] {
  transform: translateY(-34px) translateZ(-460px) scale(.86);
  opacity: 0; z-index: 1; pointer-events: none;
}
.reviews__stage .review:not([data-pos="0"]) {
  cursor: pointer;
  border-color: rgba(196,162,74,.35);
}
.reviews__stage .review:not([data-pos="0"]):hover { opacity: .75 !important; }
.reviews__stage .review p { font-size: 1.04rem; }

.reviews__arrow {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); z-index: 10;
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.reviews__arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-1px); }
.reviews__arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.reviews__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 2.25rem;
}
.reviews__count {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums;
  min-width: 46px; text-align: center;
}
.reviews__count b { color: var(--gold); font-weight: 700; }
.reviews__dots { display: flex; justify-content: center; gap: .45rem; }
.reviews__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.3);
  border: 1px solid transparent;
  transition: background .25s, transform .25s, border-color .25s;
}
.reviews__dot:hover { background: rgba(255,255,255,.5); }
.reviews__dot.is-active {
  background: var(--gold); transform: scale(1.45);
  border-color: rgba(255,255,255,.35);
}
.reviews__dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 900px) {
  .reviews__stage .review[data-pos="1"]  { transform: translateX(54%) translateZ(-170px) rotateY(-30deg) scale(.94); opacity: .4; }
  .reviews__stage .review[data-pos="-1"] { transform: translateX(-54%) translateZ(-170px) rotateY(30deg) scale(.94); opacity: .4; }
}
@media (max-width: 600px) {
  .reviews__carousel { gap: .25rem; min-height: 400px; perspective: 1000px; }
  .reviews__stage { height: 400px; }
  .reviews__stage .review { width: 74vw; margin-left: -37vw; padding: 1.5rem; min-height: 360px; }
  .reviews__stage .review[data-pos="1"]  { transform: translateX(52%) translateZ(-140px) rotateY(-28deg) scale(.94); opacity: .35; }
  .reviews__stage .review[data-pos="-1"] { transform: translateX(-52%) translateZ(-140px) rotateY(28deg) scale(.94); opacity: .35; }
  .reviews__stage .review[data-pos="2"], .reviews__stage .review[data-pos="-2"] { opacity: .2; }
  .reviews__arrow { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews__stage .review { transition: opacity .2s ease; }
  .reviews__stage .review[data-pos="0"] { transform: none; }
  .reviews__stage .review:not([data-pos="0"]) { opacity: 0; pointer-events: none; }
}


/* ============================================================
   PŘED & PO — Instagram telefon
   ============================================================ */
.beforeafter { background: var(--cream); }
.beforeafter__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.beforeafter__text h2 { margin-bottom: 1.25rem; }
.beforeafter__text p  { color: var(--gray); font-size: 1.06rem; margin-bottom: 1.5rem; }
.beforeafter__list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.beforeafter__list li {
  position: relative; padding-left: 1.5rem;
  font-size: 1.02rem; color: var(--charcoal);
}
.beforeafter__list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.beforeafter__phone { display: flex; justify-content: center; }

.phone {
  position: relative; display: block;
  width: 320px; max-width: 100%;
  background: #111; border-radius: 36px; padding: 9px;
  box-shadow: 0 24px 60px rgba(13,13,11,.22), 0 4px 14px rgba(196,162,74,.1);
  transition: transform .35s ease, box-shadow .35s ease;
}
.phone:hover { transform: translateY(-6px); box-shadow: 0 32px 72px rgba(13,13,11,.28), 0 6px 18px rgba(196,162,74,.16); }
.phone__notch {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 5px; border-radius: 3px;
  background: rgba(255,255,255,.2); z-index: 3;
}
.phone__screen {
  display: block; background: var(--white);
  border-radius: 28px; overflow: hidden;
  font-family: var(--ff-sans); color: var(--black);
}

/* horni lista s handle */
.phone__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.7rem .95rem .55rem;
}
.phone__topbar strong { font-size: .78rem; font-weight: 600; }
.phone__dots { font-size: .7rem; color: var(--charcoal); letter-spacing: .05em; }

/* avatar + statistiky */
.phone__head { display: flex; align-items: center; gap: .9rem; padding: .35rem .95rem .7rem; }
.phone__av {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 50%;
  background: var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
}
.phone__av { overflow: hidden; }
.phone__av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone__stats { flex: 1; display: flex; justify-content: space-around; text-align: center; }
.phone__stat { display: flex; flex-direction: column; line-height: 1.25; }
.phone__stat b { font-size: .82rem; font-weight: 700; }
.phone__stat i { font-style: normal; font-size: .58rem; color: var(--gray); }

/* bio */
.phone__bio { display: block; padding: 0 .95rem .55rem; line-height: 1.45; }
.phone__bio b { display: block; font-size: .74rem; font-weight: 700; }
.phone__bio i { display: block; font-style: normal; font-size: .66rem; color: var(--gray); margin-bottom: .2rem; }
.phone__bio-lines { display: flex; flex-direction: column; }
.phone__bio-lines span { font-size: .66rem; color: var(--charcoal); }
.phone__link { display: block; font-size: .66rem; color: var(--gold-text); font-weight: 600; margin-top: .2rem; }

/* tlacitka */
.phone__btns { display: flex; gap: .35rem; padding: .35rem .95rem .7rem; }
.phone__btn {
  flex: 1; text-align: center; padding: .34rem;
  font-size: .64rem; font-weight: 600; border-radius: 7px;
  background: var(--cream-dk); color: var(--black);
}
.phone__btn--primary { background: var(--gold); color: var(--black); }

/* highlights */
.phone__hl {
  display: flex; gap: .55rem; padding: 0 .95rem .7rem;
  overflow: hidden;
}
.phone__hl-item { flex-shrink: 0; width: 46px; text-align: center; }
.phone__hl-item::before {
  content: ''; display: block; width: 46px; height: 46px;
  border-radius: 50%; margin-bottom: .18rem;
  background: var(--black); border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-lt);
}
.phone__hl-item i {
  font-style: normal; font-size: .48rem; font-weight: 600;
  letter-spacing: .02em; color: var(--charcoal);
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* zalozky */
.phone__tabs { display: flex; border-top: 1px solid var(--gray-lt); }
.phone__tab {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: .5rem 0; color: var(--gray); border-top: 1.5px solid transparent; margin-top: -1px;
}
.phone__tab.is-active { color: var(--black); border-top-color: var(--black); }

/* mrizka prispevku */
.phone__feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.phone__feed img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.phone__cta {
  display: block; text-align: center;
  padding: .8rem; font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-text); border-top: 1px solid var(--gray-lt);
}

@media (max-width: 900px) {
  .beforeafter__grid { grid-template-columns: 1fr; gap: 3rem; }
  .beforeafter__text { text-align: center; }
  .beforeafter__text .eyebrow { justify-content: center; }
  .beforeafter__text .eyebrow::before { display: none; }
  .beforeafter__list { text-align: left; max-width: 380px; margin-inline: auto; margin-bottom: 2rem; }
  .beforeafter__actions { display: flex; justify-content: center; }
}
@media (max-width: 600px) {
  .phone { width: 300px; }
  .beforeafter__actions .btn { width: 100%; justify-content: center; }
}

/* ── Tymovy pas v kontaktu ── */
.contact__band {
  position: relative; margin-top: 5rem;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 20/7;
  box-shadow: var(--shadow-warm);
}
.contact__band img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 30%;
}
.contact__band-note {
  position: absolute; left: 1.5rem; bottom: 1.5rem;
  background: rgba(13,13,11,.72); backdrop-filter: blur(8px);
  color: var(--white); font-size: .64rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 2rem;
}
@media (max-width: 900px) { .contact__band { aspect-ratio: 16/7; margin-top: 3rem; } }
@media (max-width: 600px) {
  .contact__band { aspect-ratio: 4/3; margin-top: 2.5rem; }
  .contact__band-note { left: 1rem; bottom: 1rem; font-size: .68rem; }
}

/* ── Team hero photo ── */
.team__hero {
  max-width: 760px; margin: 0 auto 4rem;
  aspect-ratio: 5/4;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.team__hero img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 30%;
}
@media (max-width: 600px) {
  .team__hero { aspect-ratio: 4/5; margin-bottom: 2.5rem; }
}

/* ── Cookie bar ── */
.cookie-bar {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 3rem); max-width: 700px;
  background: var(--black); color: rgba(255,255,255,.75);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  transition: opacity .4s, transform .4s;
}
.cookie-bar.is-hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-bar__text { font-size: .8rem; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-bar__text a { color: var(--gold); text-decoration: underline; }
.cookie-bar__actions { flex-shrink: 0; }
.cookie-bar__btn--accept {
  padding: .6rem 1.4rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--black);
  border: none; border-radius: 2rem; cursor: pointer;
  transition: opacity .2s;
}
.cookie-bar__btn--accept:hover { opacity: .85; }
.cookie-bar__btn--decline {
  padding: .6rem 1.2rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2); border-radius: 2rem; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.cookie-bar__btn--decline:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.4); }
@media (max-width: 600px) {
  .cookie-bar { bottom: 5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero__kicker, .hero__title, .hero__subtitle, .hero__actions, .hero__badge {
    transition: none; opacity: 1; transform: none;
  }
}

/* mapa vyplni vysku leveho sloupce (desktop) */
@media (min-width: 901px) {
  .contact__map-wrap--standalone { display: flex; flex-direction: column; }
  .contact__map-wrap--standalone iframe {
    flex: 1; height: auto; min-height: 420px; aspect-ratio: auto;
  }
}

/* ============================================================
   404 — stranka nenalezena
   ============================================================ */
.notfound { padding: 12rem 0 8rem; }
.notfound__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.notfound__inner .eyebrow { justify-content: center; }
.notfound__inner .eyebrow::before { display: none; }
.notfound__num {
  font-family: var(--ff-serif); font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 300; line-height: 1; color: var(--gold-lt);
  margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.notfound h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 1.5rem; }
.notfound__text { color: var(--gray); font-size: 1.06rem; margin-bottom: 2.5rem; }
.notfound__actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.notfound__links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem 2rem; padding-top: 2.5rem;
  border-top: 1px solid var(--gray-lt);
}
.notfound__links a {
  font-size: .95rem; color: var(--charcoal);
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.notfound__links a:hover { color: var(--gold-text); border-bottom-color: var(--gold); }
.notfound__help { margin-top: 2.5rem; font-size: .95rem; color: var(--gray); }
.notfound__help a { color: var(--gold-text); font-weight: 600; }
.notfound__help a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .notfound { padding: 9rem 0 5rem; }
  .notfound__actions .btn { width: 100%; justify-content: center; }
  .notfound__links { gap: .6rem 1.2rem; }
}

/* ── Skip link (pristupnost pro klavesnici) ── */
.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 1000; background: var(--black); color: var(--white);
  padding: .85rem 1.6rem; font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); outline: 2px solid var(--gold); outline-offset: 2px; }
