/* ============================================================
   M CLINIC v3 — style.css
   Palette:  Navy #0B1D3A · Gold #D4AF37 · Ivory #F2F2F2
   Fonts:    Cinzel (display) + Montserrat (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1D3A;
  --navy2: #102852;
  --gold: #D4AF37;
  --gold2: #b8962e;
  --gold-soft: rgba(212,175,55,0.14);
  --ivory: #F4F4F2;
  --white: #ffffff;
  --gray: #5f6470;
  --gray-soft: #8a8f99;
  --text: #0f1626;
  --border: #e2e2e6;

  --font-head: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  --radius: 980px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 20px rgba(11,29,58,0.08);
  --shadow-lg: 0 16px 50px rgba(11,29,58,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

h1, h2, h3 { font-family: var(--font-head); letter-spacing: 0.03em; line-height: 1.18; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
p { font-weight: 300; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 10px; left: 10px; width: auto; height: auto;
  clip: auto; z-index: 2000; background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.btn-block { display: flex; width: 100%; }

/* ── SECTIONS ── */
.section { padding: 92px 0; position: relative; }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--navy); color: #fff; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; width: 26px; height: 1px; background: var(--gold); opacity: 0.6;
}
.section-title { margin-bottom: 14px; }
.section-title--light { color: #fff; }
.section-desc { color: var(--gray); font-weight: 400; }
.section--dark .section-desc { color: rgba(255,255,255,0.7); }
.center-cta { text-align: center; margin-top: 48px; }

/* ══ NAVIGATION ══ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(11,29,58,0.06);
  transition: var(--transition);
}
#header.scrolled { background: rgba(255,255,255,0.96); box-shadow: 0 1px 24px rgba(11,29,58,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.nav-logo { flex-shrink: 0; background: #fff; border-radius: 50%; padding: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.14); }
.logo-img { width: 52px; height: 52px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.03em; color: var(--text);
  position: relative; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold2); }
.nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold);
}
.nav-cta {
  background: var(--navy); color: #fff !important; padding: 10px 22px; border-radius: var(--radius);
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.76rem !important;
}
.nav-cta:hover { background: var(--navy2); }
.nav-phone { font-weight: 600; color: var(--navy); font-size: 0.9rem; display: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--navy); transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══ */
.hero {
  position: relative; padding: 172px 0 100px; min-height: 640px; overflow: hidden;
  display: flex; align-items: center;
  color: #fff;
  background-color: #0B1D3A;
  background-image:
    linear-gradient(125deg, rgba(11,29,58,0.94) 0%, rgba(11,29,58,0.78) 45%, rgba(11,29,58,0.55) 100%),
    url('/assets/img/hero.jpg');
  background-position: center, center 35%;
  background-size: cover, cover;
  background-repeat: no-repeat;
}
@supports (background-image: image-set(url("/assets/img/hero.webp") type("image/webp"))) {
  .hero {
    background-image:
      linear-gradient(125deg, rgba(11,29,58,0.94) 0%, rgba(11,29,58,0.78) 45%, rgba(11,29,58,0.55) 100%),
      image-set(url('/assets/img/hero.webp') type('image/webp'), url('/assets/img/hero.jpg') type('image/jpeg'));
  }
}
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,175,55,0.4); padding: 7px 16px;
  border-radius: var(--radius); margin-bottom: 26px;
}
.hero-title { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.hero-title-main { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; }
.hero-title-sub { font-family: var(--font-body); font-weight: 300; font-size: clamp(1rem, 2.4vw, 1.5rem); color: var(--gold); letter-spacing: 0.08em; }
.hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 32px; }
.hero-desc strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hp-ic { width: 18px; height: 18px; color: var(--gold); }

/* ══ TRUST BAR ══ */
.trust-bar { background: var(--navy2); border-top: 1px solid rgba(255,255,255,0.06); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 26px 24px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.86rem; font-weight: 500; }
.trust-ic { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

/* ══ SERVICE CARDS ══ */
#sluzby .section-header { max-width: 700px; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: #f6f6f5; border: 1px solid rgba(11,29,58,0.04);
  border-radius: 14px; padding: 34px 30px 30px; transition: var(--transition);
  display: flex; flex-direction: column; min-height: 392px; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(11,29,58,0.09); border-color: rgba(11,29,58,0.02); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: #f3eedf; display: grid; place-items: center; margin-bottom: 22px; }
.service-icon svg { width: 25px; height: 25px; color: var(--gold2); }
.service-number { position: absolute; top: 20px; right: 28px; font-family: var(--font-head); font-size: 2.15rem; line-height: 1; color: rgba(11,29,58,0.08); }
.service-card h3, .service-card-title { font-size: 1.25rem; margin-bottom: 14px; color: var(--navy); }
.service-card p { color: #676d79; font-size: 0.94rem; line-height: 1.72; margin-bottom: 22px; }
.service-list { list-style: none; display: grid; gap: 8px; margin: 0 0 30px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; color: #202838; font-size: 0.88rem; font-weight: 600; line-height: 1.45; }
.service-list li::before { content: ''; width: 12px; height: 2px; background: var(--gold); margin-top: 10px; flex: 0 0 12px; opacity: 0.8; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; width: max-content; margin-top: auto;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold2);
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }
.service-card--featured { background: var(--navy); color: #fff; border-color: var(--navy); }
.service-card--featured h3, .service-card--featured .service-card-title { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,0.74); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.78); }
.service-card--featured .service-number { color: rgba(255,255,255,0.18); }
.service-card--featured .service-icon { background: rgba(212,175,55,0.18); }
.service-card--featured .service-link { color: var(--gold); }
.service-badge {
  display: inline-flex; align-items: center; align-self: flex-start; background: var(--gold); color: var(--navy);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius); margin: 4px 0 14px;
}
.service-card--warm { background: #fbf6ea; border-color: rgba(212,175,55,0.08); }

/* ══ ABOUT ══ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-mark { display: grid; place-items: center; }
.about-logo-img { max-width: 360px; width: 100%; }
.about-content .section-label { margin-bottom: 14px; }
.about-lead { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); margin: 14px 0 18px; line-height: 1.4; }
.about-content p { color: var(--gray); margin-bottom: 14px; }
.about-content p strong { color: var(--navy); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 28px; }
.value-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.v-ic { width: 18px; height: 18px; color: var(--gold2); }

/* ══ VALUES GRID ══ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 26px; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-soft); display: grid; place-items: center; margin-bottom: 16px; }
.value-card-icon svg { width: 28px; height: 28px; color: var(--gold2); }
.value-card h3 { color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 0.92rem; }

/* ══ TEAM ══ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px 26px 30px; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 22px; background: var(--ivory);
  border: 4px solid #fff; box-shadow: 0 0 0 2px var(--gold), 0 12px 30px rgba(11,29,58,0.12);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.team-info h3 { color: var(--navy); margin-bottom: 4px; }
.team-role { display: block; color: var(--gold2); font-size: 0.84rem; font-weight: 600; margin-bottom: 8px; }
.team-location { display: inline-flex; align-items: center; gap: 5px; color: var(--gray-soft); font-size: 0.8rem; margin-bottom: 12px; justify-content: center; }
.loc-ic { width: 15px; height: 15px; }
.team-info p { color: var(--gray); font-size: 0.9rem; }

/* ══ GALLERY ══ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 920px; margin: 0 auto; }
.gallery-pair { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow); }
.gallery-pair__images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-pair__side { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--ivory); }
.gallery-pair__side img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.gallery-pair__label {
  position: absolute; top: 10px; left: 10px; background: rgba(11,29,58,0.86); color: #fff;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius);
}
.gallery-pair__label--after { background: var(--gold); color: var(--navy); }
.gallery-pair__caption { text-align: center; margin-top: 14px; font-size: 0.92rem; color: var(--gray); }
.gallery-pair__caption a { color: var(--gold2); font-weight: 600; }
.gallery-disclaimer { display: flex; align-items: flex-start; gap: 10px; max-width: 720px; margin: 40px auto 0; font-size: 0.86rem; color: var(--gray); background: var(--gold-soft); padding: 16px 20px; border-radius: var(--radius-sm); }
.gd-ic { width: 20px; height: 20px; color: var(--gold2); flex-shrink: 0; }

/* ══ HOMEPAGE GALLERY SCROLLER ══ */
.gallery-scroll { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 6px 0 16px; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.gallery-scroll:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.gallery-scroll::-webkit-scrollbar { height: 8px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(11,29,58,0.06); border-radius: 8px; }
.gallery-scroll-track { display: flex; gap: 26px; width: max-content; padding: 4px max(24px, calc((100vw - 1180px) / 2)); }
.gallery-pair--scroll { flex: 0 0 440px; max-width: 82vw; margin: 0; scroll-snap-align: start; }
.gallery-scroll-hint { text-align: center; color: var(--gray-soft); font-size: 0.82rem; margin-top: 18px; }
@media (max-width: 560px) {
  .gallery-pair--scroll { flex-basis: 300px; }
  .gallery-scroll-track { gap: 16px; }
}

/* ══ PATIENT JOURNEY ══ */
.journey { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.journey-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 28px 24px; }
.journey-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 10px; }
.journey-step h3 { color: #fff; margin-bottom: 8px; }
.journey-step p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ══ REVIEWS ══ */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; color: var(--gold); }
.review-text { color: var(--text); font-size: 0.96rem; font-weight: 400; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-head); }
.review-author strong { display: block; color: var(--navy); font-size: 0.92rem; }
.review-date { font-size: 0.8rem; color: var(--gray-soft); }

/* ══ FAQ ══ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.section--ivory .faq-item, .page-body .faq-item { background: #fff; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gold2); font-weight: 400; transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--gray); font-size: 0.94rem; }

/* ══ CTA BAND ══ */
.cta-band { background: var(--navy); color: #fff; padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band-eyebrow { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 10px; }
.cta-band-title { color: #fff; max-width: 560px; }
.cta-band-desc { color: rgba(255,255,255,0.72); max-width: 520px; margin-top: 12px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }

/* ══ BOOKING MODAL ══ */
body.modal-open { overflow: hidden; }
.booking-modal[hidden] { display: none; }
.booking-modal { position: fixed; inset: 0; z-index: 2200; display: grid; place-items: center; padding: 24px; }
.booking-modal__backdrop {
  position: absolute; inset: 0; background: rgba(11,29,58,0.52);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.booking-modal__panel {
  position: relative; z-index: 1; width: min(100%, 430px); background: #fff; border-radius: 18px;
  padding: 46px 34px 34px; box-shadow: 0 28px 80px rgba(7,17,35,0.28);
  text-align: center;
}
.booking-modal__close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; border-radius: 50%;
  display: grid; place-items: center; background: var(--ivory); color: var(--gray); cursor: pointer;
  font-size: 1.7rem; line-height: 1; transition: var(--transition);
}
.booking-modal__close:hover { background: var(--gold-soft); color: var(--navy); }
.booking-modal__icon {
  width: 62px; height: 62px; margin: 0 auto 22px; border-radius: 16px; background: #f6f0e2;
  display: grid; place-items: center; color: var(--gold2);
}
.booking-modal__icon svg { width: 30px; height: 30px; }
.booking-modal__title { color: var(--navy); font-size: 1.45rem; margin-bottom: 10px; }
.booking-modal__desc { color: var(--gray); font-size: 0.96rem; font-weight: 400; margin-bottom: 26px; }
.booking-modal__locations { display: grid; gap: 12px; text-align: left; }
.booking-modal__location {
  display: grid; gap: 8px; padding: 20px 22px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #f8f8f8; transition: var(--transition);
}
.booking-modal__location:hover { border-color: rgba(212,175,55,0.7); background: #fff; box-shadow: var(--shadow); transform: translateY(-1px); }
.booking-modal__branch {
  color: var(--gray); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.booking-modal__phone { color: var(--navy); font-family: var(--font-head); font-size: 1.6rem; line-height: 1; letter-spacing: 0.03em; }

/* ══ FOOTER ══ */
.footer { background: #08152b; color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { width: 80px; height: 80px; border-radius: 50%; background: #fff; padding: 6px; }
.footer-tagline { font-family: var(--font-head); color: var(--gold); font-style: italic; margin: 14px 0 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-social svg { width: 17px; height: 17px; }
.footer-links h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--gold); }
.footer-links li { font-size: 0.9rem; }
.footer-nap address { font-style: normal; font-size: 0.9rem; line-height: 1.9; }
.footer-nap-name { color: #fff; font-weight: 600; margin-bottom: 6px; }
.footer-nap a:hover { color: var(--gold); }
.footer-ic { width: 15px; height: 15px; color: var(--gold); display: inline; vertical-align: -2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--gold); }

/* ══ BACK TO TOP ══ */
.back-to-top { position: fixed; bottom: 26px; right: 26px; z-index: 900; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); box-shadow: var(--shadow-lg); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* ══ PAGE HERO (inner pages) ══ */
.page-hero {
  padding: 150px 0 60px; color: #fff; text-align: center;
  background:
    radial-gradient(900px 360px at 80% -20%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(160deg, #0B1D3A, #102852);
}
.page-hero-eyebrow { color: var(--gold); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero-eyebrow a { color: var(--gold); }
.page-hero-title { color: #fff; max-width: 880px; margin: 0 auto; }
.page-hero-lead { color: rgba(255,255,255,0.78); max-width: 640px; margin: 18px auto 0; font-size: 1.04rem; }
.page-hero--service, .page-hero--post { text-align: left; }
.page-hero--service .page-hero-title, .page-hero--service .page-hero-lead,
.page-hero--post .page-hero-title { margin-left: 0; margin-right: 0; }
.page-hero-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(212,175,55,0.18); display: grid; place-items: center; margin-bottom: 20px; }
.page-hero-icon svg { width: 32px; height: 32px; color: var(--gold); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ══ BREADCRUMBS ══ */
.breadcrumbs { background: var(--ivory); border-bottom: 1px solid var(--border); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 0; font-size: 0.82rem; color: var(--gray); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--gray-soft); }
.breadcrumbs a:hover { color: var(--gold2); }
.breadcrumbs li[aria-current="page"] { color: var(--navy); font-weight: 600; }

/* ══ PAGE BODY / PROSE ══ */
.page-body .prose, .post-body .prose { font-size: 1.02rem; color: var(--text); }
.prose h2 { color: var(--navy); margin: 36px 0 14px; font-size: 1.5rem; }
.prose h3 { color: var(--navy); margin: 26px 0 10px; }
.prose p { color: #2a3140; margin-bottom: 16px; font-weight: 400; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; color: #2a3140; }
.prose a { color: var(--gold2); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 3px solid var(--gold); background: var(--ivory); padding: 16px 22px; margin: 22px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--navy); }
.prose strong { color: var(--navy); }
.page-body h2 { color: var(--navy); margin: 32px 0 12px; font-size: 1.4rem; }
.page-body p, .page-body li { color: #2a3140; font-weight: 400; }
.page-body ul { margin: 0 0 18px 22px; }
.page-body a { color: var(--gold2); font-weight: 600; }

/* ══ SERVICE DETAIL ══ */
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-detail-p { font-size: 1.04rem; color: #2a3140; font-weight: 400; margin-bottom: 16px; }
.service-detail-h2 { color: var(--navy); margin: 34px 0 16px; font-size: 1.5rem; }
.service-treatments, .service-benefits { list-style: none; display: grid; gap: 12px; }
.service-treatments li, .service-benefits li { display: flex; align-items: flex-start; gap: 10px; color: #2a3140; }
.tx-ic { width: 20px; height: 20px; color: var(--gold2); flex-shrink: 0; margin-top: 2px; }
.service-disclaimer { margin-top: 30px; font-size: 0.86rem; color: var(--gray); background: var(--ivory); padding: 14px 18px; border-radius: var(--radius-sm); border-left: 3px solid var(--gold); }
.service-detail-side { position: sticky; top: 100px; display: grid; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow); }
.side-card h3 { color: var(--navy); margin-bottom: 10px; }
.side-card > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.side-card .btn { margin-bottom: 10px; }
.side-card-hours { margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; font-size: 0.86rem; color: var(--gray); }
.side-card-hours strong { color: var(--navy); }
.side-card--services ul { list-style: none; display: grid; gap: 10px; }
.side-card--services a { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--navy); }
.side-card--services a:hover { color: var(--gold2); }
.li-ic { width: 14px; height: 14px; color: var(--gold2); }

/* ══ BLOG ══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-item[hidden] { display: none; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card__thumb { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: grid; place-items: center; overflow: hidden; }
.blog-card__thumb picture { width: 100%; height: 100%; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-card:hover .blog-card__img { transform: scale(1.035); }
.blog-card__ic { width: 46px; height: 46px; color: rgba(212,175,55,0.5); }
.blog-card__cat { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card__title { font-size: 1.12rem; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-card__title a:hover { color: var(--gold2); }
.blog-card__excerpt { color: var(--gray); font-size: 0.9rem; flex-grow: 1; margin-bottom: 16px; }
.blog-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.blog-card__date { font-size: 0.76rem; color: var(--gray-soft); }
.blog-card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.blog-card__link svg { width: 14px; height: 14px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.blog-filter { background: #fff; border: 1px solid var(--border); color: var(--gray); padding: 9px 18px; border-radius: var(--radius); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.blog-filter:hover { border-color: var(--navy); color: var(--navy); }
.blog-filter.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ══ POST ══ */
.post-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; color: rgba(255,255,255,0.8); font-size: 0.86rem; }
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.meta-ic { width: 16px; height: 16px; color: var(--gold); }
.post-cover { overflow: hidden; border-radius: var(--radius-md); margin: 0 0 34px; box-shadow: var(--shadow); background: var(--ivory); }
.post-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-service-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; margin: 36px 0 0; }
.post-service-cta-label { color: var(--gold2); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.post-service-cta h3 { color: var(--navy); margin: 6px 0 8px; }
.post-service-cta p { color: var(--gray); font-size: 0.92rem; max-width: 440px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.post-tag { background: var(--gold-soft); color: var(--gold2); font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius); }

/* ══ PRICE LIST ══ */
.price-search { position: relative; margin-bottom: 36px; }
.price-search input { width: 100%; padding: 16px 20px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.96rem; transition: var(--transition); }
.price-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.price-search-ic { display: none; }
.price-category { margin-bottom: 36px; }
.price-category-title { font-size: 1.3rem; color: var(--navy); padding-bottom: 12px; margin-bottom: 6px; border-bottom: 2px solid var(--gold); }
.price-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 4px; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.price-row[hidden] { display: none; }
.price-row span:first-child { color: var(--text); }
.price-row-value { color: var(--navy); font-weight: 600; white-space: nowrap; }
.price-empty { text-align: center; color: var(--gray); padding: 30px; }
.price-note { margin-top: 24px; font-size: 0.84rem; color: var(--gray); font-style: italic; }

/* ══ PHONE BOOKING ══ */
.booking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 860px; margin: 0 auto; }
.booking-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px 30px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.booking-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.booking-card--soon { background: var(--ivory); }
.booking-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 12px; border-radius: var(--radius); }
.booking-card-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; margin: 0 auto 16px; }
.booking-card-icon svg { width: 28px; height: 28px; color: var(--gold2); }
.booking-card h3 { color: var(--navy); margin-bottom: 12px; }
.booking-addr { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--gray); font-size: 0.88rem; margin-bottom: 14px; }
.booking-phone { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); letter-spacing: 0.02em; margin-bottom: 8px; }
.booking-phone:hover { color: var(--gold2); }
.booking-email { display: inline-flex; align-items: center; gap: 7px; color: var(--gray); font-size: 0.86rem; margin-bottom: 8px; }
.booking-email:hover { color: var(--gold2); }
.booking-hours { display: flex; align-items: flex-start; justify-content: center; gap: 7px; color: var(--gray); font-size: 0.88rem; margin-bottom: 22px; }
.hours-list { width: min(100%, 310px); min-width: 0; margin: 0; display: grid; gap: 4px; text-align: left; }
.hours-list div { display: grid; grid-template-columns: minmax(82px, auto) 1fr; gap: 12px; align-items: baseline; }
.hours-list dt { font-weight: 700; color: var(--navy); }
.hours-list dd { margin: 0; }
.hours-list--compact { width: 100%; }
.booking-card .cl-ic { width: 15px; height: 15px; }

/* ══ CONTACT ══ */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.contact-h2 { color: var(--navy); margin-bottom: 8px; }
.contact-sub { color: var(--gray); margin-bottom: 26px; font-size: 0.94rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { font-size: 0.86rem; font-weight: 600; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.94rem; background: #fff; transition: var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.form-consent { display: flex; align-items: flex-start; gap: 10px; }
.form-consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy); }
.form-consent label { font-size: 0.84rem; color: var(--gray); }
.form-consent a { color: var(--gold2); font-weight: 600; }
.form-status { font-size: 0.9rem; padding: 0; }
.form-status--info { color: var(--navy); background: var(--gold-soft); padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status--ok { color: #1c6b3a; background: #e6f4ec; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status--error { color: #a32020; background: #fbe8e8; padding: 12px 16px; border-radius: var(--radius-sm); }
.contact-line { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.94rem; color: var(--text); }
.cl-ic { width: 18px; height: 18px; color: var(--gold2); flex-shrink: 0; }
.contact-line a:hover { color: var(--gold2); }

/* ══ LOCATIONS ══ */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.location-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }
.location-map { position: relative; }
.location-map iframe { display: block; }
.location-soon-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 12px; border-radius: var(--radius); }
.location-card--soon .location-map iframe { filter: grayscale(0.4); opacity: 0.85; }
.location-info { padding: 24px; }
.location-info h3 { color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.loc-tag { font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: var(--gold-soft); color: var(--gold2); padding: 3px 9px; border-radius: var(--radius); }
.location-info address { font-style: normal; margin-bottom: 16px; }
.location-line { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; }
.location-line--hours { align-items: flex-start; }
.location-line a:hover { color: var(--gold2); }

/* ══ LEGAL ══ */
.legal-updated { margin-top: 30px; color: var(--gray-soft); font-size: 0.86rem; }

/* ══ COOKIE BANNER ══ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200;
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(11,29,58,0.28);
  padding: 22px 24px;
}
.cookie-banner__title { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.cookie-banner__text p:not(.cookie-banner__title) { font-size: 0.86rem; color: var(--gray); font-weight: 400; }
.cookie-banner__text a { color: var(--gold2); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__settings { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 14px; }
.cookie-options { border: 0; display: grid; gap: 10px; }
.cookie-opt { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--gray); cursor: pointer; }
.cookie-opt input { margin-top: 3px; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--navy); }
.cookie-opt input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.cookie-opt strong { color: var(--navy); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cookie-banner .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-cookie-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.82rem; color: inherit;
}
.footer-cookie-btn:hover { color: var(--gold); }
@media (max-width: 560px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; max-height: 82vh; overflow-y: auto; }
  .cookie-banner__actions .btn { flex: 1 1 auto; }
}

/* ══ ANIMATIONS ══ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 980px) {
  .services-grid, .team-grid, .values-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-mark { max-width: 320px; margin: 0 auto; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-side { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .journey { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px;
    box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform var(--transition);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 4px; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid, .locations-grid, .booking-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { width: 100%; }
  .trust-inner { justify-content: center; gap: 14px 26px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  /* long button labels (e.g. "Viac referencií na Facebooku") must wrap, not overflow */
  .btn { white-space: normal; text-align: center; }
  .booking-hours { flex-wrap: wrap; }
  .hours-list div { grid-template-columns: minmax(70px, auto) 1fr; gap: 8px; }
  .services-grid, .team-grid, .values-grid, .blog-grid, .gallery-grid, .journey { grid-template-columns: 1fr; }
  .about-values, .form-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 72px; }
  .page-hero { padding: 130px 0 48px; }
  .gallery-pair__caption { font-size: 0.84rem; }
}
