﻿
:root {
  --bg: #f6f4ed;
  --surface: #ffffff;
  --surface-soft: #eff2ea;
  --brand: #0a5745;
  --brand-deep: #01372a;
  --accent: #af8123;
  --text: #14261d;
  --muted: #53655b;
  --border: #d8dfd3;
  --success: #126e57;
  --error: #b42318;
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.35rem;
  --shadow-soft: 0 10px 30px rgba(1, 55, 42, 0.09);
  --shadow-strong: 0 22px 52px rgba(1, 45, 35, 0.25);
  --container: 1160px;
  --header-h: 82px;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
  --font-heading: "Montserrat", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(46% 32% at 100% -10%, rgba(10, 87, 69, 0.18), transparent 72%),
    radial-gradient(54% 34% at -8% 8%, rgba(175, 129, 35, 0.15), transparent 78%),
    linear-gradient(180deg, #f7f5ee 0%, #f3f4ee 52%, #eef3ee 100%);
  line-height: 1.65;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1.4px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-deep);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: var(--brand);
  color: #fff;
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  line-height: 1.14;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.6rem, 8vw, 6rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section-soft {
  background:
    radial-gradient(70% 40% at 90% 10%, rgba(175, 129, 35, 0.09), transparent 72%),
    linear-gradient(180deg, rgba(239, 242, 234, 0.82), rgba(246, 244, 237, 0.58));
}

.site-announcement {
  background: linear-gradient(120deg, rgba(1, 55, 42, 0.95), rgba(10, 87, 69, 0.9));
}

.site-announcement-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-block: 0.72rem;
}

.site-announcement-label {
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 97, 0.54);
  background: rgba(1, 55, 42, 0.5);
  color: #f5f0df;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  flex-shrink: 0;
}

.site-announcement-text {
  margin: 0;
  color: #faf6ea;
  font-weight: 600;
  white-space: pre-line;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--brand);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-size: clamp(1.82rem, 3.8vw, 2.7rem);
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, #0a5745, #126e57);
  border-color: #0a5745;
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(120deg, #01372a, #0c5b48);
}

.btn-light {
  border-color: #ccd5c7;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.92);
}

.btn-light:hover {
  border-color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.45rem;
  z-index: 1400;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-deep);
  border-radius: 0.5rem;
  padding: 0.62rem 0.9rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.6rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: linear-gradient(155deg, rgba(250, 246, 234, 0.96), rgba(236, 244, 238, 0.94));
  border-bottom: 1px solid rgba(216, 177, 97, 0.34);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(6px);
}

.site-header.scrolled {
  background: linear-gradient(155deg, rgba(250, 246, 234, 0.98), rgba(236, 244, 238, 0.96));
  border-color: rgba(216, 177, 97, 0.5);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  font-weight: 800;
  line-height: 1.02;
}

.brand-text small {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  min-height: 2.1rem;
  padding: 0.5rem 0.72rem;
  border-radius: 0.58rem;
  white-space: nowrap;
}

.main-menu a:hover {
  background: rgba(10, 87, 69, 0.14);
}

.menu-extras {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}

.header-cta {
  flex: 0 0 11.2rem;
  inline-size: 11.2rem;
  block-size: 2.72rem;
  padding: 0 0.95rem;
  line-height: 1;
  font-size: 0.92rem;
  white-space: nowrap;
  align-self: center;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #ced7ca;
  background: #ffffff;
  color: #2e5646;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-links svg {
  display: block;
  width: 1.02rem;
  height: 1.02rem;
  fill: currentColor;
}

.social-links a:hover {
  border-color: var(--brand);
  background: #f3f0e4;
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.social-links a:hover .social-icon,
.social-links a:focus-visible .social-icon {
  animation: social-icon-hide-show 0.34s ease;
}

@keyframes social-icon-hide-show {
  0% {
    opacity: 1;
  }

  45% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 4.8rem;
  padding: 2px;
  border: 1px solid #d1d9cd;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbfaf6, #f2f4ec);
  overflow: hidden;
  isolation: isolate;
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  border-radius: 999px;
  background: linear-gradient(120deg, #0a5745, #126e57);
  box-shadow: 0 4px 10px rgba(10, 87, 69, 0.3);
  transition: transform 0.25s ease;
  z-index: 0;
}

.lang-switch.is-en::before {
  transform: translateX(calc(100% + 2px));
}

.lang-btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #415c4e;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: 1.74rem;
  padding: 0.3rem 0.46rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lang-btn.is-active {
  color: #ffffff;
}

.menu-button {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--border);
  border-radius: 0.72rem;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
}

.menu-button span {
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.hero {
  padding-block: clamp(1rem, 3.4vh, 2.4rem);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0b5f4c 0%, #0f6f59 55%, #157d64 100%);
}

.hero-shell {
  position: relative;
  padding: clamp(0.8rem, 2.2vh, 1.6rem);
}

.hero-shell::before {
  content: none;
}

.hero-shell::after {
  content: none;
}

.hero-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.2rem);
  min-height: 0;
}

.hero-layout::after {
  content: "";
  display: block;
  width: min(clamp(280px, 37vw, 430px), calc(68svh * 0.6667));
  aspect-ratio: 2 / 3;
  flex: 0 0 auto;
  border-radius: 1rem;
  border: 4px solid rgba(253, 249, 237, 0.95);
  box-shadow:
    0 26px 44px rgba(1, 35, 28, 0.4),
    0 10px 22px rgba(1, 35, 28, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 46%, rgba(1, 55, 42, 0.08) 100%),
    url("images/hero-skuska.webp") center / cover no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.hero-eyebrow {
  color: #d8b161;
}

.hero-shell h1 {
  color: #fff;
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.hero-description {
  margin: 0;
  max-width: 52ch;
  color: rgba(245, 240, 223, 0.95);
  font-size: clamp(1rem, 2.2vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.45rem 0 0;
}

#about,
#services,
#insurance,
#team,
#gallery,
#pricing,
#faq,
#contact {
  position: relative;
  overflow: clip;
}

#about .container,
#services .container,
#insurance .container,
#team .container,
#gallery .container,
#pricing .container,
#faq .container,
#contact .container {
  position: relative;
  z-index: 1;
}

#about {
  background:
    radial-gradient(110% 84% at 8% -16%, rgba(224, 185, 122, 0.18) 0%, rgba(224, 185, 122, 0) 62%),
    radial-gradient(98% 80% at 92% 14%, rgba(18, 110, 87, 0.12) 0%, rgba(18, 110, 87, 0) 68%),
    linear-gradient(180deg, #ffffff 0%, #f8f7f2 100%);
}

#about::before {
  content: none;
}

#about::after {
  content: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.about-copy {
  max-width: 62ch;
}

#about .eyebrow {
  color: #af8123;
}

#team .eyebrow,
#gallery .eyebrow,
#reviews .eyebrow,
#pricing .eyebrow,
#premeny .eyebrow,
#faq .eyebrow,
#insurance .eyebrow,
#opening-hours-section .eyebrow,
#contact .eyebrow {
  color: #d8b161;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.9vw, 2.6rem);
  color: var(--text);
}

.about-copy p {
  color: var(--muted);
}

.about-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.about-points li {
  position: relative;
  padding-left: 1.45rem;
  color: #3c594b;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #d8b161, #e0b97a);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.about-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 177, 97, 0.34);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(1, 55, 42, 0.12);
  padding: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(120deg, #d5ac5a, #e0b97a);
}

.about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(1, 55, 42, 0.16);
}

#insurance {
  background:
    radial-gradient(circle at 85% 18%, rgba(175, 129, 35, 0.12), rgba(175, 129, 35, 0) 34%),
    linear-gradient(180deg, #fbfaf6 0%, #f0f4ec 100%);
}

.insurance-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.insurance-heading {
  max-width: none;
  margin-bottom: 1rem;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.insurance-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.2rem;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
}

.insurance-logo-wrap {
  width: 100%;
  min-height: 5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0.1rem;
}

.insurance-logo {
  max-width: min(16rem, 100%);
  max-height: 4.4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.insurance-logo-fallback {
  display: none;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a3f33;
}

.insurance-logo-wrap.is-missing .insurance-logo-fallback {
  display: inline-flex;
}

#services {
  background:
    linear-gradient(150deg, rgba(1, 55, 42, 0.86) 0%, rgba(8, 82, 65, 0.74) 48%, rgba(12, 91, 72, 0.72) 100%),
    url("images/pozadie.webp") center / cover no-repeat;
}

#services .section-heading .eyebrow {
  color: #d8b161;
}

#services .section-heading h2 {
  color: #ffffff;
}

#services .section-heading p {
  color: rgba(245, 240, 223, 0.92);
}

#services .section-heading strong {
  color: #d8b161;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-card {
  position: relative;
  background: #edf0ef;
  border: 1px solid rgba(224, 227, 220, 0.5);
  border-radius: 0.28rem;
  box-shadow: 0 20px 36px rgba(1, 55, 42, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ffffff;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card:nth-child(1) .service-media img {
  object-position: center;
}

.service-card:nth-child(2) .service-media img {
  object-position: center 26%;
}

.service-card:nth-child(3) .service-media img {
  object-position: center 26%;
}

.service-titlebar {
  background: linear-gradient(180deg, #ead89f, #d7b76a);
  padding: 0.88rem 1rem;
  text-align: center;
}

.service-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-deep);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  padding: 0.95rem 1rem 1.08rem;
  background: #edf0ef;
}

.service-summary {
  margin: 0;
  color: #3f5b4f;
  line-height: 1.52;
  font-size: 0.92rem;
}

.service-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.service-benefits li {
  position: relative;
  padding-left: 0.95rem;
  color: #1f4b3a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #126e57;
}

.service-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.service-link:hover {
  color: var(--brand-deep);
}

#team {
  background: linear-gradient(180deg, #fbfaf6 0%, #eff2ea 100%);
}

#team::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: 4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 129, 35, 0.14), rgba(175, 129, 35, 0));
  pointer-events: none;
}

.about-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #1e4638;
  font-weight: 700;
}

.about-card p {
  margin-bottom: 0;
  color: #53655b;
}

.accordion-toggle {
  width: 100%;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #ccd6c8;
  border-radius: var(--radius-sm);
  background: #fbfaf6;
  color: var(--brand-deep);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.64rem 0.76rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.accordion-toggle:hover {
  border-color: var(--brand);
}

.accordion-toggle .icon {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.accordion-toggle[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}

.accordion-content {
  margin-top: 0.7rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-card:nth-child(1) {
  border-color: #d6ddcf;
}

.team-card:nth-child(2) {
  border-color: #d7cfb8;
}

.team-card:nth-child(3) {
  border-color: #d5d9ce;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(1, 55, 42, 0.14);
}

.team-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #dce2d5, #eef2ea);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: #3c5b4c;
}

.team-photo.no-image img {
  display: none;
}

.team-photo.no-image .fallback {
  display: grid;
}

.team-body {
  padding: 0.95rem;
}

.team-name {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.team-role {
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.team-body p {
  color: var(--muted);
}

#gallery {
  background:
    radial-gradient(circle at 15% 10%, rgba(175, 129, 35, 0.13), rgba(175, 129, 35, 0) 34%),
    linear-gradient(180deg, #eff2ea 0%, #ebefe7 100%);
}

#reviews {
  background:
    radial-gradient(circle at 88% 12%, rgba(10, 87, 69, 0.13), rgba(10, 87, 69, 0) 36%),
    linear-gradient(180deg, #f0f3ef 0%, #ecefe9 100%);
}

.reviews-carousel {
  max-width: 980px;
  margin: 0 auto;
}

.review-slide {
  position: relative;
  border: 1px solid rgba(18, 74, 60, 0.14);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 38px rgba(1, 55, 42, 0.12);
  padding: clamp(1.2rem, 3vw, 2rem);
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  overflow: hidden;
}

.review-slide[hidden] {
  display: none;
}

.review-slide.is-animating {
  animation: review-slide-enter 0.34s ease both;
}

@keyframes review-slide-enter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-quote-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a5745, #126e57);
  color: #fff;
  font-size: 1.1rem;
}

.review-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 87, 69, 0.14);
  color: rgba(10, 87, 69, 0.42);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #d8b161;
  font-size: 1.1rem;
}

.icon-quote,
.icon-star {
  display: inline-block;
  line-height: 1;
}

.review-text {
  margin: 0;
  color: #14261d;
  font-size: clamp(1.04rem, 1.9vw, 1.28rem);
  line-height: 1.55;
  max-width: 100%;
  font-weight: 500;
  overflow: hidden;
  max-height: 4.8em;
  transition: max-height 0.3s ease;
}

.review-slide.is-expanded .review-text {
  max-height: 28em;
}

.review-text.review-text-full {
  max-height: none;
  overflow: visible;
}

.review-more {
  justify-self: start;
  border: 0;
  background: transparent;
  color: #0a5745;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-more[hidden] {
  display: none;
}

.review-more:hover {
  color: #1a735f;
}

.review-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-author p {
  margin: 0;
}

.review-avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #126e57, #0a5745);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
}

.review-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #16352a;
  line-height: 1.1;
}

.review-role {
  margin-top: 0.2rem;
  font-size: 0.98rem;
  color: #5a6d62;
}

.review-link {
  color: #0a5745;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-link:hover {
  color: #1a735f;
}

.reviews-controls {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.reviews-nav-btn {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  border: 1px solid #d6ddd1;
  background: #ffffff;
  color: #10241b;
  font-size: 2rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(1, 55, 42, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.reviews-nav-btn:hover {
  transform: translateY(-1px);
  border-color: #af8123;
  color: #0a5745;
  background: #fbfaf6;
}

.reviews-dots {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews-dot {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  border: 0;
  background: #c5ccc4;
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.reviews-dot.is-active {
  width: 1.8rem;
  background: #0a5745;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border: 1px solid #d4dccf;
  padding: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #dbe2d7;
  box-shadow: var(--shadow-soft);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-item::after {
  content: attr(data-preview-label);
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(1, 55, 42, 0.72);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed #cad4c6;
  border-radius: 0.9rem;
  background: #faf9f4;
  color: #54675d;
  font-weight: 600;
  padding: 0.9rem;
  text-align: center;
}

#pricing {
  background: linear-gradient(180deg, #ffffff 0%, #f2f4ec 100%);
}

#premeny {
  background:
    radial-gradient(circle at 14% 14%, rgba(175, 129, 35, 0.14), rgba(175, 129, 35, 0) 42%),
    linear-gradient(180deg, #edf2eb 0%, #f9f8f3 100%);
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.transformation-card {
  border: 1px solid rgba(18, 74, 60, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.transformation-head {
  padding: 0.86rem 0.9rem 0.7rem;
}

.transformation-head h3 {
  margin: 0 0 0.28rem;
  font-size: 1.08rem;
  color: #173f32;
}

.transformation-head p {
  margin: 0;
  color: #4c6157;
  font-size: 0.88rem;
}

.before-after-slider {
  --ba-position: 50%;
  position: relative;
  margin: 0 0.82rem 0.9rem;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(18, 74, 60, 0.16);
  aspect-ratio: 16 / 10;
  background: #dce3da;
}

.ba-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, var(--ba-position) 0, var(--ba-position) 100%, 0 100%);
  clip-path: polygon(0 0, var(--ba-position) 0, var(--ba-position) 100%, 0 100%);
  z-index: 2;
}

.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-divider {
  position: absolute;
  left: var(--ba-position);
  top: 0;
  bottom: 0;
  width: 0;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba-divider::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(1, 35, 28, 0.16);
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: rgba(1, 55, 42, 0.72);
  box-shadow: 0 8px 18px rgba(1, 55, 42, 0.34);
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.ba-handle::before {
  left: 0.47rem;
}

.ba-handle::after {
  right: 0.47rem;
  transform: translateY(-50%) rotate(225deg);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 4;
  touch-action: pan-y;
}

.ba-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
  background: transparent;
}

.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
}

.ba-range::-moz-range-track {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
}

.ba-range::-moz-range-thumb {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.ba-label {
  position: absolute;
  top: 0.62rem;
  z-index: 5;
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.ba-label-before {
  left: 0.62rem;
  background: rgba(10, 87, 69, 0.78);
}

.ba-label-after {
  right: 0.62rem;
  background: rgba(175, 129, 35, 0.84);
}

.pricing-layout {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.pricing-table-wrap {
  min-width: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d2dacd;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pricing-table caption {
  text-align: left;
  padding: 0.76rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #0a5745;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid #dde4d8;
  font-size: 0.93rem;
}

.pricing-table th {
  background: #f8f7f2;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3f5c4d;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr:nth-child(even) td {
  background: #fefdf9;
}

.pricing-group-row td {
  background: #0a5745 !important;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
  white-space: nowrap;
}

.pdf-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(242, 244, 236, 0.9));
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
  display: grid;
  gap: 0.78rem;
  align-self: start;
}

.pdf-panel-head h3 {
  margin: 0;
  font-size: 1.08rem;
}

.pdf-panel-head p {
  margin: 0.45rem 0 0;
  color: #52665b;
}

.pdf-panel-actions {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#faq {
  background:
    radial-gradient(circle at 84% 24%, rgba(175, 129, 35, 0.14), rgba(175, 129, 35, 0) 32%),
    linear-gradient(180deg, #fcfbf7 0%, #eff3eb 100%);
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #d6ddd0;
  border-left: 4px solid #af8123;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ffffff, #fbfaf7);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.faq-item h3 {
  font-size: 1.08rem;
}

#contact {
  background: #eef3ea;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: 1rem;
}

.contact-card,
.form-card {
  border: 1px solid #d4dace;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #ffffff, #fbfaf7);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.contact-card h3,
.form-card h3 {
  font-size: 1.2rem;
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
}

.map-box {
  border: 1px solid #d8dfd2;
  border-radius: 0.78rem;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
}

.map-link {
  margin: 0.62rem 0 0;
  font-size: 0.9rem;
}

.contact-subsection {
  margin: 0.86rem 0 0.86rem;
  border: 1px solid #d9e0d5;
  border-radius: 0.7rem;
  background: #fcfbf7;
  padding: 0.72rem 0.76rem;
}

.contact-subsection h4 {
  margin: 0 0 0.42rem;
  font-size: 0.95rem;
  color: var(--brand-deep);
}

.opening-hours {
  margin: 0;
}

.hours-card {
  width: 100%;
  margin: 0;
  border: 1px solid #d9e0d5;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #ffffff, #fbfaf7);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1rem;
}

.opening-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.16rem 0;
  border-bottom: 1px dashed #dbe2d4;
  color: #496457;
  font-size: 0.92rem;
}

.opening-hours li span {
  color: #111111;
}

.opening-hours li:last-child {
  border-bottom: 0;
}

.opening-hours li strong {
  color: #275442;
  font-weight: 700;
}

.contact-socials {
  margin-top: 0;
}

.social-links-contact {
  margin-top: 0.25rem;
}

.social-links-contact a {
  width: 2.15rem;
  height: 2.15rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full {
  grid-column: 1 / -1;
}

.antispam-trap {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.antispam-trap input,
.antispam-trap label {
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  font-size: 0;
}

label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

input,
textarea {
  border: 1px solid #ccd6c8;
  border-radius: 0.68rem;
  padding: 0.66rem 0.76rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10, 87, 69, 0.14);
  outline: none;
}

.input-error {
  border-color: var(--error);
}

.error {
  min-height: 1.06rem;
  margin-top: 0.2rem;
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 600;
}

.gdpr {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.56rem;
  align-items: start;
  margin-top: 0.45rem;
}

.gdpr input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
}

.gdpr label {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.gdpr a {
  color: var(--brand-deep);
  font-weight: 700;
}

.form-actions {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
}

.form-actions .btn {
  min-width: 210px;
}

.form-status {
  margin-top: 0.8rem;
  min-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.privacy-card {
  max-width: 940px;
}

.privacy-card h2 {
  margin-top: 1.1rem;
  font-size: 1.06rem;
}

.privacy-rights {
  margin: 0 0 1rem 1.05rem;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.site-footer {
  background: linear-gradient(160deg, #1a4536, #123227);
  color: #d7dfd2;
  padding-block: 2.5rem 1.15rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.56rem;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
}

.site-footer p {
  color: #ced8ca;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #e6ebdf;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(216, 177, 97, 0.26);
  margin-top: 1.2rem;
  padding-top: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-bottom p + p {
  margin-left: auto;
  text-align: right;
}

.sticky-cta-panel {
  position: fixed;
  right: clamp(-13rem, -16vw, -9rem);
  top: 38%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 14px 34px rgba(1, 55, 42, 0.34));
  z-index: 1100;
}

body.menu-open .sticky-cta-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sticky-cta-single {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(17.6rem, 23vw, 23.8rem);
  aspect-ratio: 200 / 180;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta-single:hover {
  transform: translateX(-2.5rem) scale(1.055);
}

.sticky-cta-single:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
  border-radius: 0.9rem;
}

.sticky-cta-single svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sticky-cta-label {
  position: absolute;
  left: 23%;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(0.66rem, 0.92vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sticky-cta-label-top {
  top: 28%;
  white-space: normal;
  line-height: 1.08;
  text-align: center;
}

.sticky-cta-label-top-hover {
  top: 42%;
  white-space: normal;
  line-height: 1.14;
  text-align: center;
  max-width: 15ch;
  opacity: 0;
  transform: translate(-50%, 8px);
  left: 30%;
}

.sticky-cta-label-bottom {
  top: 63%;
  white-space: normal;
  line-height: 1.08;
  text-align: center;
}

.sticky-cta-label-bottom-hover {
  top: 44%;
  white-space: normal;
  line-height: 1.12;
  text-align: center;
  max-width: 15ch;
  opacity: 0;
  transform: translate(-50%, 8px);
  left: 30%;
}

.sticky-cta-phone {
  display: inline-block;
  margin-top: 0.08rem;
  font-size: clamp(0.63rem, 0.88vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.sticky-cta-single svg path {
  transition: fill 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta-single svg path:nth-of-type(1) {
  fill: #d8b161;
  transition-delay: 0ms;
}

.sticky-cta-single svg path:nth-of-type(2) {
  fill: #126e57;
  transition-delay: 0ms;
}

.sticky-cta-single[data-hover-zone="green"]:hover {
  filter: drop-shadow(0 12px 24px rgba(18, 110, 87, 0.42));
}

.sticky-cta-single[data-hover-zone="gold"]:hover {
  filter: drop-shadow(0 12px 24px rgba(216, 177, 97, 0.44));
}

.sticky-cta-single[data-hover-zone="green"]:hover svg path {
  fill: #126e57;
}

.sticky-cta-single[data-hover-zone="green"]:hover .sticky-cta-label-top {
  opacity: 0;
}

.sticky-cta-single[data-hover-zone="green"]:hover .sticky-cta-label-bottom {
  opacity: 0;
}

.sticky-cta-single[data-hover-zone="green"]:hover .sticky-cta-label-top-hover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sticky-cta-single[data-hover-zone="gold"]:hover svg path {
  fill: #d8b161;
}

.sticky-cta-single[data-hover-zone="gold"]:hover .sticky-cta-label-top,
.sticky-cta-single[data-hover-zone="gold"]:hover .sticky-cta-label-top-hover,
.sticky-cta-single[data-hover-zone="gold"]:hover .sticky-cta-label-bottom {
  opacity: 0;
}

.sticky-cta-single[data-hover-zone="gold"]:hover .sticky-cta-label-bottom-hover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sticky-cta-single[data-hover-zone="green"]:hover svg path:nth-of-type(2) {
  transition-delay: 45ms;
}

.sticky-cta-single[data-hover-zone="gold"]:hover svg path:nth-of-type(1) {
  transition-delay: 45ms;
}


.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 1.24rem;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(1, 35, 28, 0.88);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1350;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  width: min(95vw, 920px);
}

#lightboxImage {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 0.72rem;
  border: 1px solid rgba(224, 185, 122, 0.35);
  background: #163d31;
  touch-action: pan-y;
}

#lightboxCaption {
  margin-top: 0.55rem;
  margin-bottom: 0;
  color: #f3f5ed;
  text-align: center;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  right: 0.45rem;
  top: 0.45rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 35, 28, 0.76);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(224, 185, 122, 0.45);
  border-radius: 999px;
  background: rgba(1, 35, 28, 0.74);
  color: #ffffff;
  font-size: 1.85rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.lightbox-prev {
  left: 0.45rem;
}

.lightbox-next {
  right: 0.45rem;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(10, 87, 69, 0.9);
  border-color: rgba(255, 255, 255, 0.58);
}

.lightbox-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {

  .sticky-cta-single {
    width: clamp(16.4rem, 30vw, 21.2rem);
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    max-width: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transformations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {

  .sticky-cta-panel {
    display: none;
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    position: relative;
    z-index: 1310;
    touch-action: manipulation;
  }

  .main-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    padding: calc(var(--header-h) + 0.55rem) 0.62rem 1rem;
    overflow-y: auto;
    background: #f6f4ed;
    border-left: 1px solid #d8dfd3;
    box-shadow: -10px 0 24px rgba(1, 55, 42, 0.16);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.22s ease, visibility 0.22s ease;
    will-change: transform;
    z-index: 1300;
  }

  body.menu-open .main-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0;
  }

  .main-menu ul > li {
    width: 100%;
  }

  .main-menu li + li {
    border-top: 0;
  }

  .main-menu ul > li > a {
    display: block;
    width: 100%;
    padding: 0.78rem;
    border: 1px solid #d8dfd4;
    background: #ffffff;
    border-radius: 0.72rem;
  }

  .menu-extras {
    display: grid;
    gap: 0.72rem;
    margin-top: 0.22rem;
    padding-top: 0.72rem;
    border-top: 1px solid #d8dfd3;
  }

  .menu-cta {
    width: 100%;
  }

  .menu-extras .social-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .menu-extras .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
  }

  .header-tools {
    display: none;
  }

  .hero-shell h1 {
    max-width: 20ch;
  }

  .hero-layout::after {
    width: min(clamp(215px, 44vw, 320px), calc(60svh * 0.6667));
  }

  .insurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 3rem;
  }

  .review-slide {
    min-height: 360px;
    border-radius: 1.2rem;
  }

  .review-quote-mark {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 2.1rem;
    right: 0.8rem;
    top: 0.8rem;
  }

  .review-text {
    max-width: 100%;
    font-size: clamp(1.05rem, 5.1vw, 1.45rem);
    line-height: 1.45;
  }

  .review-name {
    font-size: 1.24rem;
  }

  .site-announcement-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .hero-layout {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  .hero-layout::after {
    width: min(72vw, 300px);
    align-self: center;
    margin-top: 0.55rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .transformations-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    min-height: 300px;
  }
}

@media (max-width: 560px) {

  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .service-title {
    font-size: 1.08rem;
  }

  .service-card-body {
    padding: 0.88rem 0.88rem 1rem;
  }

  .header-tools {
    gap: 0.4rem;
  }

  .social-links a {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.64rem;
  }

  .lang-btn {
    font-size: 0.68rem;
    padding: 0.31rem 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .form-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .about-cards,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pdf-panel-actions .btn {
    width: 100%;
  }
}

@media (hover: none) {
  .sticky-cta-panel {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(8, 53, 44, 0.2);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(8, 53, 44, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.cookie-consent__title {
  margin: 0;
  font-size: 1.05rem;
  color: #0c3f36;
}

.cookie-consent__text {
  margin: 0.38rem 0 0;
  color: #22483f;
  font-size: 0.94rem;
  line-height: 1.5;
}

.cookie-consent__text a {
  color: #0b6856;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.cookie-settings-trigger {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1150;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: #0f6c58;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 53, 44, 0.24);
}

.cookie-settings-trigger:hover {
  background: #0c5a49;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 14, 0.52);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(8, 53, 44, 0.18);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 20px 46px rgba(4, 22, 18, 0.26);
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.cookie-modal__title {
  margin: 0;
  font-size: 1.2rem;
  color: #0c3f36;
}

.cookie-modal__close {
  border: 0;
  background: transparent;
  color: #153a33;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.cookie-modal__text {
  margin: 0.5rem 0 0.8rem;
  color: #24493f;
  font-size: 0.93rem;
}

.cookie-category {
  border: 1px solid rgba(10, 67, 55, 0.18);
  border-radius: 14px;
  padding: 0.78rem 0.86rem;
  background: #f7fbfa;
}

.cookie-category + .cookie-category {
  margin-top: 0.62rem;
}

.cookie-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cookie-category__title {
  margin: 0;
  font-size: 0.98rem;
  color: #0e3f36;
}

.cookie-category__state {
  color: #0d604f;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: none;
}

.cookie-category__desc {
  margin: 0.38rem 0 0;
  color: #2b4e45;
  font-size: 0.87rem;
  line-height: 1.45;
}

.cookie-category--toggle {
  position: relative;
  display: block;
  cursor: pointer;
}

.cookie-switch {
  position: absolute;
  top: 0.76rem;
  right: 0.82rem;
  width: 44px;
  height: 26px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.cookie-switch__slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #9bb7b0;
  transition: background-color 0.2s ease;
}

.cookie-switch__slider::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: #0d6a57;
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  transform: translateX(18px);
}

.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .cookie-consent__panel {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .cookie-consent {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .cookie-consent__panel {
    border-radius: 14px;
    padding: 0.86rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }

  .cookie-settings-trigger {
    left: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.74rem;
  }

  .cookie-modal {
    padding: 0.6rem;
  }

  .cookie-modal__dialog {
    border-radius: 14px;
    padding: 0.84rem;
  }

  .cookie-modal__footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-modal__footer .btn {
    width: 100%;
  }
}
