/* =========================================================
   Natáša Novotná - Pedikúra · Manikúra
   Vanilla CSS, mobile-first, hybrid 08 + 09 paleta
   ========================================================= */

/* --- 0. Skip link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --- 1. Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* --- 2. Tokens --- */
:root {
  /* Paleta 09 - Mätová (čistá) */
  --bg-primary:   #F2EEE6;   /* ľan paleta 09 */
  --bg-secondary: #FAF6EE;   /* svetlejší ľan pre striedanie */
  --accent:       #BDD4CC;   /* mätová paleta 09 */
  --accent-deep:  #4A7468;   /* hlbšia mäta — WCAG AA kontrast (4.56:1 na ľane) */
  --neutral:      #BDD4CC;   /* accent ako neutrálny doplnok */
  --text:         #1E3028;   /* tmavá zelenkastá paleta 09 */
  --text-muted:   #5A6B62;   /* zmäkčená zelenkastá */
  --line:         rgba(30, 48, 40, 0.10);
  --footer-bg:    #1E3028;
  --footer-text:  #F2EEE6;

  /* Typografia */
  --font-heading: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  600ms;
}

/* --- 3. Base typografia --- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  background: var(--bg-primary);
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
em { font-style: italic; color: var(--accent-deep); }
p  { color: var(--text); }
small { font-size: 0.875em; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- 4. Layout --- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-3); }
section { padding: var(--space-6) 0; }
.bg-primary   { background: var(--bg-primary); }
.bg-secondary { background: var(--bg-secondary); }

/* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--text);
  color: var(--bg-primary);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.btn:hover { background: #000; transform: translateY(-1px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn__arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--accent); border-color: var(--accent-deep); }

/* --- 6. Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 238, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.875rem var(--space-3);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transition: transform 600ms var(--ease);
}
.brand__name {
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  background-image: linear-gradient(90deg, var(--accent-deep), var(--accent-deep));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color 600ms var(--ease), background-size 700ms var(--ease);
}
.brand__sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
  transition: letter-spacing 600ms var(--ease), color 600ms var(--ease);
}
.brand:hover .brand__name {
  color: var(--accent-deep);
  background-size: 100% 1px;
}
.brand:hover .brand__sub {
  letter-spacing: 0.22em;
  color: var(--accent-deep);
}
.nav { display: none; gap: var(--space-3); align-items: center; }
.nav a {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--dur) var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav a.is-active::after,
.nav a:hover::after { transform: scaleX(1); }
.nav .nav__cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav .nav__cta::after { display: none; }
.nav .nav__cta:hover { background: var(--accent-deep); color: var(--bg-primary); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  margin-right: -8px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: var(--space-2) var(--space-3) var(--space-3);
  border-top: 1px solid var(--line);
  background: var(--bg-primary);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 0.875rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mobile-menu__cta {
  margin-bottom: var(--space-2);
  padding: 0.875rem 1.25rem;
  background: var(--text);
  color: var(--bg-primary);
  border-radius: 999px;
  border-bottom: 0;
  text-align: center;
  font-weight: 500;
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* --- 7. Hero (full-bleed immersive) --- */
.hero--immersive {
  position: relative;
  min-height: clamp(480px, 100svh, 820px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .hero--immersive { align-items: flex-end; min-height: clamp(580px, 90vh, 820px); }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0) scale(1.02);
  animation: heroDrift 24s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: translateZ(0) scale(1.02); }
  to   { transform: translateZ(0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,38,30,0.25) 0%, rgba(20,38,30,0.55) 45%, rgba(20,38,30,0.75) 100%);
}
@media (min-width: 768px) {
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(30,48,40,0.30) 0%, rgba(30,48,40,0.55) 60%, rgba(30,48,40,0.85) 100%),
      linear-gradient(90deg, rgba(30,48,40,0.35) 0%, rgba(30,48,40,0) 60%);
  }
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero__copy { max-width: 720px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.875rem;
  margin-bottom: var(--space-3);
}
.hero__eyebrow-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--accent);
}
.hero__copy .eyebrow { color: rgba(255,255,255,0.78); }
.hero h1 {
  color: #FFFFFF;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.hero h1 em {
  font-size: 1.18em;
  color: var(--accent);
}
.hero__sub {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-4);
  white-space: nowrap;
}
.btn--invert {
  background: #FFFFFF;
  color: var(--text);
}
.btn--invert:hover {
  background: var(--accent);
  color: var(--text);
}
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 90px;
  display: block;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero__content { padding-bottom: 200px; padding-top: 160px; }
  .hero__wave { height: 110px; }
  .hero__sub { font-size: 0.95rem; }
}

/* --- 7b. Trust bar --- */
.trust-bar { padding: var(--space-4) 0; border-bottom: 1px solid var(--line); }
.trust-bar__wrap {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.5rem 0;
}
.trust-chip svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--accent-deep);
}
.trust-chip > div { display: flex; flex-direction: column; line-height: 1.2; }
.trust-chip__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-chip__value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 2px;
}
@media (min-width: 768px) {
  .trust-bar__wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

/* --- 11b. Mid-page CTA band --- */
.cta-band {
  background: var(--text);
  color: var(--bg-primary);
  padding: var(--space-5) 0;
}
.cta-band__wrap {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  align-items: center;
}
.cta-band .eyebrow { color: var(--accent); margin-bottom: 0.5rem; }
.cta-band h2 {
  color: var(--bg-primary);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: var(--space-1);
}
.cta-band h2 em { color: var(--accent); }
.cta-band p { color: rgba(248, 246, 240, 0.78); font-size: 0.98rem; }
@media (min-width: 768px) {
  .cta-band__wrap {
    grid-template-columns: 1fr auto;
    gap: var(--space-5);
  }
}

/* --- 8. Section heading --- */
.section-head { max-width: 720px; margin-bottom: var(--space-5); }
.section-head .eyebrow { margin-bottom: 0.75rem; }
.section-head p { color: var(--text-muted); margin-top: var(--space-2); font-size: 1.05rem; }

/* --- 9. Služby (4-card grid) --- */
.services-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-3);
  background: var(--bg-primary);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: inherit;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-2px); border-color: var(--accent-deep); background: var(--bg-secondary); }
.service-card:hover .service-card__link span { transform: translateX(4px); }
.service-card__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-deep);
  margin-bottom: var(--space-1);
}
.service-card h3 { margin-bottom: var(--space-1); }
.service-card p  { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.service-card__link {
  margin-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
}
.service-card__link span { transition: transform var(--dur) var(--ease); }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- 10. Pre koho (3-col edukatívna) --- */
.audience-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.audience-item__icon {
  width: 44px; height: 44px;
  color: var(--accent-deep);
  margin-bottom: var(--space-2);
}
.audience-item h3 { margin-bottom: var(--space-1); }
.audience-item p { color: var(--text-muted); font-size: 0.98rem; }
@media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); } }

/* --- 11. Ako prebieha (4 kroky) --- */
.steps {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.step { padding-top: var(--space-3); border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* --- 12. O mne (split image+text) --- */
.about-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: center;
}
.about__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.about__copy h2 { margin-bottom: var(--space-3); }
.about__copy p  { margin-bottom: var(--space-2); color: var(--text); }
.about__copy p:last-of-type { margin-bottom: 0; }
/* Brands marquee (sprava doľava infinite scroll) */
.brands-marquee {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-marquee__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 100px, black calc(100% - 100px), transparent);
          mask-image: linear-gradient(to right, transparent 0, black 100px, black calc(100% - 100px), transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: marqueeScroll 90s linear infinite;
}
@media (max-width: 767px) {
  .marquee__track { animation-duration: 38s; }
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__logo {
  flex-shrink: 0;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(0.3);
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.marquee__logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}
.marquee__logo[src*="gehwol"] { height: 64px; max-width: 140px; }
.marquee__logo[src*="podopharm"] { height: 54px; max-width: 240px; }
@media (min-width: 768px) {
  .marquee__logo { height: 56px; max-width: 240px; }
  .marquee__logo[src*="gehwol"] { height: 88px; max-width: 190px; }
  .marquee__logo[src*="podopharm"] { height: 70px; max-width: 300px; }
}
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (min-width: 768px) {
  .marquee__track { gap: 4rem; }
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-5); }
}

/* --- 13. Priestor (2x2 photo grid) --- */
.studio-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}
.studio-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  cursor: zoom-in;
  transition: box-shadow var(--dur) var(--ease);
}
.studio-tile.is-portrait  { aspect-ratio: 3 / 4; }
.studio-tile.is-landscape { aspect-ratio: 16 / 9; }
.studio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform, filter;
  transform: translateZ(0) scale(1);
  transition: transform 3000ms cubic-bezier(0.22, 1, 0.36, 1) !important,
              filter 3000ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.studio-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,48,40,0) 50%, rgba(30,48,40,0.32) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.studio-tile:hover {
  box-shadow: 0 18px 44px rgba(30, 48, 40, 0.18);
}
.studio-tile:hover img,
.studio-tile:focus-within img {
  transform: translateZ(0) scale(1.03) !important;
  filter: saturate(1.02) !important;
}
.studio-tile:hover::after { opacity: 1; }
@media (min-width: 640px) {
  .studio-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
}

/* --- 14. Recenzie --- */
.reviews-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.review {
  padding: var(--space-3);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}
.review__stars { color: var(--accent-deep); letter-spacing: 0.15em; margin-bottom: var(--space-1); font-size: 0.95rem; }
.review__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.review__author { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.04em; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- 14b. Pred prvou návštevou --- */
.first-visit__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.first-visit__item {
  padding: var(--space-3);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.first-visit__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
  display: block;
}
.first-visit__item h3 { margin-bottom: 0.5rem; }
.first-visit__item p { color: var(--text-muted); font-size: 0.95rem; }
.first-visit__item p em {
  font-style: italic;
  color: var(--accent-deep);
  background: rgba(189, 212, 204, 0.18);
  padding: 0 0.25rem;
  border-radius: 3px;
}
@media (min-width: 768px) { .first-visit__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }

/* --- 15. FAQ --- */
.faq { max-width: 760px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: var(--space-2) 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  position: relative;
  padding: 0.75rem 2.5rem 0.75rem 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--accent-deep);
  border-bottom: 1.5px solid var(--accent-deep);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details[open] summary { color: var(--accent-deep); }
.faq__answer {
  margin-top: var(--space-2);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 60ch;
}

/* --- 16. Kontakt --- */
.contact-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.contact__info p { margin-bottom: 0.5rem; color: var(--text); }
.contact__info p strong { font-weight: 500; }
.contact__info .note { color: var(--text-muted); font-size: 0.9rem; font-style: italic; }
.contact__cta { margin-top: var(--space-3); }
.contact__links {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.contact__links a {
  color: var(--accent-deep);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.contact__links a:hover { border-bottom-color: var(--accent-deep); }
.contact__links-sep { color: var(--line); }
.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-5); align-items: start; }
}

/* --- 17. Footer --- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-5) 0 var(--space-4);
}
.site-footer__inner {
  display: grid;
  gap: var(--space-2);
  font-size: 0.9rem;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem 0;
  color: var(--accent);
  transition: color var(--dur) var(--ease);
}
.site-footer a:hover { color: #fff; }
.site-footer p { color: var(--footer-text); }
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }
  .site-footer__inner p:nth-child(3) { text-align: right; }
}

/* --- 18. Back-to-top --- */
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg-primary);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

/* --- 19. Reveal on scroll --- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   CENNIK STRÁNKA
   ========================================================= */
.pricing-hero { padding-top: var(--space-5); padding-bottom: var(--space-4); }
.pricing-hero h1 { margin-bottom: var(--space-3); margin-top: 0.5rem; }
.pricing-hero__lede { color: var(--text-muted); max-width: 60ch; font-size: 1.05rem; margin-bottom: var(--space-2); }
.pricing-hero__valid { color: var(--text-muted); font-size: 0.95rem; }

/* =========================================================
   CENNIK — Variant D (sidebar nav + content)
   ========================================================= */
.pricing-section { padding-top: var(--space-3); padding-bottom: var(--space-6); }
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
}

/* SIDEBAR */
.pricing-layout > * { min-width: 0; }
.pricing-sidebar {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: 0 1px 2px rgba(30, 48, 40, 0.04);
  overflow: hidden;
}
.pricing-sidebar__title {
  display: none;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  padding: 0 0.625rem;
}
.pricing-sidebar__list {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.pricing-sidebar__list::-webkit-scrollbar { height: 4px; }
.pricing-sidebar__list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.pricing-sidebar__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--text);
  font-size: 0.9rem;
  border: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pricing-sidebar__list a:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.pricing-sidebar__list a.is-active {
  background: var(--text);
  color: var(--bg-primary);
  border-color: var(--text);
}
.pricing-sidebar__list a.is-active .pricing-sidebar__num { color: var(--accent); }
.pricing-sidebar__num {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .pricing-layout { grid-template-columns: 260px 1fr; gap: var(--space-5); }
  .pricing-sidebar {
    position: sticky;
    top: 90px;
    padding: var(--space-3);
  }
  .pricing-sidebar__title { display: block; }
  .pricing-sidebar__list {
    flex-direction: column;
    gap: 0.25rem;
    overflow: visible;
  }
  .pricing-sidebar__list a {
    padding: 0.625rem 0.875rem;
    border: 0;
    border-radius: var(--radius-sm);
    width: 100%;
  }
  .pricing-sidebar__list a:hover { background: var(--bg-secondary); border: 0; }
  .pricing-sidebar__list a.is-active {
    background: var(--bg-secondary);
    color: var(--accent-deep);
    border: 0;
    font-weight: 500;
  }
  .pricing-sidebar__list a.is-active .pricing-sidebar__num { color: var(--accent-deep); }
}

/* CONTENT */
.pricing-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pricing-cat {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  scroll-margin-top: 90px;
  box-shadow: 0 1px 2px rgba(30, 48, 40, 0.04);
}
.pricing-cat__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}
.pricing-cat__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent-deep);
}
.pricing-cat__title { font-size: 1.5rem; line-height: 1.2; }
.pricing-cat__list { display: flex; flex-direction: column; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  padding: 0.875rem 0;
}
.pricing-row + .pricing-row { border-top: 1px solid var(--line); }
.pricing-row__name { color: var(--text); flex: 1; }
.pricing-row__name small { display: block; margin-top: 2px; color: var(--text-muted); font-size: 0.85rem; }
.pricing-row__label { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.pricing-row__price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  white-space: nowrap;
  color: var(--text);
}
.pricing-row__price small { font-size: 0.7em; color: var(--text-muted); margin-right: 2px; }
.pricing-cat__foot {
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.pricing-cta { text-align: center; padding: var(--space-6) 0; }
.pricing-cta p { color: var(--text-muted); margin-bottom: var(--space-3); font-size: 1.05rem; }

/* =========================================================
   MAP PLACEHOLDER (GDPR click-to-load)
   ========================================================= */
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: var(--space-4) var(--space-3);
  background: var(--bg-secondary);
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease);
}
.map-placeholder:hover { background: var(--accent); }
.map-placeholder__pin {
  width: 36px; height: 36px;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder__pin svg { width: 100%; height: 100%; }
.map-placeholder__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}
.map-placeholder__sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 30ch;
  line-height: 1.5;
}
.map-placeholder__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-1);
  padding: 0.65rem 1.25rem;
  background: var(--text);
  color: var(--bg-primary);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   STICKY MOBILE CALL BAR (mobile only, full-width)
   ========================================================= */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: var(--text);
  color: var(--bg-primary);
  font-weight: 500;
  font-size: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 24px rgba(30, 48, 40, 0.18);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.mobile-call-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-call-bar strong { font-weight: 600; }
.mobile-call-bar.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
body { padding-bottom: 64px; }
@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================================
   STATUS BADGE (Otvorené teraz / Zatvorené)
   ========================================================= */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--text);
  vertical-align: middle;
}
.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-deep);
}
.status-badge.is-open {
  background: rgba(127, 161, 151, 0.20);
  color: #2F5048;
}
.status-badge.is-open::before { background: #2F7A52; box-shadow: 0 0 0 3px rgba(47,122,82,0.20); }
.status-badge.is-closed {
  background: rgba(180, 110, 110, 0.18);
  color: #6E3838;
}
.status-badge.is-closed::before { background: #A04848; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  border: 0;
  background: rgba(20, 28, 24, 0.94);
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
}
.lightbox::backdrop { background: rgba(20, 28, 24, 0.85); }
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
  border-radius: 50%;
  transition: background-color var(--dur) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,0.20); }
.lightbox__close svg { width: 22px; height: 22px; }

/* =========================================================
   STAGGER ANIMATION (postupné zjavenie)
   ========================================================= */
.services-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.services-grid .fade-up:nth-child(2) { transition-delay: 80ms; }
.services-grid .fade-up:nth-child(3) { transition-delay: 160ms; }
.services-grid .fade-up:nth-child(4) { transition-delay: 240ms; }
.audience-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.audience-grid .fade-up:nth-child(2) { transition-delay: 100ms; }
.audience-grid .fade-up:nth-child(3) { transition-delay: 200ms; }
.steps .fade-up:nth-child(1) { transition-delay: 0ms; }
.steps .fade-up:nth-child(2) { transition-delay: 80ms; }
.steps .fade-up:nth-child(3) { transition-delay: 160ms; }
.steps .fade-up:nth-child(4) { transition-delay: 240ms; }
.studio-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.studio-grid .fade-up:nth-child(2) { transition-delay: 100ms; }
.studio-grid .fade-up:nth-child(3) { transition-delay: 200ms; }
.studio-grid .fade-up:nth-child(4) { transition-delay: 300ms; }
.reviews-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.reviews-grid .fade-up:nth-child(2) { transition-delay: 100ms; }
.reviews-grid .fade-up:nth-child(3) { transition-delay: 200ms; }
.trust-bar .fade-up:nth-child(1) { transition-delay: 0ms; }
.trust-bar .fade-up:nth-child(2) { transition-delay: 100ms; }
.trust-bar .fade-up:nth-child(3) { transition-delay: 200ms; }

/* =========================================================
   ERROR (404)
   ========================================================= */
.error-page { padding: var(--space-7) 0 var(--space-6); text-align: center; }
.error-page__wrap { max-width: 640px; }
.error-page h1 { margin: 0.5rem 0 var(--space-3); }
.error-page p { color: var(--text-muted); margin-bottom: var(--space-4); font-size: 1.05rem; }
.error-page__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

/* =========================================================
   LEGAL (privacy.html)
   ========================================================= */
.legal { padding-top: var(--space-5); padding-bottom: var(--space-6); }
.legal__wrap { max-width: 760px; }
.legal h1 { margin: 0.5rem 0 var(--space-3); }
.legal__lede { color: var(--text-muted); margin-bottom: var(--space-4); }
.legal h2 {
  font-size: 1.4rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}
.legal p { color: var(--text); margin-bottom: var(--space-2); line-height: 1.65; }
.legal a { color: var(--accent-deep); text-decoration: underline; }
.legal a:hover { color: var(--text); }
.legal__list {
  list-style: disc;
  margin: 0 0 var(--space-2) var(--space-3);
}
.legal__list li { margin-bottom: 0.4rem; color: var(--text); }
.legal__contact { margin-top: var(--space-4); color: var(--text-muted); font-size: 0.95rem; }

/* ── Badge: Obľúbená ── */
.badge-popular {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.15em 0.65em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--maeta-deep);
  background: var(--maeta);
  border-radius: 2em;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  animation: badgePulse 3s var(--ease) infinite;
}

.badge-popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: badgeShimmer 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes badgeShimmer {
  0%   { left: -60%; }
  40%  { left: 120%; }
  100% { left: 120%; }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(189,212,204,0); }
  50%       { box-shadow: 0 0 0 4px rgba(189,212,204,0.45); }
}

@media (prefers-reduced-motion: reduce) {
  .badge-popular,
  .badge-popular::after { animation: none; }
}
