:root {
  --green: #0e512d;
  --green-dark: #08361f;
  --gold: #e3b22c;
  --gold-dark: #c99d00;
  --cream: #f6f4ec;
  --paper: #fffdf7;
  --text: #202331;
  --muted: #555966;
  --line: rgba(14, 81, 45, .10);
  --shadow: 0 18px 55px rgba(56, 44, 22, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,.025);
}
.container-site {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
}
.container-site.narrow { max-width: 980px; }

/* HEADER */
.site-header {
  position: relative;
  z-index: 20;
  background: rgba(246, 244, 236, .94);
}
.navbar { min-height: 128px; padding: 0; }
.navbar-brand { padding: 0; margin: 0; }
.logo-placeholder {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  position: relative;
  color: var(--green);
  font-size: 13px;
  line-height: 1.02;
  text-align: center;
  font-weight: 600;
  background: radial-gradient(circle, #fffefa 0 42%, #f0edda 68%, #d6d4ad 100%);
  box-shadow: inset 0 0 28px rgba(151, 149, 82, .28), 0 12px 32px rgba(0, 0, 0, .04);
}
.logo-placeholder strong { display: block; font-size: 15px; }
.logo-placeholder small { display: block; color: var(--gold); font-size: 10px; font-weight: 800; }
.logo-sun {
  position: absolute;
  left: 29px;
  top: 46px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px rgba(225, 181, 9, .45);
}

.nav-link {
  position: relative;
  padding: 8px 0 !important;
  color: #222635;
  font-size: 17px;
  font-weight: 600;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: .22s ease;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn {
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 23px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}
.btn-gold {
  min-width: 190px;
  color: #231e0d;
  background: var(--gold);
  box-shadow: 0 16px 28px rgba(225, 181, 9, .22);
}
.btn-gold:hover { background: var(--gold-dark); color: #231e0d; }
.btn-green {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 30px rgba(14, 81, 45, .18);
}
.btn-green:hover { color: #fff; background: var(--green-dark); }

/* HERO */
.hero-section {
  position: relative;
  min-height: 705px;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-placeholder {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto auto;
  width: 100%;
  height: 705px;
  background:
    linear-gradient(90deg,
      rgba(246,244,236,1) 0%,
      rgba(246,244,236,.96) 27%,
      rgba(246,244,236,.72) 42%,
      rgba(246,244,236,.22) 62%,
      rgba(246,244,236,.06) 100%),
    linear-gradient(180deg,
      rgba(246,244,236,.55) 0%,
      rgba(246,244,236,0) 38%,
      rgba(246,244,236,.72) 100%),
    url("hero-herna.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-bg-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 42%, rgba(255,255,255,.10) 0 12%, transparent 34%),
    radial-gradient(ellipse at 50% 100%, rgba(225,181,9,.12), transparent 42%);
}
.hero-bg-placeholder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246,244,236,0), rgba(246,244,236,1));
}
.hero-bg-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-grid {
  position: relative;
  min-height: 705px;
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  align-items: center;
  padding-bottom: 92px;
}
.hero-copy {
  position: relative;
  max-width: 620px;
  padding-top: 18px;
}
h1, h2, h3 {
  margin: 0;
  color: var(--green);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
}
h1 {
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: .94;
  letter-spacing: -.03em;
  text-wrap: balance;
  max-width: 10.8ch;
}
h1 .hero-line {
  display: block;
}
h1 .hero-line + .hero-line {
  margin-top: 2px;
}
h1 .accent { color: var(--gold); }
h1 .nowrap { white-space: nowrap; }
.title-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0 22px;
  color: var(--gold);
  font-size: 24px;
}
.title-divider span {
  width: 86px;
  height: 2px;
  background: var(--gold);
}
.hero-copy p {
  max-width: 470px;
  margin: 0 0 26px;
  color: #252837;
  font-size: 21px;
  line-height: 1.6;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.link-more {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.link-more i { margin-left: 10px; transition: .22s ease; }
.link-more:hover i { transform: translateX(5px); }

.floating-note {
  position: absolute;
  right: 34px;
  bottom: 118px;
  width: 255px;
  min-height: 172px;
  padding: 28px 28px 26px;
  border-radius: 34px;
  color: var(--green);
  background: rgba(255, 253, 247, .94);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 22px 52px rgba(60, 42, 20, .11);
  backdrop-filter: blur(8px);
}
.floating-note::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(14,81,45,.06);
  pointer-events: none;
}
.floating-note h2 {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: .98;
  margin-bottom: 14px;
}
.floating-note p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 180px;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
}
.note-flower {
  position: absolute;
  right: 20px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 2;
  pointer-events: none;
}
.note-flower::before {
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(227, 178, 44, .18);
}
.note-flower::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(227, 178, 44, .42);
  transform: translate(-50%, -50%);
}

/* SERVICE CARDS */
.services-section {
  position: relative;
  z-index: 2;
  margin-top: -62px;
  padding-bottom: 28px;
}
.services-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.service-card {
  min-height: 245px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 42px 38px;
}
.service-card.bordered {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.service-icon {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 36px;
  background: radial-gradient(circle, #fff 0 35%, #eef0dd 100%);
}
.service-icon .small-bubble {
  position: absolute;
  top: 16px;
  right: 8px;
  font-size: 18px;
}
.service-card h3 {
  max-width: 290px;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -.01em;
}
.service-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 14px 0 16px;
  background: var(--gold);
}
.service-card p {
  max-width: 300px;
  margin: 0 0 18px;
  color: #303341;
  font-size: 16px;
  line-height: 1.75;
}
.service-card a {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-card a i { margin-left: 12px; }
.bottom-note {
  position: relative;
  z-index: 1;
  margin: 25px 0 0;
  color: #50535d;
  text-align: center;
  font-size: 16px;
}
.bottom-note i {
  margin-right: 18px;
  color: var(--gold);
  font-size: 29px;
  vertical-align: middle;
}


/* dekoratívne vetvičky okolo úvodných kariet - jedna PNG ilustrácia */
.edge-branch {
  position: absolute;
  bottom: 14px;
  width: 92px;
  height: 168px;
  pointer-events: none;
  z-index: 1;
  background: url("flower-sprig.png") center bottom / contain no-repeat;
  opacity: .92;
}
.edge-branch.branch-left { left: 8px; }
.edge-branch.branch-right {
  right: 8px;
  transform: scaleX(-1);
}

.content-section {
  padding: 86px 0;
  background: var(--paper);
}
.content-section h2 {
  margin: 8px 0 18px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}
.content-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.section-kicker {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bg-soft { background: #f0eddf; }

/* pôvodné malé lístky pri hero sekcii zrušené */
.hero-section .leaf { display: none !important; }


@media (max-width: 1199.98px) {
  .container-site { width: min(100% - 40px, 1140px); }
  .navbar { min-height: 108px; }
  .logo-placeholder { width: 96px; height: 96px; font-size: 11px; }
  .logo-placeholder strong { font-size: 13px; }
  .logo-sun { left: 20px; top: 35px; width: 13px; height: 13px; }
  .hero-grid { grid-template-columns: minmax(340px, 470px) 1fr; }
  .floating-note { right: 12px; }
  .service-card { padding: 38px 28px; grid-template-columns: 78px 1fr; }
}

@media (max-width: 991.98px) {
  .navbar { min-height: 82px; }
  .logo-placeholder { width: 72px; height: 72px; font-size: 9px; }
  .logo-placeholder strong { font-size: 10px; }
  .logo-placeholder small { font-size: 7px; }
  .logo-sun { left: 15px; top: 26px; width: 10px; height: 10px; }
  .navbar-collapse {
    margin-top: 12px;
    padding: 18px;
    border-radius: 16px;
    background: #fffdf7;
    box-shadow: var(--shadow);
  }
  .nav-link { padding: 10px 0 !important; }

  .hero-section { min-height: auto; }
  .hero-bg-placeholder {
    position: relative;
    width: calc(100% - 40px);
    height: 360px;
    margin: 30px auto 0;
    border-radius: 24px;
    overflow: hidden;
    background-position: center;
  }
  .hero-bg-placeholder::before { inset: 0; }
  .hero-grid {
    min-height: auto;
    display: block;
    padding: 58px 0 120px;
  }
  .hero-copy { max-width: 620px; }
  h1 { font-size: clamp(46px, 7vw, 66px); max-width: 11ch; }
  .floating-note {
    right: 20px;
    bottom: 52px;
    transform: scale(.82);
    transform-origin: right bottom;
  }
  .services-section { margin-top: -70px; }
  .service-card.bordered { border-left: 0; border-right: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}

@media (max-width: 767.98px) {
  .container-site { width: min(100% - 28px, 720px); }
  h1 { font-size: clamp(42px, 12vw, 58px); max-width: 11.2ch; }
  .hero-copy p { font-size: 17px; }
  .hero-actions {
    gap: 12px 18px;
    flex-wrap: wrap;
  }
  .hero-actions .btn { width: 100%; }
  .link-more { width: 100%; text-align: center; }
  .hero-bg-placeholder { width: calc(100% - 28px); height: 300px; }
  h1 .nowrap { white-space: normal; }
  .edge-branch { width: 72px; height: 130px; bottom: 12px; opacity: .88; }
  .edge-branch.branch-left { left: -2px; }
  .edge-branch.branch-right { right: -2px; }
  .floating-note { display: none; }
  .services-section { margin-top: -46px; }
  .service-card { min-height: auto; grid-template-columns: 1fr; padding: 34px 26px; }
  .service-card h3, .service-card p { max-width: none; }
  .bottom-note { font-size: 14px; line-height: 1.65; }
  .bottom-note i { display: block; margin: 0 0 8px; }
  .content-section { padding: 68px 0; }
}

@media (max-width: 420px) {
  .btn { font-size: 11px; letter-spacing: .08em; padding-inline: 14px; }
  .hero-grid { padding-top: 42px; }
  .hero-bg-placeholder { height: 245px; }
  .edge-branch { display: none; }
}

/* DETAILNÉ SLUŽBY + CENNÍK */
.section-with-decor {
  position: relative;
  background:
    radial-gradient(circle at 8% 7%, rgba(225, 181, 9, .08), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(14, 81, 45, .07), transparent 25%),
    var(--paper);
}
.section-heading { margin-bottom: 46px; }
.section-heading h2 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: .95;
}
.title-divider.centered {
  justify-content: center;
  margin: 18px auto 0;
}
.title-divider.centered span { width: 76px; opacity: .65; }

.services-detail-section {
  padding: 88px 0 74px;
}
.service-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  padding: 32px 0 42px;
  border-bottom: 1px solid rgba(14, 81, 45, .10);
}
.service-row:first-of-type { padding-top: 0; }
.service-side-icon {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0 34%, rgba(238,240,221,.9) 100%);
  box-shadow: inset 0 0 30px rgba(14, 81, 45, .05);
}
.service-side-icon .service-badge {
  position: absolute;
  right: 9px;
  top: 18px;
  font-size: 22px;
}
.service-side-icon .dot,
.service-side-icon .triangle,
.service-side-icon .square {
  position: absolute;
  display: block;
}
.service-side-icon .dot {
  right: 5px;
  bottom: 24px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--green);
}
.service-side-icon .triangle {
  left: 35px;
  bottom: 11px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 23px solid var(--gold);
}
.service-side-icon .square {
  left: 12px;
  bottom: 17px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
}
.service-text h3,
.therapy-card h3 {
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  margin-bottom: 12px;
}
.service-text p,
.therapy-card p {
  margin: 0 0 13px;
  color: #252837;
  font-size: 17px;
  line-height: 1.7;
}
.service-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 12px 16px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  background: rgba(14, 81, 45, .045);
  border-left: 3px solid rgba(225, 181, 9, .75);
}
.service-note i { font-size: 27px; }
.highlight-box {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding: 18px 20px;
  color: #202331;
  background: rgba(225, 181, 9, .08);
  border-radius: 12px;
}
.highlight-box i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 34px;
}
.list-label {
  margin-top: 8px !important;
  margin-bottom: 6px !important;
  font-weight: 800;
}
.check-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  columns: 1;
}
.check-list li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 6px;
  color: #252837;
  font-size: 16px;
  line-height: 1.45;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7d994f;
  font-weight: 900;
}
.gold-dots li::before {
  content: "•";
  top: -2px;
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}
.service-illustration {
  position: relative;
  min-height: 210px;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.95), rgba(246,244,236,.25) 62%, transparent 63%);
}
.service-illustration.image-asset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  background: transparent;
}
.service-illustration.image-asset img {
  display: block;
  width: 100%;
  max-width: 255px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(56,44,22,.10));
}
.consultation .chair {
  position: absolute;
  right: 63px;
  bottom: 48px;
  width: 118px;
  height: 84px;
  border-radius: 18px 18px 8px 8px;
  background: #7d8e55;
  box-shadow: inset -12px -10px 0 rgba(14,81,45,.12);
}
.consultation .chair::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  width: 48px;
  height: 32px;
  border-radius: 5px;
  background: #efe4c4;
}
.consultation .table {
  position: absolute;
  right: 124px;
  bottom: 32px;
  width: 95px;
  height: 16px;
  border-radius: 50%;
  background: #c28743;
  transform: rotate(-9deg);
}
.consultation .table::after {
  content: "";
  position: absolute;
  left: 41px;
  top: 11px;
  width: 8px;
  height: 45px;
  background: #9a6631;
}
.consultation .plant {
  position: absolute;
  right: 28px;
  bottom: 51px;
  width: 44px;
  height: 86px;
  border-bottom: 27px solid #c9a06c;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}
.consultation .plant::before,
.consultation .plant::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 17px;
  border-radius: 100% 0 100% 0;
  background: #7d994f;
}
.consultation .plant::before { left: -22px; top: 5px; transform: rotate(-36deg); }
.consultation .plant::after { left: 3px; top: 29px; transform: rotate(15deg); }
.preschool .rainbow {
  position: absolute;
  right: 54px;
  bottom: 50px;
  width: 118px;
  height: 58px;
  border-radius: 118px 118px 0 0;
  background: repeating-radial-gradient(circle at 50% 100%, transparent 0 16px, #6a994e 17px 27px, #e3b22c 28px 38px, #c28743 39px 49px, #8db36a 50px 60px);
}
.preschool .paper {
  position: absolute;
  right: 95px;
  bottom: 28px;
  width: 118px;
  height: 58px;
  background: #fff;
  border: 1px solid rgba(14,81,45,.12);
  transform: rotate(9deg);
  box-shadow: 0 13px 20px rgba(0,0,0,.05);
}
.preschool .pencils {
  position: absolute;
  right: 184px;
  bottom: 83px;
  width: 52px;
  height: 62px;
  border-radius: 0 0 12px 12px;
  background: #6a994e;
}
.preschool .pencils::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 54px;
  width: 6px;
  height: 52px;
  background: #e3b22c;
  box-shadow: 11px -6px 0 #d1663f, 22px 2px 0 #0e512d, 33px -8px 0 #6a994e;
  transform: rotate(-10deg);
}
.family .person {
  position: absolute;
  bottom: 62px;
  width: 58px;
  height: 72px;
  border-radius: 30px 30px 16px 16px;
  background: #d8b17c;
}
.family .person::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c98f5b;
}
.family .one { left: 54px; background: #556b3c; }
.family .child { left: 126px; width: 50px; height: 62px; background: #d9a847; }
.family .two { left: 194px; background: #d2c09d; }
.family .book {
  position: absolute;
  left: 98px;
  bottom: 42px;
  width: 128px;
  height: 34px;
  border-radius: 4px;
  background: #fffdf7;
  border: 1px solid rgba(14,81,45,.14);
  transform: perspective(80px) rotateX(28deg);
}
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 48px;
}
.therapy-card {
  position: relative;
  padding: 34px 36px 32px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 45px rgba(56,44,22,.08);
  border: 1px solid rgba(14,81,45,.08);
}
.mini-illustration {
  float: left;
  width: 112px;
  height: 112px;
  margin: 0 20px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-illustration.image-asset {
  background: transparent;
  border-radius: 0;
}
.mini-illustration.image-asset img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(56,44,22,.08));
}
.service-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding: 18px 24px;
  border-radius: 18px;
  background: rgba(240, 237, 223, .9);
  box-shadow: inset 0 0 0 1px rgba(14,81,45,.08);
}
.service-cta > div {
  color: var(--green);
  font-size: 42px;
}
.service-cta p {
  margin: 0;
  color: #252837;
  font-size: 18px;
  line-height: 1.55;
}

.pricing-section {
  padding: 58px 0 76px;
  background: #f6f4ec;
}
.pricing-section .container-site {
  width: min(100% - 72px, 1180px);
}
.pricing-frame {
  position: relative;
  padding: 50px 52px 42px;
  border: 1px solid rgba(14, 81, 45, .24);
  border-radius: 22px;
  background: rgba(255,253,247,.68);
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(56, 44, 22, .075);
}
.pricing-frame .section-heading { margin-bottom: 30px; }
.price-table-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 38px rgba(56,44,22,.085);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead th {
  padding: 20px 28px;
  color: #fff;
  background: var(--green);
  font-size: 15px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.price-table thead th:first-child { text-align: left; }
.price-table tbody tr { border-bottom: 1px solid rgba(14,81,45,.14); }
.price-table tbody tr:last-child { border-bottom: 0; }
.price-table td {
  padding: 22px 28px;
  color: #202331;
  font-size: 16px;
  vertical-align: middle;
}
.price-table td:first-child { width: 56%; }
.price-table td:nth-child(2) { width: 22%; text-align: center; }
.price-table td:nth-child(3) { width: 22%; text-align: center; white-space: nowrap; }
.price-table td strong {
  display: block;
  color: var(--green);
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  line-height: 1.18;
}
.price-table td:nth-child(3) strong {
  display: inline-block;
  min-width: 84px;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 900;
}
.price-table td span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.45;
}
.pricing-info {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 150px;
  align-items: center;
  gap: 22px;
  margin: 34px auto 0;
  padding: 22px 28px;
  min-height: 104px;
  border-radius: 16px;
  border: 1px solid rgba(14, 81, 45, .08);
  background: rgba(250, 249, 242, .96);
  box-shadow: 0 12px 32px rgba(56,44,22,.06);
  overflow: hidden;
}
.info-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 26px;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.pricing-info p {
  margin: 0;
  color: #252837;
  font-size: 15px;
  line-height: 1.45;
}
.pricing-info p strong {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--green);
  font-family: "Lora", Georgia, serif;
  font-size: 19px;
  line-height: 1.1;
}
.heart-flower {
  position: relative;
  justify-self: end;
  width: 118px;
  height: 74px;
  color: var(--gold);
  font-size: 36px;
  display: grid;
  place-items: center;
  opacity: .82;
}
.heart-flower::before,
.heart-flower::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 58px;
  height: 35px;
  border-bottom: 3px solid rgba(14,81,45,.56);
}
.heart-flower::before {
  right: 55px;
  border-radius: 0 0 0 44px;
  transform: rotate(-22deg);
}
.heart-flower::after {
  left: 55px;
  border-radius: 0 0 44px 0;
  transform: rotate(22deg);
}
.heart-flower i {
  position: relative;
  z-index: 1;
}
.heart-flower i::before {
  font-weight: 400 !important;
}

.pricing-leaf {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: .42;
  pointer-events: none;
}
.pricing-leaf::before,
.pricing-leaf::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: #7d994f;
}
.pricing-leaf.left { left: -38px; top: 110px; }
.pricing-leaf.left::before { left: 14px; top: 0; transform: rotate(-38deg); }
.pricing-leaf.left::after { left: 64px; top: 52px; transform: rotate(20deg); }
.pricing-leaf.right { right: -22px; top: 38px; }
.pricing-leaf.right::before { right: 48px; top: 6px; transform: rotate(-44deg); }
.pricing-leaf.right::after { right: 20px; top: 74px; transform: rotate(18deg); }

@media (max-width: 1199.98px) {
  .service-row { grid-template-columns: 88px minmax(0, 1fr) 240px; gap: 22px; }
  .service-illustration { min-height: 190px; transform: scale(.92); transform-origin: center; }
  .service-illustration.image-asset img { max-width: 230px; }
  .pricing-section .container-site { width: min(100% - 40px, 1180px); }
  .pricing-frame { padding: 42px 28px 34px; }
  .price-table td, .price-table thead th { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 991.98px) {
  .services-detail-section { padding-top: 70px; }
  .service-row { grid-template-columns: 80px 1fr; }
  .service-illustration { grid-column: 2; width: 300px; max-width: 100%; justify-self: start; min-height: 165px; }
  .service-illustration.image-asset img { max-width: 220px; }
  .therapy-grid { grid-template-columns: 1fr; }
  .service-cta { grid-template-columns: 1fr; text-align: center; }
  .service-cta .btn { justify-self: center; }
  .pricing-frame { border-radius: 18px; }
  .price-table thead { display: none; }
  .price-table tbody tr { display: grid; grid-template-columns: 1fr; }
  .price-table td { width: 100% !important; padding: 16px 24px; text-align: left !important; }
  .price-table td:first-child { padding-top: 26px; }
  .price-table td:nth-child(2)::before { content: "Dĺžka trvania: "; font-weight: 800; color: var(--green); }
  .price-table td:nth-child(3) { padding-bottom: 26px; text-align: center !important; }
  .price-table td:nth-child(3)::before { content: "Cena"; display: block; margin-bottom: 8px; font-weight: 800; color: var(--green); }
  .price-table td:nth-child(3) strong { display: inline-block; min-width: 84px; text-align: center; }
}

@media (max-width: 767.98px) {
  .services-detail-section, .pricing-section { padding: 58px 0; }
  .section-heading { margin-bottom: 32px; }
  .service-row { grid-template-columns: 1fr; gap: 18px; }
  .service-side-icon { width: 78px; height: 78px; font-size: 38px; }
  .service-illustration { grid-column: 1; justify-self: center; }
  .service-illustration.image-asset img { max-width: 210px; }
  .service-text p, .therapy-card p { font-size: 16px; }
  .service-note { align-items: flex-start; font-size: 14px; }
  .therapy-card { padding: 28px 22px; }
  .mini-illustration { float: none; margin: 0 0 16px; }
  .mini-illustration.image-asset img { max-width: 108px; }
  .service-cta { padding: 22px; }
  .pricing-section .container-site { width: min(100% - 28px, 1180px); }
  .pricing-frame { padding: 34px 14px 28px; border-radius: 16px; }
  .price-table-wrap { border-radius: 14px; }
  .price-table td strong { font-size: 28px; }
  .price-table td span { font-size: 15px; }
  .pricing-info { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 12px; padding: 20px 16px; }
  .heart-flower { justify-self: center; }
  .pricing-leaf { display: none; }
}

/* ABOUT */
.about-section {
  position: relative;
  padding: 92px 0 0;
  background: var(--cream);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 570px);
  gap: 84px;
  align-items: start;
}
.about-copy .section-kicker { margin-bottom: 26px; }
.about-copy h2 {
  margin-bottom: 38px;
  font-size: clamp(54px, 5vw, 82px);
  line-height: .98;
  letter-spacing: .03em;
}
.about-copy p {
  max-width: 620px;
  margin: 0 0 26px;
  color: #262a39;
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
}
.about-photo-card {
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(56,44,22,.10);
  background: #eee7d9;
}
.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
}
.education-block {
  width: min(100%, 1060px);
  margin: 78px auto 0;
}
.education-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}
.education-title > i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  box-shadow: 0 14px 30px rgba(56,44,22,.05);
}
.education-title h3 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
}
.education-title h3 span { font-size: .78em; }
.small-line {
  width: 72px;
  height: 3px;
  margin-top: 18px;
  background: var(--gold);
}
.featured-course {
  width: min(100%, 690px);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 98px;
  padding: 18px 30px;
  border: 1px solid rgba(14,81,45,.10);
  border-radius: 4px;
  background: rgba(255,255,255,.38);
  box-shadow: 0 18px 42px rgba(56,44,22,.06);
  color: #242837;
  font-size: 19px;
  line-height: 1.7;
}
.featured-course i { color: var(--green); font-size: 34px; }
.featured-course strong { color: var(--green); font-weight: 800; }
.course-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 82px;
}
.course-columns ul {
  margin: 0;
  padding-left: 23px;
  color: #252837;
  font-size: 17px;
  line-height: 1.7;
}
.course-columns li { margin-bottom: 12px; padding-left: 8px; }
.course-columns li::marker { color: var(--green); }
.about-quote {
  width: min(100%, 1040px);
  min-height: 150px;
  margin: 62px auto 58px;
  display: grid;
  grid-template-columns: 260px 1fr 250px;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255,255,255,.48);
  box-shadow: 0 18px 42px rgba(56,44,22,.06);
}
.about-quote > i {
  justify-self: center;
  color: rgba(14,81,45,.45);
  font-size: 98px;
  line-height: 1;
}
.about-quote strong {
  color: var(--green);
  font-family: "Lora", Georgia, serif;
  font-size: 34px;
  line-height: 1.25;
}
.quote-flower {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 46px;
  border-left: 1px solid rgba(14,81,45,.08);
}
.quote-flower i {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225,181,9,.55);
  border-radius: 50%;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 50px;
}
.values-grid article {
  min-height: 245px;
  padding: 22px 32px;
  text-align: center;
  border-right: 1px solid rgba(14,81,45,.08);
}
.values-grid article:last-child { border-right: 0; }
.values-grid i {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}
.values-grid h4 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 19px;
  font-weight: 800;
}
.values-grid p {
  margin: 0 auto;
  max-width: 230px;
  color: #252837;
  font-size: 16px;
  line-height: 1.8;
}
.about-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255, 251, 241, .96);
  border: 1px solid rgba(227, 178, 44, .34);
  box-shadow: 0 14px 34px rgba(227, 178, 44, .10);
  overflow: hidden;
}
.about-cta::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 12px;
  border-radius: 999px;
  background: rgba(227, 178, 44, .16);
  filter: blur(10px);
  z-index: 0;
}
.about-cta > * { position: relative; z-index: 1; }
.about-cta > div {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 31px;
  border-radius: 50%;
  background: rgba(255,255,255,.52);
  box-shadow: 0 14px 30px rgba(56,44,22,.05);
}
.about-cta p {
  margin: 0;
  color: #252837;
  font-size: 17px;
  line-height: 1.5;
}
.about-cta strong {
  color: var(--green);
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
}

/* CONTACT MAP */
.contact-map-section {
  padding: 92px 0 100px;
  background: var(--cream);
}
.contact-map-card {
  min-height: 785px;
  display: grid;
  grid-template-columns: 520px 1fr;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255,255,255,.38);
  box-shadow: 0 22px 55px rgba(56,44,22,.10);
}
.contact-panel {
  position: relative;
  z-index: 2;
  padding: 72px 74px 64px;
  background: rgba(255,255,255,.80);
}
.contact-panel h2 {
  margin: 22px 0 0;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: .08em;
}
.contact-list {
  display: grid;
  gap: 32px;
  margin: 58px 0 46px;
}
.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  align-items: start;
}
.contact-item i {
  color: var(--green);
  font-size: 35px;
  line-height: 1;
}
.contact-item p {
  margin: 0;
  color: #252837;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
}
.contact-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 22px;
  font-weight: 800;
}
.map-panel {
  position: relative;
  min-height: 785px;
  background: #ebeae4;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(246,244,236,.54), rgba(246,244,236,.14) 40%, rgba(246,244,236,.35));
  pointer-events: none;
}
.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.75) brightness(1.08) contrast(.92);
  opacity: .72;
}
.map-pin {
  position: absolute;
  z-index: 2;
  left: 49%;
  top: 43%;
  transform: translate(-50%, -50%);
  color: var(--green);
  font-size: 88px;
  filter: drop-shadow(0 14px 18px rgba(14,81,45,.18));
}

@media (max-width: 1199.98px) {
  .about-intro-grid { gap: 42px; grid-template-columns: 1fr 430px; }
  .contact-map-card { grid-template-columns: 440px 1fr; }
  .contact-panel { padding: 58px 48px; }
  .contact-item p { font-size: 18px; }
}
@media (max-width: 991.98px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-photo-card { max-width: 560px; }
  .course-columns { grid-template-columns: 1fr; gap: 0; }
  .about-quote { grid-template-columns: 150px 1fr 150px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-map-card { grid-template-columns: 1fr; }
  .map-panel { min-height: 420px; order: -1; }
  .contact-map-card { min-height: 0; }
}
@media (max-width: 767.98px) {
  .about-section, .contact-map-section { padding: 58px 0; }
  .about-copy h2 { font-size: 48px; }
  .about-copy p, .course-columns ul { font-size: 16px; line-height: 1.8; }
  .education-title { justify-content: flex-start; align-items: flex-start; }
  .featured-course { grid-template-columns: 48px 1fr; padding: 16px 18px; font-size: 16px; }
  .about-quote { grid-template-columns: 1fr; gap: 12px; padding: 26px; text-align: center; }
  .about-quote > i { font-size: 58px; }
  .about-quote strong { font-size: 30px; }
  .quote-flower { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { border-right: 0; border-bottom: 1px solid rgba(14,81,45,.08); }
  .about-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 24px 22px; }
  .contact-panel { padding: 42px 26px; }
  .contact-item { grid-template-columns: 42px 1fr; gap: 18px; }
  .contact-item i { font-size: 28px; }
  .contact-item p { font-size: 16px; }
  .contact-item strong { font-size: 18px; }
  .map-panel { min-height: 320px; }
  .map-pin { font-size: 62px; }
}

/* ÚPRAVY: nové logo, mobilné menu, Google mapa a pätička */
.site-logo {
  width: 126px;
  height: 126px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 28px rgba(151, 149, 82, .28), 0 12px 32px rgba(0, 0, 0, .05);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(56,44,22,.045);
}
.navbar-toggler {
  width: 54px;
  height: 44px;
  border: 2px solid rgba(14,81,45,.55);
  border-radius: 6px;
  background: rgba(255,253,247,.9);
  box-shadow: 0 12px 24px rgba(56,44,22,.08);
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(225,181,9,.22); }
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--green);
  display: inline-block;
  vertical-align: middle;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--green);
}
.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 785px;
  border: 0;
  display: block;
  filter: saturate(.75) brightness(1.08) contrast(.92);
  opacity: .78;
}
.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246,244,236,.50), rgba(246,244,236,.10) 46%, rgba(246,244,236,.24));
}
.site-footer {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: rgba(255,255,255,.88);
  padding: 34px 0;
  font-size: 14px;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(225,181,9,.18), transparent 28%),
    radial-gradient(circle at 86% 100%, rgba(255,255,255,.10), transparent 30%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.footer-inner p { margin: 0; }
.footer-inner p:last-child { color: rgba(255,255,255,.9); font-weight: 700; }
.footer-inner a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(225,181,9,.55);
}
.footer-inner a:hover { color: #fff2a3; }

@media (max-width: 1199.98px) {
  .site-logo { width: 96px; height: 96px; }
}

@media (max-width: 991.98px) {
  .site-header { background: rgba(246,244,236,.96); }
  .site-logo { width: 74px; height: 74px; }
  .navbar > .container-site { min-height: 88px; }
  .navbar-collapse {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    margin-top: 0;
    padding: 22px 18px;
    border-radius: 16px;
    background: rgba(255,253,247,.98);
    border: 1px solid rgba(14,81,45,.08);
    box-shadow: 0 24px 60px rgba(56,44,22,.16);
  }
  .navbar-nav {
    align-items: stretch !important;
    gap: 0 !important;
  }
  .nav-link {
    display: block;
    padding: 13px 0 !important;
    font-size: 16px;
  }
  .nav-link::after { transform-origin: left; }
  .nav-link.active::after { right: auto; width: 80%; transform: scaleX(1); }
  #mainNav .btn {
    width: 100%;
    margin-top: 14px;
  }
  .hero-section { padding-top: 0; }
  .services-section { margin-top: -54px; }
  .map-panel iframe { min-height: 420px; }
}

@media (max-width: 767.98px) {
  .site-logo { width: 64px; height: 64px; }
  .navbar > .container-site { min-height: 78px; }
  .navbar-collapse {
    left: 14px;
    right: 14px;
    top: calc(100% + 6px);
  }
  .hero-bg-placeholder {
    margin-top: 22px;
    border-radius: 18px;
    background-image:
      linear-gradient(180deg, rgba(246,244,236,.12), rgba(246,244,236,.10)),
      url("hero-herna.png");
  }
  .services-section { margin-top: -34px; }
  .map-panel iframe { min-height: 320px; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* CUSTOM IMAGE ICONS */
.service-icon.image-icon,
.service-side-icon.image-icon {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.service-icon.image-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(14, 81, 45, .08));
}

.service-side-icon.image-icon.large img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(14, 81, 45, .09));
}

#jednorazova-konzultacia,
#terapeuticka-spolupraca,
#predskolska-priprava {
  scroll-margin-top: 115px;
}

@media (max-width: 991.98px) {
  .service-icon.image-icon img { width: 84px; height: 84px; }
  .service-side-icon.image-icon.large img { width: 90px; height: 90px; }
}


/* jemné lístky pri srdiečku v boxe Dôležité informácie */
.heart-flower span { display: none; }

/* Úpravy: lepšie kotvy po kliknutí v hornom menu */
#domov, #sluzby, #omne, #cennik, #galeria, #kontakt, #kontaktne-udaje {
  scroll-margin-top: 156px;
}
#kontakt, #kontaktne-udaje { scroll-margin-top: 186px; }

/* Zvýraznenie balíkov v cenníku */
.price-table tbody tr.package-row {
  background: rgba(227, 178, 44, .075);
}
.price-table tbody tr.package-row td strong {
  color: var(--green);
}
.price-table tbody tr.package-row td:first-child {
  border-left: 4px solid var(--gold);
}

/* GALÉRIA */
.gallery-section {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 8% 16%, rgba(227,178,44,.12), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(14,81,45,.10), transparent 26%),
    var(--paper);
}
.gallery-intro {
  max-width: 680px;
  margin: -4px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.gallery-item {
  grid-column: span 4;
  position: relative;
  min-height: 250px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(56, 44, 22, .12);
  cursor: pointer;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(7) {
  grid-column: span 6;
  min-height: 330px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-item::after {
  content: "Otvoriť";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #231e0d;
  background: rgba(227, 178, 44, .94);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: .25s ease;
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.04); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

body.lightbox-open { overflow: hidden; }
.gallery-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 76px 88px;
  background: rgba(8, 54, 31, .88);
  backdrop-filter: blur(8px);
}
.gallery-lightbox.is-open { display: flex; }
.lightbox-content {
  position: relative;
  width: min(100%, 1180px);
  margin: 0;
}
.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 90px rgba(0,0,0,.34);
}
.lightbox-content figcaption {
  margin-top: 16px;
  color: #fffdf7;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--gold); color: #231e0d; }

@media (max-width: 991.98px) {
  .gallery-section { padding: 82px 0 92px; }
  .gallery-grid { gap: 14px; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) {
    grid-column: span 6;
    min-height: 220px;
    border-radius: 22px;
  }
  .gallery-lightbox { padding: 70px 18px; }
  .lightbox-nav { width: 46px; height: 46px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 767.98px) {
  #domov, #sluzby, #omne, #cennik, #galeria, #kontakt, #kontaktne-udaje { scroll-margin-top: 112px; }
  .gallery-intro { font-size: 16px; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) {
    grid-column: span 12;
    min-height: 245px;
  }
  .gallery-item::after { opacity: 1; transform: none; }
  .lightbox-content img { max-height: 70vh; border-radius: 18px; }
}

/* DOLADENIE 18.5.: fixné horné menu + kontakt na mobile */
.site-header {
  position: fixed !important;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1600px);
  z-index: 2000;
}
.site-shell {
  padding-top: 128px;
}

@media (max-width: 1199.98px) {
  .site-shell { padding-top: 96px; }
}

@media (max-width: 991.98px) {
  .site-shell { padding-top: 88px; }
  .navbar-collapse {
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }
  .contact-panel { order: -1; }
  .map-panel { order: 0 !important; }
}

@media (max-width: 767.98px) {
  .site-shell { padding-top: 78px; }
}
