/* ============================================
   HEAD SPA — VLASOVÉ WELLNESS
   Premium Single-Page Website
   ============================================ */

:root {
  --cream-50: #FEFCF9;
  --cream: #FAF7F2;
  --cream-200: #F3EDE4;
  --cream-300: #E8E0D4;
  --taupe-100: #D4CABB;
  --taupe: #B8A99A;
  --taupe-dark: #9A8C7E;
  --brown-light: #8B7B6B;
  --brown: #6B5A4A;
  --brown-dark: #4A3D32;
  --charcoal: #2C2420;
  --black: #1A1614;
  --gold: #C8A97E;
  --gold-light: #D9C4A0;
  --gold-dark: #A88A5E;
  --rose: #C9967D;
  --rose-light: #E8C4B0;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-hand: 'Caveat', 'Patrick Hand', cursive;

  --nav-h: 72px;
  --max-w: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 2px 10px rgba(26,22,20,.04);
  --shadow-md: 0 10px 30px rgba(26,22,20,.08);
  --shadow-lg: 0 18px 50px rgba(26,22,20,.12);
}

/* ===== Reset ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{font-size:16px;scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;scroll-padding-top:var(--nav-h)}
body{font-family:var(--font-body);font-weight:400;color:var(--brown-dark);background:var(--cream);line-height:1.75;overflow-x:hidden;-webkit-tap-highlight-color:transparent}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
::selection{background:var(--gold-light);color:var(--charcoal)}
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--cream-200)}
::-webkit-scrollbar-thumb{background:var(--taupe);border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:var(--taupe-dark)}

/* ===== Typography ===== */
h1,h2,h3{font-family:var(--font-hand);font-weight:600;line-height:1.15;color:var(--charcoal);letter-spacing:.005em}
h4{font-family:var(--font-display);font-weight:500;line-height:1.2;color:var(--charcoal);letter-spacing:-.005em}
h1{font-size:clamp(3rem,7vw,5rem)}
h2{font-size:clamp(2.4rem,5vw,3.6rem);margin:0}
h3{font-size:clamp(1.55rem,2.6vw,2rem)}
h4{font-size:1rem}
p{color:var(--brown);font-size:.95rem;line-height:1.8}

.label{
  display:inline-block;
  font-family:var(--font-body);font-size:.7rem;font-weight:600;
  letter-spacing:.24em;text-transform:uppercase;color:var(--gold-dark);
}
.gold-line{width:54px;height:1px;background:var(--gold);margin:1.25rem 0;border:none}
.gold-line--center{margin-left:auto;margin-right:auto}
.section-label{display:block;text-align:center;margin-bottom:.6rem}
.section-heading{text-align:center;margin-bottom:1rem}
.section-desc{text-align:center;max-width:600px;margin:0 auto 3.5rem;color:var(--brown-light);font-size:.98rem}

/* ===== Layout ===== */
.wrap{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 clamp(1.25rem,3vw,2rem)}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.95rem 2.1rem;font-size:.78rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;
  border-radius:2px;cursor:pointer;
  transition:all .35s var(--ease);font-family:var(--font-body);
  white-space:nowrap;
}
.btn--gold{background:var(--gold);color:var(--white);border:1.5px solid var(--gold);box-shadow:0 6px 18px rgba(200,169,126,.2)}
.btn--gold:hover{background:var(--gold-dark);border-color:var(--gold-dark);transform:translateY(-2px);box-shadow:0 12px 30px rgba(200,169,126,.35)}
.btn--outline{background:transparent;color:var(--cream);border:1.5px solid rgba(255,255,255,.5)}
.btn--outline:hover{background:rgba(255,255,255,.08);border-color:var(--white);color:var(--white)}
.btn--dark{background:var(--charcoal);color:var(--cream);border:1.5px solid var(--charcoal)}
.btn--dark:hover{background:var(--brown-dark);border-color:var(--brown-dark);transform:translateY(-2px);box-shadow:0 10px 24px rgba(44,36,32,.25)}

/* ============================================
   NAVIGATION
   ============================================ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--nav-h);display:flex;align-items:center;
  transition:background .35s var(--ease),box-shadow .35s var(--ease);
  background:transparent;
}
.nav.scrolled{
  background:rgba(250,247,242,.95);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 0 var(--cream-300),0 4px 20px rgba(26,22,20,.04);
}
.nav__inner{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;max-width:var(--max-w);margin:0 auto;
  padding:0 clamp(1.25rem,3vw,2rem);
}
.nav__logo{display:flex;align-items:center;gap:.7rem;z-index:1002}
.nav__logo img{
  height:40px;width:40px;object-fit:cover;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.22);background:var(--cream);
  transition:border-color .35s var(--ease);
}
.nav.scrolled .nav__logo img{border-color:var(--cream-300)}
.nav__logo-text{font-family:var(--font-display);font-size:1.08rem;color:var(--white);transition:color .35s var(--ease);line-height:1.15}
.nav__logo-text small{display:block;font-family:var(--font-body);font-size:.56rem;font-weight:500;letter-spacing:.22em;text-transform:uppercase;opacity:.65;margin-top:2px}
.nav.scrolled .nav__logo-text{color:var(--charcoal)}

.nav__menu{display:flex;align-items:center;gap:2rem}
.nav__link{
  font-size:.73rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.8);transition:color .25s var(--ease);position:relative;padding:.3rem 0;
}
.nav__link::after{
  content:'';position:absolute;bottom:-2px;left:0;width:0;height:1.5px;
  background:var(--gold);transition:width .35s var(--ease);
}
.nav__link:hover::after,.nav__link.active::after{width:100%}
.nav__link:hover,.nav__link.active{color:var(--white)}
.nav.scrolled .nav__link{color:var(--brown)}
.nav.scrolled .nav__link:hover,.nav.scrolled .nav__link.active{color:var(--charcoal)}
.nav__cta{
  padding:.6rem 1.4rem;font-size:.7rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;border-radius:2px;
  background:var(--gold);color:var(--white)!important;
  transition:all .3s var(--ease);box-shadow:0 4px 14px rgba(200,169,126,.25);
}
.nav__cta:hover{background:var(--gold-dark);transform:translateY(-1px);box-shadow:0 8px 20px rgba(200,169,126,.4)}
.nav__cta::after{display:none}

.nav__hamburger{
  display:none;flex-direction:column;gap:5px;z-index:1002;
  width:40px;height:40px;align-items:center;justify-content:center;border-radius:4px;
}
.nav__hamburger span{
  display:block;width:24px;height:2px;background:var(--white);
  transition:all .3s var(--ease);border-radius:1px;transform-origin:center;
}
.nav.scrolled .nav__hamburger span{background:var(--charcoal)}
.nav__hamburger.active span{background:var(--white)}
.nav__hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__hamburger.active span:nth-child(2){opacity:0}
.nav__hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav__overlay{
  display:none;position:fixed;inset:0;background:rgba(26,22,20,.55);
  z-index:1000;backdrop-filter:blur(2px);
}
.nav__overlay.active{display:block;animation:fadeIn .3s ease forwards}

/* ============================================
   HERO
   ============================================ */
.hero{
  min-height:100vh;min-height:100svh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;position:relative;
  padding:calc(var(--nav-h) + 2rem) 0 3rem;
  background:
    linear-gradient(165deg,#1A1614 0%,#2C2420 40%,#3D3229 80%,#4A3D32 100%);
  color:var(--white);
}
.hero::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 520px 360px at 25% 78%,rgba(200,169,126,.08) 0%,transparent 70%),
    radial-gradient(ellipse 420px 420px at 78% 22%,rgba(200,169,126,.05) 0%,transparent 60%);
}
.hero::after{
  content:'';position:absolute;inset:0;pointer-events:none;opacity:.35;
  background-image:radial-gradient(rgba(200,169,126,.18) 1px,transparent 1px);
  background-size:36px 36px;
}
.hero__inner{position:relative;z-index:2;padding:0 1.5rem;max-width:760px;width:100%}

.hero__logo{
  width:108px;height:108px;margin:0 auto 2.25rem;
  border-radius:50%;overflow:hidden;
  border:1.5px solid rgba(200,169,126,.35);
  box-shadow:0 0 80px rgba(200,169,126,.18);
  background:var(--cream);
  opacity:0;animation:fadeUp .9s var(--ease) .3s forwards;
}
.hero__logo img{width:100%;height:100%;object-fit:cover}
.hero__label{
  font-family:var(--font-body);font-size:.72rem;font-weight:600;
  letter-spacing:.32em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.3rem;
  opacity:0;animation:fadeUp .9s var(--ease) .5s forwards;
}
.hero h1{
  font-family:var(--font-display);font-size:clamp(2.8rem,7vw,5.2rem);
  font-weight:500;color:var(--white);letter-spacing:.01em;
  margin-bottom:.4rem;line-height:1.05;
  opacity:0;animation:fadeUp .9s var(--ease) .65s forwards;
}
.hero__sub{
  font-family:var(--font-hand);
  font-size:clamp(1.6rem,3vw,2.3rem);font-weight:500;
  color:var(--gold-light);margin-bottom:1.75rem;
  opacity:0;animation:fadeUp .9s var(--ease) .8s forwards;
}
.hero__line{
  width:50px;height:1px;background:var(--gold);margin:0 auto 1.75rem;
  opacity:0;animation:fadeUp .9s var(--ease) .9s forwards;
}
.hero__desc{
  font-size:1rem;font-weight:300;color:rgba(255,255,255,.7);
  max-width:480px;margin:0 auto 2.5rem;line-height:1.85;
  opacity:0;animation:fadeUp .9s var(--ease) 1s forwards;
}
.hero__btns{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  opacity:0;animation:fadeUp .9s var(--ease) 1.15s forwards;
}

.hero__scroll{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.6rem;
  font-size:.62rem;letter-spacing:.32em;text-transform:uppercase;
  color:rgba(255,255,255,.5);z-index:2;
  opacity:0;animation:fadeIn 1s ease 1.6s forwards;
  pointer-events:none;
}
.hero__scroll-bar{
  width:1px;height:46px;background:linear-gradient(to bottom,transparent,var(--gold) 60%);
  position:relative;overflow:hidden;
}
.hero__scroll-bar::after{
  content:'';position:absolute;top:-100%;left:0;width:100%;height:100%;
  background:linear-gradient(to bottom,transparent,var(--gold-light));
  animation:scrollDot 2.3s ease-in-out infinite;
}

/* ============================================
   O HEAD SPA
   ============================================ */
.about-spa{padding:clamp(4rem,8vw,6.5rem) 0}
.about-spa__top{
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2.5rem,5vw,4.5rem);
  align-items:center;margin-bottom:4.5rem;
}
.about-spa__text p{margin-bottom:1rem}
.about-spa__text p:last-child{margin-bottom:0}
.about-spa__highlight{
  margin:1.5rem 0;padding:1.1rem 1.6rem;
  border-left:3px solid var(--gold);background:var(--cream-200);
  font-family:var(--font-display);font-style:italic;font-size:1.05rem;
  color:var(--brown-dark);line-height:1.7;
}
.about-spa__img{
  position:relative;border-radius:4px;overflow:hidden;
  box-shadow:var(--shadow-lg);aspect-ratio:4/5;max-width:460px;margin-left:auto;
}
.about-spa__img img{width:100%;height:100%;object-fit:cover}
.about-spa__img::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,transparent 70%,rgba(26,22,20,.08));
}

.pillars{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
  margin-top:3.5rem;
}
.pillar{
  background:var(--white);border:1px solid var(--cream-300);
  padding:2rem 1.4rem;text-align:center;border-radius:4px;
  transition:all .35s var(--ease);
}
.pillar:hover{
  border-color:var(--gold-light);transform:translateY(-4px);
  box-shadow:0 12px 34px rgba(200,169,126,.14);
}
.pillar__icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:52px;height:52px;margin-bottom:1rem;
  background:var(--cream-200);color:var(--gold-dark);
  border-radius:50%;font-size:1.35rem;
  transition:all .35s var(--ease);
}
.pillar:hover .pillar__icon{background:var(--gold);color:var(--white)}
.pillar h4{font-size:1rem;margin-bottom:.45rem;color:var(--charcoal);font-family:var(--font-display);font-weight:500}
.pillar p{font-size:.85rem;color:var(--brown-light);line-height:1.65}

/* ============================================
   O MNĚ
   ============================================ */
.about-me{padding:clamp(4rem,8vw,6.5rem) 0;background:var(--cream-200)}
.about-me__grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2.5rem,5vw,4.5rem);
  align-items:start;
}
.about-me__text p{margin-bottom:1rem}
.about-me__quote{
  margin:1.8rem 0;padding:1.2rem 1.8rem;
  border-left:3px solid var(--gold);background:var(--cream-50);
  font-family:var(--font-hand);
  font-size:1.4rem;color:var(--brown-dark);line-height:1.5;
}
.about-me__dream{
  margin-top:1.4rem;
  font-family:var(--font-hand);
  font-size:1.7rem;color:var(--gold-dark);text-align:right;line-height:1.3;
}

/* ===== Results chips ===== */
.results__chips{
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:.7rem;margin:0 auto 1.5rem;max-width:880px;
}
.results__chip{
  display:inline-block;padding:.7rem 1.3rem;
  background:var(--white);border:1px solid var(--cream-300);
  border-radius:999px;
  font-family:var(--font-hand);font-size:1.25rem;line-height:1.1;
  color:var(--brown-dark);
  box-shadow:var(--shadow-sm);transition:all .35s var(--ease);
}
.results__chip:hover{
  border-color:var(--gold-light);
  box-shadow:0 6px 18px rgba(200,169,126,.18);
  transform:translateY(-2px);
}
.results__tagline{
  text-align:center;font-family:var(--font-hand);
  color:var(--gold-dark);font-size:1.7rem;margin-bottom:2.5rem;line-height:1.3;
}

/* ===== Info banner ===== */
.info-banner{
  margin:3rem auto 1rem;max-width:780px;
}
.info-banner__inner{
  display:flex;align-items:center;gap:1rem;
  padding:1.1rem 1.4rem;
  background:linear-gradient(135deg,var(--cream-50),var(--cream-200));
  border:1px solid var(--gold-light);border-radius:8px;
  box-shadow:var(--shadow-sm);
}
.info-banner__icon{
  flex-shrink:0;width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  background:var(--white);color:var(--gold-dark);
  border-radius:50%;border:1px solid var(--cream-300);
}
.info-banner__icon svg{width:18px;height:18px}
.info-banner p{
  margin:0;font-size:.95rem;color:var(--brown-dark);line-height:1.5;
}
.info-banner a{color:var(--gold-dark);transition:color .25s var(--ease)}
.info-banner a:hover{color:var(--charcoal)}
@media (max-width:560px){
  .info-banner__inner{flex-direction:column;text-align:center;padding:1.1rem}
}

/* ===== Booking simplified ===== */
.booking__simple{
  list-style:none;margin:1.5rem 0;display:grid;gap:.7rem;
}
.booking__simple li{
  font-size:1rem;color:var(--brown-dark);line-height:1.6;
  padding-left:1.2rem;position:relative;
}
.booking__simple li::before{
  content:"";position:absolute;left:0;top:.65em;
  width:.45rem;height:.45rem;border-radius:50%;background:var(--gold);
}
.booking__simple a{color:var(--gold-dark);font-weight:600}
.booking__greet{
  margin-top:1.4rem;font-family:var(--font-hand);
  font-size:1.8rem;color:var(--gold-dark);line-height:1.3;
}

/* ===== Products brands rewrite ===== */
.products__brands p{
  font-size:1rem;color:var(--brown-dark);line-height:1.7;margin-bottom:.85rem;
}
.products__brands strong{color:var(--charcoal);font-weight:600}
.certs{display:flex;flex-direction:column;gap:.9rem;margin-top:2rem}
.cert{
  display:flex;gap:1rem;align-items:center;
  background:var(--white);padding:1.05rem 1.25rem;border-radius:4px;
  border:1px solid var(--cream-300);transition:all .3s var(--ease);
}
.cert:hover{border-color:var(--gold-light);transform:translateX(4px);box-shadow:var(--shadow-sm)}
.cert__icon{
  flex-shrink:0;width:48px;height:48px;background:var(--cream);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;border:1px solid var(--cream-300);
}
.cert__text h4{font-family:var(--font-body);font-size:.9rem;font-weight:700;margin-bottom:.2rem;color:var(--charcoal)}
.cert__text p{font-size:.8rem;color:var(--brown-light);line-height:1.55;margin:0}

.about-me__photo{
  position:relative;border-radius:4px;overflow:hidden;
  box-shadow:var(--shadow-lg);aspect-ratio:3/4;
  position:sticky;top:calc(var(--nav-h) + 1.5rem);
}
.about-me__photo img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.about-me__photo:hover img{transform:scale(1.03)}

/* ============================================
   SLUŽBY
   ============================================ */
.services{padding:clamp(4rem,8vw,6.5rem) 0}
.services__category-title{
  text-align:center;margin:3rem 0 2rem;
  display:flex;align-items:center;justify-content:center;gap:1.2rem;
}
.services__category-title:first-of-type{margin-top:0}
.services__category-title span{
  font-family:var(--font-hand);font-size:2rem;font-weight:600;
  color:var(--charcoal);white-space:nowrap;letter-spacing:.01em;
}
.services__category-title::before,.services__category-title::after{
  content:'';flex:1;max-width:90px;height:1px;background:var(--taupe-100);
}

.spa-cards{
  display:grid;grid-template-columns:repeat(6,1fr);gap:1.25rem;
  margin-bottom:1rem;
}
.spa-cards > .spa-card{grid-column:span 2}
.spa-cards > .spa-card:nth-child(4){grid-column:2 / span 2}
.spa-cards > .spa-card:nth-child(5){grid-column:4 / span 2}
.spa-card{
  background:var(--white);border:1px solid var(--cream-300);border-radius:4px;
  overflow:hidden;position:relative;transition:all .35s var(--ease);
  display:flex;flex-direction:column;
}
.spa-card:hover{
  border-color:var(--gold-light);
  box-shadow:0 14px 40px rgba(200,169,126,.14);
  transform:translateY(-4px);
}
.spa-card--vip{border-top:2px solid var(--gold)}
.spa-card__badge{
  display:none;position:absolute;top:0;right:1.2rem;
  padding:.4rem .8rem;background:var(--gold);color:var(--white);
  font-size:.6rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  border-radius:0 0 2px 2px;
}
.spa-card--vip .spa-card__badge{display:block}
.spa-card__head{
  padding:1.6rem 1.5rem 1rem;display:flex;justify-content:space-between;
  align-items:flex-start;gap:1rem;
}
.spa-card__name{
  font-family:var(--font-hand);font-size:1.7rem;font-weight:600;
  color:var(--charcoal);line-height:1.15;
}
.spa-card__tag{
  font-family:var(--font-hand);font-size:1.15rem;
  color:var(--gold-dark);margin-top:.05rem;line-height:1.2;
}
.spa-card__meta{text-align:right;flex-shrink:0}
.spa-card__price{font-family:var(--font-hand);font-size:2.1rem;font-weight:600;color:var(--charcoal);line-height:1}
.spa-card__price small{font-size:.8rem;font-weight:400;color:var(--brown);margin-left:2px}
.spa-card__dur{font-size:.72rem;color:var(--taupe-dark);letter-spacing:.08em;text-transform:uppercase;margin-top:.3rem}
.spa-card__body{padding:0 1.5rem 1.6rem;flex:1;display:flex;flex-direction:column}
.spa-card__list{display:flex;flex-direction:column;gap:.4rem}
.spa-card__list li{
  font-size:.86rem;color:var(--brown);padding-left:1.2rem;
  position:relative;line-height:1.55;
}
.spa-card__list li::before{
  content:'';position:absolute;left:0;top:.55rem;
  width:5px;height:5px;border-radius:50%;background:var(--gold);
}

/* Other services table */
.other-table{
  background:var(--white);border:1px solid var(--cream-300);
  border-radius:4px;overflow:hidden;margin-top:1.5rem;
}
.other-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:1rem 1.6rem;border-bottom:1px solid var(--cream-200);
  transition:background .2s var(--ease);gap:1rem;
}
.other-row:last-child{border-bottom:none}
.other-row:hover{background:var(--cream)}
.other-row__name{font-size:.92rem;font-weight:500;color:var(--charcoal)}
.other-row__price{
  font-family:var(--font-display);font-size:1.05rem;color:var(--charcoal);
  white-space:nowrap;font-weight:500;flex-shrink:0;
}

/* ============================================
   VÝSLEDKY
   ============================================ */
.results{padding:clamp(4rem,8vw,6.5rem) 0;background:var(--cream-200)}
.results__gallery{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
  margin-bottom:3.5rem;
}
.results__img{
  position:relative;overflow:hidden;aspect-ratio:3/4;border-radius:4px;
  box-shadow:var(--shadow-md);
}
.results__img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--ease);
}
.results__img:hover img{transform:scale(1.06)}
.results__img figcaption{
  position:absolute;bottom:0;left:0;right:0;
  padding:3rem 1rem 1rem;
  background:linear-gradient(to top,rgba(26,22,20,.75),transparent);
  color:var(--white);font-size:.72rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;text-align:center;
}

.benefits{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
  max-width:860px;margin:0 auto;
}
.benefit-card{
  display:flex;gap:1rem;align-items:flex-start;
  background:var(--white);border:1px solid var(--cream-300);
  padding:1.3rem 1.5rem;border-radius:4px;
  transition:all .3s var(--ease);
}
.benefit-card:hover{
  border-color:var(--gold-light);transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.benefit-card__icon{
  flex-shrink:0;font-size:1.4rem;
  width:42px;height:42px;background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
}
.benefit-card h4{font-size:.95rem;font-weight:700;font-family:var(--font-body);margin-bottom:.2rem;color:var(--charcoal)}
.benefit-card p{font-size:.83rem;color:var(--brown-light);line-height:1.6;margin:0}

/* ============================================
   DÁRKOVÝ POUKAZ
   ============================================ */
.voucher{padding:clamp(4rem,8vw,6.5rem) 0}
.voucher__card{
  max-width:640px;margin:0 auto;text-align:center;
  padding:clamp(2.5rem,5vw,4rem) clamp(1.5rem,4vw,3rem);
  background:
    linear-gradient(145deg,var(--cream-50),var(--cream));
  border:1px solid var(--cream-300);border-radius:6px;
  box-shadow:var(--shadow-lg);position:relative;overflow:hidden;
}
.voucher__card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--gold-light),var(--gold),var(--gold-light));
}
.voucher__card::after{
  content:'';position:absolute;inset:10px;border:1px dashed var(--taupe-100);
  border-radius:4px;pointer-events:none;opacity:.5;
}
.voucher__icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:64px;height:64px;margin:0 auto 1.5rem;
  background:var(--gold);color:var(--white);
  border-radius:50%;font-size:1.75rem;
  box-shadow:0 10px 30px rgba(200,169,126,.35);
  position:relative;z-index:1;
}
.voucher__card h3{font-size:clamp(1.5rem,3vw,2rem);margin-bottom:1rem;position:relative;z-index:1}
.voucher__card p{font-size:1rem;max-width:440px;margin:0 auto 1.75rem;position:relative;z-index:1}
.voucher__price{
  font-family:var(--font-display);font-size:clamp(2rem,4vw,2.5rem);
  font-weight:500;color:var(--gold-dark);margin-bottom:1.75rem;position:relative;z-index:1;
}
.voucher__price small{font-size:1rem;font-weight:400;color:var(--brown);margin-left:3px}
.voucher__card .btn{position:relative;z-index:1}
.voucher__note{
  text-align:center;color:var(--brown-light);
  font-size:.9rem;margin-top:1.75rem;max-width:500px;margin-left:auto;margin-right:auto;
}

/* ============================================
   REZERVACE
   ============================================ */
.booking{padding:clamp(4rem,8vw,6.5rem) 0;background:var(--cream-200)}
.booking__grid{
  display:grid;grid-template-columns:1fr;
  gap:clamp(2rem,4vw,3.5rem);align-items:start;
  max-width:680px;margin:0 auto;
}
.booking__left>p{margin-bottom:1rem}

.steps{display:flex;flex-direction:column;gap:1.4rem;margin-top:2rem}
.step{display:flex;gap:1.2rem;align-items:flex-start}
.step__num{
  flex-shrink:0;width:36px;height:36px;background:var(--charcoal);color:var(--cream);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:.95rem;font-weight:500;
}
.step__text h4{font-family:var(--font-body);font-size:.95rem;font-weight:700;margin-bottom:.25rem;color:var(--charcoal)}
.step__text p{font-size:.88rem;color:var(--brown-light);line-height:1.6;margin:0}

.booking__right{
  background:var(--white);border:1px solid var(--cream-300);
  padding:clamp(1.75rem,3vw,2.25rem);border-radius:4px;
  box-shadow:var(--shadow-sm);
}
.booking__right h3{margin-bottom:1.5rem}
.booking__group{margin-bottom:1.5rem}
.booking__group:last-of-type{margin-bottom:0}
.booking__group h4{
  font-family:var(--font-body);font-size:.9rem;font-weight:700;
  margin-bottom:.6rem;color:var(--charcoal);
  display:flex;align-items:center;gap:.5rem;
}
.booking__group h4::before{
  content:'';width:10px;height:2px;background:var(--gold);border-radius:1px;
}
.booking__group ul{display:flex;flex-direction:column;gap:.4rem}
.booking__group li{
  font-size:.87rem;color:var(--brown);padding-left:1.2rem;
  position:relative;line-height:1.6;
}
.booking__group li::before{
  content:'';position:absolute;left:0;top:.58rem;
  width:5px;height:5px;border-radius:50%;
}
.booking__group--deposit li::before{background:var(--gold)}
.booking__group--cancel li::before{background:var(--rose)}
.booking__note{
  background:var(--cream);border-left:3px solid var(--gold);
  padding:.9rem 1.2rem;margin-top:1.5rem;border-radius:0 2px 2px 0;
}
.booking__note p{font-size:.85rem;font-style:italic;color:var(--brown);margin:0}

/* ============================================
   KONTAKT
   ============================================ */
.contact{padding:clamp(4rem,8vw,6.5rem) 0}
.contact__grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(2rem,4vw,3.5rem);align-items:start;
}
.contact__info>p{margin-bottom:2rem}
.contact__items{display:flex;flex-direction:column;gap:1.4rem}
.contact__item{display:flex;gap:1.2rem;align-items:flex-start}
.contact__icon{
  flex-shrink:0;width:48px;height:48px;background:var(--cream-200);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;border:1px solid var(--cream-300);
}
.contact__item h4{font-family:var(--font-body);font-size:.9rem;font-weight:700;margin-bottom:.15rem;color:var(--charcoal)}
.contact__item p{font-size:.95rem;color:var(--brown);margin:0;line-height:1.5}
.contact__item a{color:var(--gold-dark);font-weight:600;transition:color .2s var(--ease)}
.contact__item a:hover{color:var(--charcoal)}
.contact__cta{margin-top:2.25rem}

.contact__map{
  background:
    linear-gradient(135deg,var(--cream-200),var(--cream-300));
  border:1px dashed var(--taupe-100);border-radius:4px;
  min-height:420px;display:flex;align-items:center;justify-content:center;
  padding:2rem;text-align:center;position:relative;overflow:hidden;
}
.contact__map::before{
  content:'';position:absolute;inset:0;opacity:.3;pointer-events:none;
  background-image:
    linear-gradient(var(--taupe-100) 1px,transparent 1px),
    linear-gradient(90deg,var(--taupe-100) 1px,transparent 1px);
  background-size:40px 40px;
}
.contact__map-inner{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:.8rem}
.contact__map-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:56px;height:56px;color:var(--gold-dark);
  background:var(--cream-50);border-radius:50%;
  border:1px solid var(--taupe-100);
}
.contact__map-icon svg{width:26px;height:26px}
.contact__map p{
  color:var(--taupe-dark);font-size:.95rem;text-align:center;line-height:1.8;
  font-family:var(--font-display);font-style:italic;margin:0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer{background:var(--charcoal);color:rgba(255,255,255,.55);padding:3.5rem 0 1.5rem}
.footer__grid{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;
  margin-bottom:2.5rem;
}
.footer__brand{display:flex;align-items:center;gap:.7rem;margin-bottom:.8rem}
.footer__brand img{height:38px;width:38px;object-fit:cover;border-radius:50%;background:var(--cream);padding:2px}
.footer__brand span{font-family:var(--font-display);font-size:1.15rem;color:var(--white);font-weight:500}
.footer__desc{font-size:.86rem;line-height:1.75;max-width:340px;color:rgba(255,255,255,.45)}
.footer h4{
  color:var(--white);font-family:var(--font-body);font-size:.72rem;
  font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  margin-bottom:1.1rem;
}
.footer__links{display:flex;flex-direction:column;gap:.55rem}
.footer__links a,.footer__links span{
  font-size:.86rem;color:rgba(255,255,255,.5);
  transition:color .2s var(--ease);
}
.footer__links a:hover{color:var(--gold-light)}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.08);padding-top:1.4rem;
  display:flex;justify-content:space-between;align-items:center;
  font-size:.75rem;color:rgba(255,255,255,.3);gap:1rem;flex-wrap:wrap;
}

/* ============================================
   SVG ICON SIZING
   ============================================ */
.pillar__icon svg{width:24px;height:24px}
.cert__icon svg{width:22px;height:22px}
.benefit-card__icon svg{width:22px;height:22px;color:var(--gold-dark)}
.voucher__icon svg{width:30px;height:30px}
.contact__icon svg{width:22px;height:22px;color:var(--gold-dark)}

/* ============================================
   CERT GALLERY
   ============================================ */
.certifikaty{padding:clamp(4rem,8vw,6.5rem) 0;background:var(--cream)}
.cert-gallery{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;margin-top:1rem;
}
.cert-gallery__item{
  position:relative;overflow:hidden;border-radius:4px;
  background:var(--white);border:1px solid var(--cream-300);
  box-shadow:var(--shadow-sm);transition:all .4s var(--ease);
  display:flex;flex-direction:column;
}
.cert-gallery__item:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 38px rgba(200,169,126,.18);
  border-color:var(--gold-light);
}
.cert-gallery__item img{
  width:100%;aspect-ratio:3/4;object-fit:cover;
  transition:transform .7s var(--ease);background:var(--cream-200);
}
.cert-gallery__item:hover img{transform:scale(1.04)}
.cert-gallery__item figcaption,.products__img figcaption{
  padding:.85rem 1rem;
  font-family:var(--font-body);font-size:.78rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--brown);text-align:center;
  border-top:1px solid var(--cream-200);background:var(--cream-50);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products{padding:clamp(4rem,8vw,6.5rem) 0;background:var(--cream-50)}
.products__brands{
  max-width:780px;margin:0 auto 2.75rem;
  background:var(--white);border:1px solid var(--cream-300);
  border-radius:4px;padding:1.75rem clamp(1.25rem,3vw,2.5rem);
  box-shadow:var(--shadow-sm);
}
.products__brand-list{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:.85rem 1.75rem;list-style:none;
}
.products__brand-list li{
  font-size:.92rem;color:var(--brown);line-height:1.5;
  padding-left:1.1rem;position:relative;
}
.products__brand-list li::before{
  content:"";position:absolute;left:0;top:.68em;
  width:.45rem;height:.45rem;border-radius:50%;
  background:var(--gold);
}
.products__brand-list strong{color:var(--charcoal);font-weight:600}
.products__gallery{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.25rem;
}
.products__img{
  position:relative;overflow:hidden;border-radius:4px;
  background:var(--white);border:1px solid var(--cream-300);
  box-shadow:var(--shadow-sm);transition:all .4s var(--ease);
  display:flex;flex-direction:column;
}
.products__img:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 38px rgba(200,169,126,.18);
  border-color:var(--gold-light);
}
.products__img img{
  width:100%;aspect-ratio:4/3;object-fit:cover;
  transition:transform .7s var(--ease);background:var(--cream-200);
}
.products__img:hover img{transform:scale(1.04)}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes scrollDot{
  0%{transform:translateY(0)}
  60%{transform:translateY(200%)}
  100%{transform:translateY(200%)}
}

.reveal{opacity:0;transform:translateY(32px);transition:opacity .75s ease-out,transform .75s ease-out}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-l{opacity:0;transform:translateX(-32px);transition:opacity .75s ease-out,transform .75s ease-out}
.reveal-l.visible{opacity:1;transform:translateX(0)}
.reveal-r{opacity:0;transform:translateX(32px);transition:opacity .75s ease-out,transform .75s ease-out}
.reveal-r.visible{opacity:1;transform:translateX(0)}
.stagger .reveal:nth-child(1){transition-delay:0s}
.stagger .reveal:nth-child(2){transition-delay:.08s}
.stagger .reveal:nth-child(3){transition-delay:.16s}
.stagger .reveal:nth-child(4){transition-delay:.24s}
.stagger .reveal:nth-child(5){transition-delay:.32s}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;scroll-behavior:auto!important;
  }
  .reveal,.reveal-l,.reveal-r{opacity:1!important;transform:none!important}
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet landscape / small desktop */
@media (max-width:1024px){
  .about-spa__top{grid-template-columns:1fr;gap:2.5rem}
  .about-spa__img{max-width:100%;margin:0 auto;aspect-ratio:16/11}
  .about-me__grid{grid-template-columns:1fr;gap:2.5rem}
  .about-me__photo{position:static;aspect-ratio:4/3;max-width:640px;margin:0 auto}
  .pillars{grid-template-columns:repeat(2,1fr);gap:1rem}
  .spa-cards{grid-template-columns:repeat(4,1fr)}
  .spa-cards > .spa-card{grid-column:span 2}
  .spa-cards > .spa-card:nth-child(3){grid-column:span 2}
  .spa-cards > .spa-card:nth-child(4){grid-column:span 2}
  .spa-cards > .spa-card:nth-child(5){grid-column:2 / span 2}
  .booking__grid{grid-template-columns:1fr;gap:2.5rem}
  .contact__grid{grid-template-columns:1fr;gap:2.5rem}
  .contact__map{min-height:300px}
  .footer__grid{grid-template-columns:1fr 1fr;gap:2.5rem}
  .footer__grid>div:first-child{grid-column:span 2}
  .footer__desc{max-width:100%}
  .results__gallery{grid-template-columns:repeat(2,1fr)}
  .cert-gallery{grid-template-columns:repeat(2,1fr)}
  .products__gallery{grid-template-columns:repeat(2,1fr)}
  .products__brand-list{grid-template-columns:1fr}
  .nav__menu{gap:1.4rem}
  .nav__link{font-size:.7rem}
}

/* Tablet portrait */
@media (max-width:880px){
  :root{--nav-h:64px}
  .nav__menu{
    position:fixed;top:0;right:-100%;width:82%;max-width:340px;height:100vh;height:100dvh;
    background:var(--charcoal);flex-direction:column;align-items:flex-start;
    justify-content:center;padding:2.5rem 2rem;gap:1.5rem;
    transition:right .4s var(--ease);box-shadow:-12px 0 40px rgba(0,0,0,.3);
    overflow-y:auto;
  }
  .nav__menu.open{right:0}
  .nav__menu .nav__link{font-size:1rem;color:rgba(255,255,255,.8);padding:.4rem 0}
  .nav__menu .nav__link:hover,.nav__menu .nav__link.active{color:var(--gold-light)}
  .nav__menu .nav__link::after{display:none}
  .nav__menu .nav__cta{
    margin-top:1rem;font-size:.85rem;padding:.9rem 1.6rem;width:100%;justify-content:center;
  }
  .nav__hamburger{display:flex}
}

/* Mobile */
@media (max-width:768px){
  h2{font-size:clamp(1.75rem,6vw,2.2rem)}
  .section-desc{margin-bottom:2.5rem}

  .hero{padding:calc(var(--nav-h) + 1.5rem) 0 4rem}
  .hero__logo{width:90px;height:90px;margin-bottom:2rem}
  .hero__desc{font-size:.95rem}
  .hero__btns{flex-direction:column;align-items:stretch;width:100%;max-width:300px;margin:0 auto}
  .hero__btns .btn{width:100%;justify-content:center}
  .hero__scroll{display:none}

  .about-spa__highlight{font-size:1rem;padding:1rem 1.3rem}
  .about-me__quote{font-size:1rem;padding:1rem 1.3rem}

  .spa-card__head{flex-direction:column;gap:.6rem;align-items:flex-start}
  .spa-card__meta{text-align:left;display:flex;gap:1rem;align-items:baseline}
  .spa-card__dur{margin-top:0}

  .other-row{padding:.95rem 1.25rem}
  .other-row__name{font-size:.88rem}
  .other-row__price{font-size:.98rem}

  .results__gallery{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .benefits{grid-template-columns:1fr}

  .voucher__card{padding:2.5rem 1.5rem}
  .voucher__card::after{inset:8px}

  .booking__right{padding:1.5rem 1.25rem}
  .step{gap:1rem}
  .step__num{width:32px;height:32px;font-size:.85rem}

  .footer{padding:3rem 0 1.25rem}
  .footer__grid{grid-template-columns:1fr;gap:2rem;margin-bottom:2rem}
  .footer__grid>div:first-child{grid-column:auto}
  .footer__bottom{flex-direction:column;text-align:center;gap:.5rem}
  .footer__desc{max-width:100%}
}

/* Narrow tablet/phablet — single-col cards */
@media (max-width:640px){
  .spa-cards{grid-template-columns:1fr}
  .spa-cards > .spa-card,
  .spa-cards > .spa-card:nth-child(3),
  .spa-cards > .spa-card:nth-child(4),
  .spa-cards > .spa-card:nth-child(5){grid-column:1}
}

/* Small mobile */
@media (max-width:480px){
  html{font-size:15px}
  .wrap{padding:0 1rem}
  .pillars{grid-template-columns:1fr}
  .results__gallery{grid-template-columns:1fr}
  .cert-gallery{grid-template-columns:1fr;gap:1rem}
  .cert-gallery__item img{aspect-ratio:4/5}
  .products__gallery{grid-template-columns:1fr;gap:1rem}
  .services__category-title::before,.services__category-title::after{max-width:40px}
  .services__category-title span{font-size:1.1rem}
  .other-row{flex-direction:column;align-items:flex-start;gap:.3rem;padding:.9rem 1.15rem}
  .btn{padding:.85rem 1.6rem;font-size:.72rem}
  .cert{flex-direction:row;padding:.9rem}
  .cert__icon{width:42px;height:42px;font-size:1.15rem}
  .contact__map{min-height:240px}
}
