/* ============================================================
   VLASKA.SK — Hlavné štýly
   ============================================================ */

/* ========================
   FONTY
   ======================== */
@font-face {
  font-family: 'GraphikWide';
  src: url('Fonty/GraphikWide-Regular.otf') format('opentype'),
       url('Fonty/GraphikWide-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GraphikWide';
  src: url('Fonty/GraphikWide-Bold.otf') format('opentype'),
       url('Fonty/GraphikWide-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('Fonty/Graphik-Regular.otf') format('opentype'),
       url('Fonty/Graphik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('Fonty/Graphik-Bold.otf') format('opentype'),
       url('Fonty/Graphik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========================
   CSS PREMENNÉ
   ======================== */
:root {
  --dark:       #171E16;
  --dark-2:     #1c2419;
  --dark-3:     #212d20;
  --purple:     #A484FF;
  --purple-dim: rgba(164, 132, 255, 0.15);
  --light:      #E4E5E9;
  --light-dim:  rgba(228, 229, 233, 0.65);
  --pink:       #FF007A;
  --white:      #ffffff;
  --nav-h:      72px;
  --r:          12px;
  --ease:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================
   RESET & ZÁKLAD
   ======================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Graphik', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
address {
  font-style: normal;
}

/* ========================
   UTILITY
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Tlačidlá */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 100px;
  font-family: 'GraphikWide', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform 0.15s ease;
  white-space: nowrap;
  -webkit-appearance: none;
}
.btn:active { transform: scale(0.97); }

.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--pink:hover {
  background: transparent;
  color: var(--pink);
}

.btn--purple {
  background: var(--purple);
  color: var(--dark);
  border-color: var(--purple);
}
.btn--purple:hover {
  background: transparent;
  color: var(--purple);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--lg {
  padding: 18px 46px;
  font-size: 14px;
}

/* Štítky */
.label {
  display: inline-block;
  font-family: 'GraphikWide', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.label--pink   { color: var(--pink); }
.label--purple { color: var(--purple); }

/* Nadpisy sekcií */
.section-title {
  font-family: 'GraphikWide', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 52px;
}
.section-title--light { color: var(--white); }

/* Link šípka */
.link-arrow {
  display: inline-block;
  margin-top: 10px;
  font-family: 'GraphikWide', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  transition: color var(--ease), letter-spacing var(--ease);
}
.link-arrow:hover {
  color: var(--pink);
  letter-spacing: 0.08em;
}

/* Reveal animácia */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   NAVIGÁCIA
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(23, 30, 22, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav.menu-open {
  background: rgb(23, 30, 22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 44px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 24px;
  width: auto;
  transition: opacity var(--ease);
}
.nav__logo:hover img { opacity: 0.75; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: 'GraphikWide', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(228, 229, 233, 0.7);
  transition: color var(--ease);
  padding: 4px 0;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--pink);
  transition: right var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  padding: 10px 26px;
  font-size: 12px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'GraphikWide', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  flex-shrink: 0;
  margin-left: 20px;
}
.nav__lang-active {
  color: var(--white);
  font-weight: 700;
}
.nav__lang-sep {
  color: var(--light);
  opacity: .3;
}
.nav__lang-link {
  color: var(--light);
  opacity: .5;
  text-decoration: none;
  transition: opacity .2s;
}
.nav__lang-link:hover { opacity: 1; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__gallery {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  transform-origin: center center;
}
.hero__slide.active { opacity: 1; }

/* Ken Burns – štyri varianty, plynulý ease-in-out pohyb */
.hero__slide:nth-child(1).active { animation: kb-zoom-out  22s ease-in-out forwards; }
.hero__slide:nth-child(2).active { animation: kb-pan-left  22s ease-in-out forwards; }
.hero__slide:nth-child(3).active { animation: kb-pan-right 22s ease-in-out forwards; }
.hero__slide:nth-child(4).active { animation: kb-zoom-in   22s ease-in-out forwards; }

@keyframes kb-zoom-out {
  0%   { transform: scale(1.08) translate(0,      0);      }
  100% { transform: scale(1.0)  translate(-1.2%, 0.5%);    }
}
@keyframes kb-pan-left {
  0%   { transform: scale(1.02) translate(1.5%,   0);      }
  100% { transform: scale(1.07) translate(-0.8%, -0.4%);   }
}
@keyframes kb-pan-right {
  0%   { transform: scale(1.07) translate(-1.2%, 0.7%);    }
  100% { transform: scale(1.02) translate(0.9%,  0);       }
}
@keyframes kb-zoom-in {
  0%   { transform: scale(1.0)  translate(0.6%,  0.4%);   }
  100% { transform: scale(1.08) translate(-0.6%, 0);       }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(23, 30, 22, 0.88) 0%,
    rgba(23, 30, 22, 0.5) 55%,
    rgba(23, 30, 22, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 64px;
  padding-top: var(--nav-h);
  max-width: 720px;
}

.hero__eyebrow {
  font-family: 'GraphikWide', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'GraphikWide', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.97;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: normal;
  color: var(--purple);
}

.hero__slogan {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(228, 229, 233, 0.78);
  margin-bottom: 44px;
  line-height: 1.7;
}

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

.hero__wave {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.hero__wave img { width: 100%; }


.hero__dots {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), width 0.3s ease;
  padding: 0;
}
.hero__dot.active {
  background: var(--light);
  border-color: var(--light);
  width: 24px;
  border-radius: 4px;
}

/* Mobilný plávajúci CTA */
.hero__mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  background: var(--purple);
  color: var(--dark);
  font-family: 'GraphikWide', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(164, 132, 255, 0.45);
  transition: opacity var(--ease), transform var(--ease);
  white-space: nowrap;
}
.hero__mobile-cta.hide { opacity: 0; pointer-events: none; }

/* ========================
   O NÁS
   ======================== */
.about {
  background: var(--light);
  padding: 110px 0 120px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__heading {
  font-family: 'GraphikWide', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 22px;
}

.about__slogan {
  font-family: 'GraphikWide', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.55;
}

.about__body {
  font-size: 0.94rem;
  color: rgba(23, 30, 22, 0.65);
  margin-bottom: 38px;
  line-height: 1.75;
}

.about__images {
  position: relative;
}

/* Photo cycling wrappers */
.about__photo--main {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--r);
  overflow: hidden;
}
.about__photo--accent {
  position: absolute;
  bottom: -44px;
  left: -36px;
  width: 52%;
  height: 210px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  border: 5px solid var(--light);
}

/* Stacked slides inside each wrapper */
.about__photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform-origin: center center;
}
.about__photo__img.active {
  opacity: 1;
  animation: about-kb 12s linear forwards;
}
@keyframes about-kb {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.0);  }
}

/* ========================
   TÍM
   ======================== */
.team {
  background: var(--dark);
  padding: 110px 0 120px;
}

.team__intro {
  max-width: 640px;
  margin-bottom: 72px;
}
.team__intro p {
  font-family: 'GraphikWide', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 400;
  color: rgba(228, 229, 233, 0.65);
  line-height: 1.68;
  margin-bottom: 10px;
}
.team__intro p:last-child { margin-bottom: 0; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* === Karta člena tímu === */
.team-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.team-card:hover {
  border-color: rgba(164, 132, 255, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.team-card__photo-wrap {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover .team-card__photo {
  transform: scale(1.05);
}

.team-card__body {
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card__num {
  display: inline-block;
  font-family: 'GraphikWide', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}

.team-card__name {
  font-family: 'GraphikWide', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
}

.team-card__role {
  font-family: 'GraphikWide', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.team-card__tagline {
  font-size: 0.8rem;
  color: rgba(228, 229, 233, 0.5);
  line-height: 1.58;
  font-style: italic;
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 2px solid rgba(164, 132, 255, 0.35);
}

.team-card__short {
  font-size: 0.8rem;
  color: rgba(228, 229, 233, 0.6);
  line-height: 1.68;
  margin-bottom: 20px;
}

/* Toggle tlačidlo */
.team-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid rgba(164, 132, 255, 0.3);
  color: var(--purple);
  font-family: 'GraphikWide', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
  align-self: flex-start;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.team-card__toggle::after {
  content: '↓';
  display: inline-block;
  font-size: 10px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card__toggle:hover {
  background: rgba(164, 132, 255, 0.1);
  border-color: var(--purple);
}
.team-card__toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Bio rozbalenie — grid-template-rows trick */
.team-card__bio {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card__bio.open {
  grid-template-rows: 1fr;
}
.team-card__bio-inner {
  overflow: hidden;
  padding-top: 0;
  transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card__bio.open .team-card__bio-inner {
  padding-top: 18px;
}
.team-card__bio-inner p {
  font-size: 0.79rem;
  color: rgba(228, 229, 233, 0.58);
  line-height: 1.72;
  margin-bottom: 10px;
}
.team-card__bio-inner p:last-child { margin-bottom: 0; }

/* ========================
   SLUŽBY
   ======================== */
.services {
  background: var(--light);
  padding: 110px 0;
}
.services .section-title { color: var(--dark); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  cursor: default;
  transition: background var(--ease), transform 0.2s ease;
}
.service-card:hover {
  background: var(--dark);
  transform: translateY(-3px);
}
.service-card__icon {
  font-size: 1.4rem;
  color: var(--pink);
  margin-bottom: 18px;
  display: block;
  transition: color var(--ease);
}
.service-card h3 {
  font-family: 'GraphikWide', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color var(--ease);
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(23, 30, 22, 0.62);
  line-height: 1.65;
  transition: color var(--ease);
}
.service-card:hover .service-card__icon { color: var(--purple); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p  { color: rgba(228, 229, 233, 0.7); }

/* ========================
   REZERVÁCIA
   ======================== */
.booking {
  background: var(--dark-2);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 132, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.booking__sub {
  color: var(--light-dim);
  font-size: 1rem;
  margin-bottom: 48px;
  margin-top: -32px;
}

.booking__widget {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  min-height: 520px;
}
#bookio-iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  display: block;
}

.booking__alt {
  margin-top: 36px;
  text-align: center;
  color: var(--light-dim);
  font-size: 0.9rem;
}
.booking__phone {
  display: inline-block;
  margin-top: 8px;
  font-family: 'GraphikWide', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--ease);
}
.booking__phone:hover { color: var(--pink); }

/* ========================
   CENNÍK
   ======================== */
.pricing {
  background: var(--dark);
  padding: 110px 0;
}

.pricing__notice {
  text-align: center;
  color: var(--light);
  opacity: 0.7;
  font-size: 0.85rem;
  max-width: 680px;
  margin: -24px auto 48px;
  line-height: 1.6;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing__card {
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}
.pricing__card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
}

/* ========================
   ZNAČKY
   ======================== */
.brands {
  background: var(--light);
  padding: 64px 0;
  text-align: center;
}
.brands__label {
  font-family: 'GraphikWide', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23, 30, 22, 0.4);
  margin-bottom: 32px;
}
.brands__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.brands__logo {
  height: 72px;
  width: auto;
  filter: grayscale(1) brightness(0.3) contrast(1.2);
  transition: filter var(--ease);
}
.brands__logo:hover { filter: grayscale(0) brightness(1); }
.brands__logo--text {
  font-family: var(--font-wide);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 30, 22, 0.35);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  height: 72px;
}
.brands__logo--text:hover { color: rgba(23, 30, 22, 0.75); }

/* ========================
   E-SHOP
   ======================== */
.eshop {
  background: var(--dark-3);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.eshop__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.eshop__text {
  color: var(--light-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 44px;
}
.eshop__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  padding: 16px 40px;
  font-family: 'GraphikWide', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(228, 229, 233, 0.45);
  transition: border-color var(--ease), color var(--ease);
  cursor: default;
}
.eshop__badge:hover {
  border-color: var(--purple-dim);
  color: var(--purple);
}
.eshop__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ========================
   KONTAKT
   ======================== */
.contact {
  background: var(--light);
  padding: 88px 0;
}
.contact .section-title { color: var(--dark); }

.contact__grid {
  display: block;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
}

.contact__block {
  padding-right: 48px;
  border-right: 1px solid rgba(23, 30, 22, 0.1);
  padding-left: 48px;
}
.contact__block:first-child {
  padding-left: 0;
}
.contact__block:last-child {
  border-right: none;
}

.contact__block h3 {
  font-family: 'GraphikWide', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 30, 22, 0.38);
  margin-bottom: 10px;
}
.contact__block address p {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 6px;
}

.contact__phone {
  font-family: 'GraphikWide', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--ease);
}
.contact__phone:hover { color: var(--pink); }

.social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'GraphikWide', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--ease);
}
.social__link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.social__link--ig:hover { color: #C13584; }
.social__link--fb:hover { color: #1877F2; }


/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo img {
  height: 18px;
  opacity: 1;
  transition: opacity var(--ease);
}
.footer__logo:hover img { opacity: 1; }
.footer__copy {
  font-family: 'GraphikWide', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(228, 229, 233, 0.88);
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  color: rgba(228, 229, 233, 0.88);
  transition: color var(--ease);
}
.footer__social a:hover { color: var(--pink); }
.footer__social svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ========================
   BREAKPOINT: 1024px
   ======================== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about__images {
    margin-top: 56px;
    padding-bottom: 44px;
  }
  .about__photo--accent {
    position: static;
    width: 48%;
    margin-top: 16px;
    height: 180px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pricing__grid .pricing__card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact__info {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact__block {
    padding: 32px 0;
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(23, 30, 22, 0.1);
  }
  .contact__block:last-child {
    border-bottom: none;
  }

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

/* ========================
   BREAKPOINT: 768px
   ======================== */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  /* Nav mobilná */
  .nav__inner { padding: 0 20px; }
  .nav__burger { display: flex; }

  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(23, 30, 22);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 190;
    padding: 40px 20px;
  }
  .nav.menu-open .nav__menu { display: flex; }

  .nav__links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .nav__links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    padding: 10px 0;
  }
  .nav__links a::after { display: none; }

  .nav__cta {
    padding: 14px 44px;
    font-size: 14px;
  }

  /* Hero mobilný */
  .hero { min-height: 100svh; }
  .hero__content {
    padding: 0 24px;
    padding-top: calc(var(--nav-h) + 20px);
    max-width: 100%;
  }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .hero__slogan { margin-bottom: 36px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__wave { display: none; }
  .hero__dots { left: 24px; bottom: 32px; }
  .hero__mobile-cta { display: flex; }

  /* About mobilný */
  .about { padding: 72px 0 90px; }
  .about__images { margin-top: 48px; padding-bottom: 0; }
  .about__photo--main { height: 300px; }
  .about__photo--accent { display: none; }

  /* Tím */
  .team { padding: 72px 0 80px; }
  .team__intro { margin-bottom: 48px; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-card__name { font-size: 1.15rem; }

  /* Služby */
  .services { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 2px; }

  /* Rezervácia */
  .booking { padding: 72px 0; }
  .booking__sub { margin-top: -20px; }

  /* Cenník */
  .pricing { padding: 72px 0; }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .pricing__grid .pricing__card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* E-shop */
  .eshop { padding: 72px 0; }
  .eshop__deco { display: none; }

  /* Kontakt */
  .contact { padding: 64px 0; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  /* Container */
  .container { padding: 0 20px; }

  .btn--lg { padding: 16px 38px; font-size: 13px; }
  .section-title { margin-bottom: 36px; }

  /* Schovat mobilné CTA pri scrollnutí na rezervaciu */
  body.at-booking .hero__mobile-cta { opacity: 0; pointer-events: none; }
}

/* ========================
   BREAKPOINT: 480px
   ======================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__eyebrow { font-size: 10px; }
  .hero__title { font-size: 2.4rem; }
  .hero__slogan { font-size: 0.9rem; }
  .about__heading { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .contact__phone { font-size: 1.4rem; }
  .booking__phone { font-size: 1.2rem; }
  .team__grid { grid-template-columns: 1fr; }
  .team-card__name { font-size: 1.1rem; }
}

/* ========================
   BR UTILITY
   ======================== */
.br-desktop { display: inline; }
@media (max-width: 768px) {
  .br-desktop { display: none; }
}
