/* =========================
   PREMIUM ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform:
    translate3d(0, 70px, 0)
    scale(0.98);

  transition:
    opacity 1s cubic-bezier(.19,1,.22,1),
    transform 1s cubic-bezier(.19,1,.22,1);

  will-change:
    transform,
    opacity;
}

.reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0,0,0)
    scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* =========================
   PREMIUM HOVERS
========================= */

.feature-card,
.service-card,
.review-card,
.gallery__item,
.trust-card,
.price-board,
.location__content {
  transition:
    transform 0.55s cubic-bezier(.19,1,.22,1),
    box-shadow 0.55s cubic-bezier(.19,1,.22,1),
    border-color 0.4s ease,
    background 0.4s ease;
}

.feature-card:hover,
.service-card:hover,
.review-card:hover,
.trust-card:hover,
.location__content:hover {
  transform:
    translateY(-8px)
    translateZ(0);

  box-shadow:
    0 30px 90px rgba(21,23,19,0.08);
}

.gallery__item {
  position: relative;
}

.gallery__item::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(255,255,255,0),
      rgba(255,255,255,0.06)
    );

  opacity: 0;

  transition: 0.45s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item img {
  transition:
    transform 1.1s cubic-bezier(.19,1,.22,1),
    filter 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

/* =========================
   BUTTON ANIMATIONS
========================= */

.btn,
.header__button,
.mobile-sticky__item,
.messenger-link {
  transition:
    transform 0.35s cubic-bezier(.19,1,.22,1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.btn:hover,
.header__button:hover {
  transform:
    translateY(-3px)
    scale(1.01);

  box-shadow:
    0 18px 40px rgba(21,23,19,0.12);
}

.btn:active,
.header__button:active {
  transform:
    translateY(0)
    scale(0.98);
}

/* =========================
   PARALLAX DEPTH
========================= */

.hero__media,
.gallery__item--large,
.feature-card--large {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* =========================
   SMOOTH SECTION APPEAR
========================= */

.hero,
.intro,
.features,
.services,
.prices,
.gallery,
.reviews-geo,
.location-section,
.trust,
.faq,
.booking-cta,
.booking-form-section {
  position: relative;
  overflow: hidden;
}

/* =========================
   PREMIUM GLOW
========================= */

.feature-card--dark::before,
.booking-cta__box::before,
.mobile-menu__panel::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  top: -240px;
  right: -180px;

  border-radius: 50%;

  background:
    radial-gradient(
      rgba(223,228,210,0.16),
      transparent 70%
    );

  pointer-events: none;
}

/* =========================
   MOBILE PERFORMANCE
========================= */

@media (max-width: 980px) {

  .reveal {
    transform:
      translate3d(0, 34px, 0)
      scale(0.99);
  }

  .feature-card:hover,
  .service-card:hover,
  .review-card:hover,
  .trust-card:hover,
  .location__content:hover,
  .btn:hover,
  .header__button:hover {
    transform: none;
  }

}
/* =========================
   PREMIUM FOOTER REDESIGN
========================= */

.site-footer {
  position: relative;
  padding: 120px 0 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(139,149,119,0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(223,228,210,0.08), transparent 24%),
    #11140f;
  color: #fff;
}

.footer-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  filter: blur(0.2px);
}

.footer-decor--left {
  left: 54px;
  top: 70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(223,228,210,0.7), transparent 64%);
}

.footer-decor--right {
  right: 40px;
  top: 60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(223,228,210,0.45), transparent 65%);
}

.footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.62fr 0.72fr 0.72fr;
  gap: 72px;
  align-items: start;
}

.footer__mini-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--color-green-soft);
  background: rgba(223,228,210,0.08);
  border: 1px solid rgba(223,228,210,0.12);
  font-size: 30px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 26px;
  font-family: var(--font-title);
  font-size: clamp(58px, 5.4vw, 92px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: #fff;
}

.footer__text {
  max-width: 510px;
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 18px;
  line-height: 1.75;
}

.footer__contacts-list {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  color: #fff;
}

.footer-contact > span {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(223,228,210,0.16);
  color: var(--color-green-soft);
  font-size: 22px;
}

.footer-contact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.footer-contact small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.45;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer__column h3 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 18px;
  font-family: var(--font-text);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.footer__column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-green);
}

.footer__column a {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.45;
  transition: 0.25s ease;
}

.footer__column a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-green);
}

.footer__column a:hover {
  color: var(--color-green-soft);
  transform: translateX(4px);
}

.footer__bottom {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,0.54);
  font-size: 15px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__socials a {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  transition: 0.25s ease;
}

.footer__socials a:hover {
  background: var(--color-green-soft);
  color: var(--color-dark);
  transform: translateY(-3px);
}

/* =========================
   PREMIUM MOBILE STICKY REDESIGN
========================= */

.mobile-sticky {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display: none;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 0;
  padding: 12px;
  border-radius: 26px;
  background: rgba(18,21,16,0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  border: 1px solid rgba(223,228,210,0.12);
}

.mobile-sticky__item {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: 18px;
  font-weight: 800;
  transition: 0.25s ease;
}

.mobile-sticky__item + .mobile-sticky__item {
  border-left: 1px solid rgba(255,255,255,0.14);
}

.mobile-sticky__item span {
  font-size: 21px;
  line-height: 1;
}

.mobile-sticky__item small {
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.mobile-sticky__item--accent {
  border-left: 0 !important;
  background:
    linear-gradient(135deg, var(--color-green-soft), #aebc91);
  color: var(--color-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}

.mobile-sticky__item:active {
  transform: scale(0.97);
}

@media (max-width: 1180px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
}

@media (max-width: 980px) {
  .site-footer {
    padding: 86px 0 150px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer__logo {
    font-size: clamp(54px, 15vw, 78px);
  }

  .footer__text {
    font-size: 16px;
  }

  .footer-contact {
    grid-template-columns: 52px 1fr;
  }

  .footer-contact > span {
    width: 52px;
    height: 52px;
  }

  .footer-contact strong {
    font-size: 20px;
  }

  .footer__column h3 {
    font-size: 23px;
  }

  .footer__column a {
    font-size: 17px;
  }

  .footer__bottom {
    margin-top: 56px;
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-sticky {
    display: grid;
  }
}

@media (max-width: 520px) {
  .mobile-sticky {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px;
    border-radius: 22px;
  }

  .mobile-sticky__item {
    min-height: 58px;
    gap: 6px;
  }

  .mobile-sticky__item small {
    font-size: 13px;
  }

  .mobile-sticky__item span {
    font-size: 18px;
  }
}
/* =========================
}
/* =========================
   BREADCRUMBS
========================= */

.breadcrumbs {
  padding: 22px 0 0;
  background: var(--color-bg);
}

.breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs__inner a {
  color: var(--color-green-dark);
  transition: 0.25s ease;
}

.breadcrumbs__inner a:hover {
  color: var(--color-text);
}

.breadcrumbs__inner span {
  color: var(--color-muted);
}

/* =========================
   HEADER DROPDOWN
========================= */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: 360px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(251, 248, 240, 0.96);
  border: 1px solid rgba(23, 22, 17, 0.08);
  box-shadow: 0 28px 80px rgba(21, 23, 19, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.28s ease;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
}

.nav-dropdown a {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.nav-dropdown a:hover {
  background: rgba(223, 228, 210, 0.42);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a span {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
}

.nav-dropdown a small {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.nav-dropdown--schedule {
  width: 390px;
}

.nav-today {
  margin-bottom: 8px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(223, 228, 210, 0.62), transparent 44%),
    var(--color-dark);
  color: #fff;
}

.nav-today span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-today strong {
  display: block;
  font-family: var(--font-title);
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.nav-today p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.nav-today small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.45;
}

/* =========================
   MOBILE TODAY
========================= */

.mobile-today {
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(223, 228, 210, 0.12);
}

.mobile-today span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-today strong {
  display: block;
  font-family: var(--font-title);
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #fff;
}

.mobile-today p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .breadcrumbs {
    padding-top: 16px;
  }

  .breadcrumbs__inner {
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }
}
/* =========================
   PREMIUM HEADER DECOR
========================= */

.site-header {
  position: sticky;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  right: 120px;
  top: -90px;
  width: 360px;
  height: 260px;
  opacity: 0.075;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, var(--color-green-dark) 0 8%, transparent 9%),
    radial-gradient(ellipse at 42% 35%, var(--color-green-dark) 0 9%, transparent 10%),
    radial-gradient(ellipse at 58% 58%, var(--color-green-dark) 0 8%, transparent 9%),
    radial-gradient(ellipse at 75% 38%, var(--color-green-dark) 0 7%, transparent 8%),
    radial-gradient(ellipse at 88% 62%, var(--color-green-dark) 0 8%, transparent 9%);
  transform: rotate(-18deg);
  filter: blur(0.2px);
  z-index: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 90px;
  bottom: -80px;
  width: 260px;
  height: 180px;
  opacity: 0.06;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, var(--color-green-dark) 0 7%, transparent 8%),
    radial-gradient(circle at 42% 38%, var(--color-green-dark) 0 8%, transparent 9%),
    radial-gradient(circle at 62% 58%, var(--color-green-dark) 0 7%, transparent 8%),
    radial-gradient(circle at 80% 42%, var(--color-green-dark) 0 6%, transparent 7%);
  transform: rotate(14deg);
  z-index: 0;
}

.header__inner {
  position: relative;
  z-index: 2;
}

.logo {
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 8px;
  width: 18px;
  height: 18px;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at center, var(--color-green-dark) 0 45%, transparent 48%);
  border-radius: 60% 40% 60% 40%;
  transform: rotate(-28deg);
}

.header__nav {
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(23, 22, 17, 0.035);
  backdrop-filter: blur(10px);
}

.header__button {
  box-shadow:
    0 12px 34px rgba(21, 23, 19, 0.08);
}

@media (max-width: 980px) {
  .site-header::before {
    right: -80px;
    top: -70px;
    width: 260px;
    height: 200px;
    opacity: 0.06;
  }

  .site-header::after {
    display: none;
  }

  .logo::after {
    right: -22px;
    top: 6px;
    width: 14px;
    height: 14px;
  }

  .header__nav {
    background: transparent;
    border: 0;
    padding: 0;
    backdrop-filter: none;
  }
}
/* =========================
   FLOATING PREMIUM HEADER
========================= */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0;
  margin: 14px 0 0;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.site-header::before,
.site-header::after,
.logo::after {
  display: none !important;
}

.header__inner {
  min-height: 76px;
  padding: 10px 14px 10px 28px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(246,241,232,0.72));
  border: 1px solid rgba(23,22,17,0.06);
  box-shadow:
    0 18px 60px rgba(21,23,19,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
}

.logo {
  color: var(--color-green-dark);
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.header__nav {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  gap: 24px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 800;
}

.header__button {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  box-shadow:
    0 12px 34px rgba(21,23,19,0.12);
}

@media (max-width: 980px) {

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .header__inner {
    min-height: 70px;
    padding: 8px 10px 8px 22px;
    border-radius: 999px;
  }

  .logo {
    font-size: 31px;
  }

  .burger {
    width: 54px;
    height: 54px;
  }

}
/* =========================
   DESKTOP DROPDOWN MENU RESTORE
========================= */

@media (min-width: 981px) {

  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    width: 370px;
    padding: 14px;
    border-radius: 26px;
    background: rgba(251, 248, 240, 0.96);
    border: 1px solid rgba(23, 22, 17, 0.08);
    box-shadow: 0 28px 80px rgba(21, 23, 19, 0.14);
    backdrop-filter: blur(18px);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.28s ease;
    z-index: 1500;
  }

  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    height: 24px;
  }

  .nav-dropdown a {
    display: grid;
    gap: 5px;
    padding: 16px;
    border-radius: 18px;
    transition: 0.25s ease;
  }

  .nav-dropdown a:hover {
    background: rgba(223, 228, 210, 0.42);
  }

  .nav-dropdown a::after {
    display: none !important;
  }

  .nav-dropdown a span {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 900;
  }

  .nav-dropdown a small {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
  }

  .nav-dropdown--schedule {
    width: 410px;
  }

  .nav-today {
    margin-bottom: 8px;
    padding: 20px;
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(223, 228, 210, 0.62), transparent 44%),
      var(--color-dark);
    color: #fff;
  }

  .nav-today span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-green-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav-today strong {
    display: block;
    font-family: var(--font-title);
    font-size: 38px;
    line-height: 0.9;
    letter-spacing: -0.045em;
  }

  .nav-today p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.5;
  }

  .nav-today small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.45;
  }

}
/* =========================
   DEVELOPER CREDIT
========================= */

.footer-dev {
  display: grid;
  gap: 10px;
}

.developer-credit {
  position: relative;
  width: fit-content;
}

.developer-credit__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.52);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.developer-credit__button:hover {
  color: var(--color-green-soft);
}

.developer-card {
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  width: 340px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(251,248,240,0.96);
  color: var(--color-text);
  border: 1px solid rgba(23,22,17,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 20;
}

.developer-credit:hover .developer-card,
.developer-credit:focus-within .developer-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.developer-card img {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
}

.developer-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 900;
}

.developer-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.developer-card__links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.developer-card__links a {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.developer-card__links a:hover {
  background: var(--color-green-dark);
}

@media (max-width: 980px) {
  .developer-card {
    left: 0;
    width: min(340px, calc(100vw - 40px));
  }
}
/* =========================
   FOOTER WITH MAP FIX
========================= */

.footer__top--with-map {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: start;
}

.footer__logo-img {
  display: block;
  max-width: 320px;
  margin-bottom: 28px;
}

.footer__logo-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__map {
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  filter: grayscale(0.1) contrast(0.95);
}

.footer__columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .footer__top--with-map {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__logo-img {
    max-width: 240px;
  }

  .footer__map,
  .footer__map iframe {
    min-height: 320px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 12px;
  }
}
/* =========================
   DROPDOWN WEATHER
========================= */

.nav-today--weather {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 16px;
  align-items: stretch;
}

.nav-weather {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-weather span {
  margin: 0 0 8px;
  color: var(--color-green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-weather strong {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  font-size: 44px;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.nav-weather p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.35;
}
/* =========================
   HEADER FINAL FIX
========================= */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0;
  margin: 14px 0 0;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.header__inner {
  min-height: 76px;
  padding: 10px 14px 10px 28px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(246,241,232,0.76));
  border: 1px solid rgba(23,22,17,0.06);
  box-shadow:
    0 18px 60px rgba(21,23,19,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
}

.logo {
  color: var(--color-green-dark);
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.header__nav {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.header-nav-link,
.header__nav > a {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-nav-link::after,
.header__nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: 0.25s ease;
}

.header-nav-link:hover::after,
.header__nav > a:hover::after {
  width: 100%;
}

.header-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 370px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(251,248,240,0.97);
  border: 1px solid rgba(23,22,17,0.08);
  box-shadow: 0 28px 80px rgba(21,23,19,0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 3000;
}

.header-nav-item:hover .header-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 22px;
}

.header-dropdown a {
  display: grid !important;
  gap: 5px;
  padding: 16px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.header-dropdown a:hover {
  background: rgba(223,228,210,0.42);
}

.header-dropdown a::after {
  display: none !important;
}

.header-dropdown a strong {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.header-dropdown a span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.header-dropdown--schedule {
  width: 430px;
}

.header-dropdown-today {
  margin-bottom: 8px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(223,228,210,0.36), transparent 44%),
    var(--color-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 16px;
}

.header-dropdown-today span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-dropdown-today strong {
  display: block;
  font-family: var(--font-title);
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.header-dropdown-today p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.5;
}

.header-dropdown-today small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  line-height: 1.45;
}

.header-weather {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-weather span {
  margin: 0 0 8px;
  color: var(--color-green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-weather strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 44px;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.header-weather p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .header__nav {
    gap: 16px !important;
  }

  .header-nav-link,
  .header__nav > a {
    font-size: 14px;
  }

  .logo {
    font-size: 30px;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .header__inner {
    min-height: 70px;
    padding: 8px 10px 8px 22px;
  }

  .logo {
    font-size: 31px;
  }

  .header__nav,
  .header__button {
    display: none !important;
  }

  .burger {
    display: block;
    width: 54px;
    height: 54px;
  }
}
/* =========================
   FEATURES BENTO FINAL FIX
========================= */

.features {
  padding: 110px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-auto-rows: 270px;
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  min-height: 0 !important;
  height: 100%;
  overflow: hidden;
}

.feature-card--large {
  grid-column: span 1;
  grid-row: span 2;
}

.feature-card--dark {
  grid-column: span 2;
  grid-row: span 1;
}

.feature-card--image {
  grid-column: span 1;
  grid-row: span 1;
}

.feature-card--photo {
  position: relative;
}

.feature-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: none;
  color: #fff;
}

.feature-card__content h3 {
  max-width: 620px;
  text-shadow: 0 2px 26px rgba(8,10,6,0.72), 0 1px 4px rgba(8,10,6,0.55);
}

.feature-card__content p {
  max-width: 620px;
  color: #fff;
  text-shadow: 0 1px 16px rgba(8,10,6,0.72), 0 1px 3px rgba(8,10,6,0.6);
}

@media (max-width: 980px) {
  .features {
    padding: 80px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .feature-card,
  .feature-card--large,
  .feature-card--dark,
  .feature-card--image {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px !important;
  }

  .feature-card--large {
    min-height: 520px !important;
  }

  .feature-card__content {
    padding: 30px;
  }
}
/* =========================
   COMPACT FOOTER FINAL FIX
========================= */

.site-footer {
  padding: 86px 0 110px !important;
}

.footer__top--with-map {
  grid-template-columns: 0.72fr 1.28fr !important;
  gap: 34px !important;
}

.footer__logo-img {
  max-width: 210px !important;
  margin-bottom: 22px !important;
}

.footer__text {
  max-width: 390px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.footer__contacts-list {
  gap: 14px !important;
  margin-top: 30px !important;
}

.footer-contact {
  grid-template-columns: 46px 1fr !important;
  gap: 14px !important;
}

.footer-contact > span {
  width: 46px !important;
  height: 46px !important;
  font-size: 18px !important;
}

.footer-contact strong {
  font-size: 18px !important;
}

.footer-contact small {
  font-size: 13px !important;
}

.footer__map {
  min-height: 300px !important;
  border-radius: 26px !important;
}

.footer__map iframe {
  min-height: 300px !important;
}

.footer__columns {
  margin-top: 22px !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 42px !important;
}

.footer__column h3 {
  font-size: 22px !important;
  margin-bottom: 22px !important;
}

.footer__column a {
  font-size: 16px !important;
  line-height: 1.35 !important;
}

.footer__bottom {
  margin-top: 54px !important;
  padding-top: 26px !important;
}

@media (max-width: 980px) {
  .site-footer {
    padding: 70px 0 120px !important;
  }

  .footer__top--with-map {
    grid-template-columns: 1fr !important;
  }

  .footer__logo-img {
    max-width: 180px !important;
  }

  .footer__map,
  .footer__map iframe {
    min-height: 280px !important;
  }

  .footer__columns {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
}
/* =========================
   FINAL HEADER + DROPDOWNS + FOOTER + CERTIFICATE
========================= */

/* HEADER */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0;
  margin: 14px 0 0;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.header__inner {
  min-height: 76px;
  padding: 10px 14px 10px 28px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(246,241,232,0.78));
  border: 1px solid rgba(23,22,17,0.06);
  box-shadow:
    0 18px 60px rgba(21,23,19,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
}

.logo {
  color: var(--color-green-dark);
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.header__nav {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.header-nav-link,
.header__nav > a {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-nav-link::after,
.header__nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: 0.25s ease;
}

.header-nav-link:hover::after,
.header__nav > a:hover::after {
  width: 100%;
}

.header-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 370px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(251,248,240,0.97);
  border: 1px solid rgba(23,22,17,0.08);
  box-shadow: 0 28px 80px rgba(21,23,19,0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 3000;
}

.header-nav-item:hover .header-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 22px;
}

.header-dropdown a {
  display: grid !important;
  gap: 5px;
  padding: 16px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.header-dropdown a:hover {
  background: rgba(223,228,210,0.42);
}

.header-dropdown a::after {
  display: none !important;
}

.header-dropdown a strong {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.header-dropdown a span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.header-dropdown--schedule {
  width: 430px;
}

.header-dropdown--prices {
  width: 390px;
}

.header-dropdown-today {
  margin-bottom: 8px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(223,228,210,0.36), transparent 44%),
    var(--color-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 16px;
}

.header-dropdown-today span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-dropdown-today strong {
  display: block;
  font-family: var(--font-title);
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.header-dropdown-today p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.5;
}

.header-dropdown-today small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  line-height: 1.45;
}

.header-weather {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-weather span {
  margin: 0 0 8px;
  color: var(--color-green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-weather strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 44px;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.header-weather p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.35;
}

.header-cert-button {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(223,228,210,0.62), transparent 42%),
    var(--color-dark);
  color: #fff;
  display: grid;
  gap: 5px;
  text-align: left;
  cursor: pointer;
  transition: 0.25s ease;
}

.header-cert-button:hover {
  transform: translateY(-2px);
}

.header-cert-button strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.header-cert-button span {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.45;
}

.header__button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 12px 34px rgba(21,23,19,0.12);
}

/* CERTIFICATE MODAL */

body.modal-open {
  overflow: hidden;
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.28s ease;
}

.certificate-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.certificate-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,20,15,0.52);
  backdrop-filter: blur(14px);
}

.certificate-modal__box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 28px;
  border-radius: 36px;
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  overflow-y: auto;
  transition: 0.34s cubic-bezier(.19,1,.22,1);
}

.certificate-modal.is-active .certificate-modal__box {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.certificate-modal__close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.certificate-modal__preview {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  display: grid;
  place-items: center;
}

.certificate-paper {
  width: 100%;
  min-height: 600px;
  padding: 54px 34px;
  border: 2px solid var(--color-green-dark);
  color: var(--color-green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(139,149,119,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(139,149,119,0.12), transparent 28%),
    #fff;
}

.certificate-paper__logo {
  margin-bottom: 90px;
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.certificate-paper p {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 900;
}

.certificate-paper span {
  color: rgba(90,102,75,0.78);
  font-size: 17px;
}

.certificate-paper strong {
  margin-top: 12px;
  font-size: 42px;
  line-height: 1;
}

.certificate-paper small {
  margin-top: 70px;
  color: rgba(90,102,75,0.7);
  font-size: 16px;
}

.certificate-modal__content {
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate-modal__content h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.certificate-price {
  margin-top: 22px;
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--color-green-dark);
}

.certificate-select-label {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certificate-select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 800;
}

.certificate-modal__text {
  margin-top: 32px;
  display: grid;
  gap: 10px;
}

.certificate-modal__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.6;
}

.certificate-modal__content .btn {
  margin-top: 34px;
  width: fit-content;
}

/* COMPACT FOOTER */

.site-footer {
  padding: 86px 0 110px !important;
}

.footer__top--with-map {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr !important;
  gap: 34px !important;
  align-items: start;
}

.footer__logo-img {
  display: block;
  max-width: 210px !important;
  margin-bottom: 22px !important;
}

.footer__logo-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__text {
  max-width: 390px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.footer__contacts-list {
  gap: 14px !important;
  margin-top: 30px !important;
}

.footer-contact {
  grid-template-columns: 46px 1fr !important;
  gap: 14px !important;
}

.footer-contact > span {
  width: 46px !important;
  height: 46px !important;
  font-size: 18px !important;
}

.footer-contact strong {
  font-size: 18px !important;
}

.footer-contact small {
  font-size: 13px !important;
}

.footer__map {
  min-height: 300px !important;
  border-radius: 26px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px !important;
  display: block;
  border: 0;
  filter: grayscale(0.1) contrast(0.95);
}

.footer__columns {
  grid-column: 1 / -1;
  margin-top: 22px !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 42px !important;
}

.footer__column h3 {
  font-size: 22px !important;
  margin-bottom: 22px !important;
}

.footer__column a {
  font-size: 16px !important;
  line-height: 1.35 !important;
}

.footer__bottom {
  margin-top: 54px !important;
  padding-top: 26px !important;
}

.footer-dev {
  display: grid;
  gap: 10px;
}

.developer-credit {
  position: relative;
  width: fit-content;
}

.developer-credit__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.52);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.developer-credit__button:hover {
  color: var(--color-green-soft);
}

.developer-card {
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  width: 340px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(251,248,240,0.96);
  color: var(--color-text);
  border: 1px solid rgba(23,22,17,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 20;
}

.developer-credit:hover .developer-card,
.developer-credit:focus-within .developer-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.developer-card img {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
}

.developer-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 900;
}

.developer-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.developer-card__links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.developer-card__links a {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.developer-card__links a:hover {
  background: var(--color-green-dark);
}

/* ADAPTIVE */

@media (max-width: 1260px) {
  .header__nav {
    gap: 14px !important;
  }

  .header-nav-link,
  .header__nav > a {
    font-size: 13px;
  }

  .logo {
    font-size: 29px;
  }

  .header__button {
    padding: 0 20px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .header__inner {
    min-height: 70px;
    padding: 8px 10px 8px 22px;
  }

  .logo {
    font-size: 31px;
  }

  .header__nav,
  .header__button {
    display: none !important;
  }

  .burger {
    display: block;
    width: 54px;
    height: 54px;
  }

  .certificate-modal__box {
    grid-template-columns: 1fr;
    width: min(520px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 28px;
  }

  .certificate-paper {
    min-height: 420px;
  }

  .certificate-paper__logo {
    margin-bottom: 52px;
    font-size: 38px;
  }

  .certificate-modal__content {
    padding: 22px 8px 8px;
  }

  .site-footer {
    padding: 70px 0 120px !important;
  }

  .footer__top--with-map {
    grid-template-columns: 1fr !important;
  }

  .footer__logo-img {
    max-width: 180px !important;
  }

  .footer__map,
  .footer__map iframe {
    min-height: 280px !important;
  }

  .footer__columns {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .developer-card {
    left: 0;
    width: min(340px, calc(100vw - 40px));
  }
}
/* =========================
   FOOTER CONTACT ICONS + LEGAL FINAL
========================= */

.footer-icon--yandex {
  background: #fff !important;
  color: #e30613 !important;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.footer-icon--vk {
  background: #fff !important;
  color: #0077ff !important;
  font-weight: 900;
  font-size: 14px !important;
  font-family: Arial, sans-serif;
}

.footer__bottom--new {
  display: grid !important;
  grid-template-columns: 1fr auto auto auto;
  gap: 32px;
  align-items: center;
}

.footer-copy p {
  margin: 0;
  color: rgba(255,255,255,0.54);
  font-size: 15px;
}

.footer-dev--center {
  text-align: center;
  justify-self: center;
}

.footer-legal {
  display: grid;
  gap: 6px;
  min-width: 210px;
}

.footer-legal a {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  line-height: 1.35;
  transition: 0.25s ease;
}

.footer-legal a:hover {
  color: var(--color-green-soft);
}

.footer__socials--vk {
  justify-self: end;
}

.footer-vk-wrapper {
  position: relative;
}

.footer-vk-main {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  transition: 0.25s ease;
}

.footer-vk-main:hover {
  background: #0077ff;
  color: #fff;
}

.footer-vk-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: 280px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(251,248,240,0.96);
  color: var(--color-text);
  border: 1px solid rgba(23,22,17,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 30;
}

.footer-vk-wrapper:hover .footer-vk-popover,
.footer-vk-wrapper:focus-within .footer-vk-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.footer-vk-popover strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 900;
}

.footer-vk-popover p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer-vk-popover a {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0077ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .footer__bottom--new {
    grid-template-columns: 1fr !important;
    gap: 18px;
    text-align: left;
  }

  .footer-dev--center {
    justify-self: start;
    text-align: left;
  }

  .footer-legal {
    min-width: 0;
  }

  .footer__socials--vk {
    justify-self: start;
  }

  .footer-vk-popover {
    left: 0;
    right: auto;
  }
}
/* =========================
   VK LOGO FINAL
========================= */

.footer-icon--vk,
.footer-vk-main,
.mobile-sticky__item img,
.mobile-menu__contact-buttons img {
  overflow: hidden;
}

.footer-icon--vk {
  background: transparent !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
}

.footer-icon--vk img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 999px;
}

.footer-vk-main {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: transparent !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: 0.25s ease;
}

.footer-vk-main img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 999px;
}

.footer-vk-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,119,255,0.25);
}

.mobile-sticky__item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 7px;
}

.mobile-menu__contact-buttons img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 7px;
}

/* =========================
   YANDEX ICON FINAL
========================= */

.footer-icon--yandex {
  background: #fff !important;
  color: #e30613 !important;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

/* =========================
   FOOTER LEGAL FINAL
========================= */

.footer__bottom--new {
  display: grid !important;
  grid-template-columns: 1fr auto auto auto;
  gap: 32px;
  align-items: center;
}

.footer-copy p {
  margin: 0;
  color: rgba(255,255,255,0.54);
  font-size: 15px;
}

.footer-dev--center {
  text-align: center;
  justify-self: center;
}

.footer-legal {
  display: grid;
  gap: 6px;
  min-width: 210px;
}

.footer-legal a {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  line-height: 1.35;
  transition: 0.25s ease;
}

.footer-legal a:hover {
  color: var(--color-green-soft);
}

.footer__socials--vk {
  justify-self: end;
}

.footer-vk-wrapper {
  position: relative;
}

.footer-vk-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: 280px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(251,248,240,0.96);
  color: var(--color-text);
  border: 1px solid rgba(23,22,17,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 30;
}

.footer-vk-wrapper:hover .footer-vk-popover,
.footer-vk-wrapper:focus-within .footer-vk-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.footer-vk-popover strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 900;
}

.footer-vk-popover p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer-vk-popover a {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0077ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .footer__bottom--new {
    grid-template-columns: 1fr !important;
    gap: 18px;
    text-align: left;
  }

  .footer-dev--center {
    justify-self: start;
    text-align: left;
  }

  .footer-legal {
    min-width: 0;
  }

  .footer__socials--vk {
    justify-self: start;
  }

  .footer-vk-popover {
    left: 0;
    right: auto;
  }
}
/* BOOKING MODAL */

.booking-modal,
.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.28s ease;
}

.booking-modal.is-active,
.thanks-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__overlay,
.thanks-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,20,15,0.56);
  backdrop-filter: blur(14px);
}

.booking-modal__box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1040px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 34px;
  border-radius: 36px;
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  overflow-y: auto;
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  transition: 0.34s cubic-bezier(.19,1,.22,1);
}

.booking-modal.is-active .booking-modal__box,
.thanks-modal.is-active .thanks-modal__box {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.booking-modal__close,
.thanks-modal__close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.booking-modal__content {
  padding: 30px 0 30px 10px;
  align-self: center;
}

.booking-modal__content h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.booking-modal__content p:not(.section-label) {
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.booking-modal__form {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--color-line);
}

.thanks-modal__box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, calc(100vw - 32px));
  padding: 46px;
  border-radius: 34px;
  background: var(--color-bg);
  text-align: center;
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  transition: 0.34s cubic-bezier(.19,1,.22,1);
}

.thanks-modal__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
}

.thanks-modal__box h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.thanks-modal__box p {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

.thanks-modal__box .btn {
  margin-top: 30px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .booking-modal__box {
    grid-template-columns: 1fr;
    width: min(560px, calc(100vw - 24px));
    padding: 20px;
    border-radius: 28px;
    gap: 20px;
  }

  .booking-modal__content {
    padding: 20px 4px 0;
  }

  .booking-modal__form {
    padding: 20px;
  }

  .thanks-modal__box {
    padding: 34px 24px;
  }

  .thanks-modal__box h2 {
    font-size: 44px;
  }
}
/* =========================
   CONTACT FORM 7 BEAUTY FIX
========================= */

.bd-form {
  display: grid;
  gap: 22px;
}

.bd-field {
  display: grid;
  gap: 9px;
  margin: 0;
}

.bd-field span {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
}

.bd-field input,
.bd-field select,
.bd-field textarea {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid rgba(23,22,17,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
  outline: none;
  transition: 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.bd-field input:focus,
.bd-field select:focus,
.bd-field textarea:focus {
  border-color: var(--color-green-dark);
  box-shadow: 0 0 0 4px rgba(139,149,119,0.16);
}

.bd-field input::placeholder {
  color: rgba(23,22,17,0.36);
  font-weight: 600;
}

.bd-field select {
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-green-dark) 50%),
    linear-gradient(135deg, var(--color-green-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 18px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.bd-form__submit {
  margin-top: 8px;
}

.bd-form__submit input[type="submit"],
.wpcf7-submit {
  min-height: 64px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.bd-form__submit input[type="submit"]:hover,
.wpcf7-submit:hover {
  transform: translateY(-2px);
  background: var(--color-green-dark);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b94a48;
  font-size: 13px;
  font-weight: 700;
}

.wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 18px !important;
  font-size: 14px;
  font-weight: 700;
}

/* внутри модального окна */

.booking-modal__form .wpcf7 form {
  margin: 0;
}

.booking-modal__form {
  padding: 34px !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at top right, rgba(223,228,210,0.42), transparent 38%),
    rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(23,22,17,0.08) !important;
  box-shadow: 0 24px 80px rgba(21,23,19,0.08);
}

@media (max-width: 980px) {
  .bd-form {
    gap: 18px;
  }

  .bd-field input,
  .bd-field select {
    min-height: 58px;
    border-radius: 18px;
    font-size: 16px;
  }

  .bd-form__submit input[type="submit"],
  .wpcf7-submit {
    width: 100%;
    min-height: 60px;
  }

  .booking-modal__form {
    padding: 22px !important;
  }
}
/* =========================
   BOOKING MODAL COMPACT FIX
========================= */

.booking-modal__box {
  width: min(980px, calc(100vw - 36px)) !important;
  max-height: calc(100dvh - 36px) !important;
  padding: 26px !important;
  grid-template-columns: 0.78fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
  overflow-y: auto !important;
}

.booking-modal__content {
  padding: 34px 18px !important;
  align-self: center !important;
}

.booking-modal__content h2 {
  font-size: clamp(54px, 5.2vw, 82px) !important;
}

.booking-modal__content p:not(.section-label) {
  max-width: 420px;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.booking-modal__form {
  padding: 28px !important;
  border-radius: 30px !important;
  align-self: stretch !important;
}

.booking-modal__form .bd-form {
  display: grid !important;
  gap: 16px !important;
}

.booking-modal__form .bd-field {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
}

.booking-modal__form .bd-field span {
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.booking-modal__form .bd-field input,
.booking-modal__form .bd-field select {
  min-height: 54px !important;
  height: 54px !important;
  padding: 0 18px !important;
  border-radius: 18px !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.booking-modal__form .bd-form__submit {
  margin-top: 6px !important;
}

.booking-modal__form .wpcf7-submit {
  width: 100% !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
}

.booking-modal__close {
  right: 18px !important;
  top: 18px !important;
  width: 54px !important;
  height: 54px !important;
}

@media (max-width: 980px) {
  .booking-modal__box {
    width: min(560px, calc(100vw - 20px)) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 18px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    border-radius: 28px !important;
  }

  .booking-modal__content {
    padding: 16px 4px 0 !important;
  }

  .booking-modal__content h2 {
    font-size: 52px !important;
  }

  .booking-modal__content p:not(.section-label) {
    margin-top: 16px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .booking-modal__form {
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .booking-modal__form .bd-form {
    gap: 13px !important;
  }

  .booking-modal__form .bd-field input,
  .booking-modal__form .bd-field select {
    min-height: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
  }

  .booking-modal__close {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    top: 12px !important;
  }
}

@media (max-width: 520px) {
  .booking-modal__box {
    width: calc(100vw - 14px) !important;
    max-height: calc(100dvh - 14px) !important;
    padding: 14px !important;
  }

  .booking-modal__content h2 {
    font-size: 44px !important;
  }

  .booking-modal__form {
    padding: 14px !important;
  }

  .booking-modal__form .bd-field span {
    font-size: 13px !important;
  }

  .booking-modal__form .bd-field input,
  .booking-modal__form .bd-field select {
    min-height: 50px !important;
    height: 50px !important;
    font-size: 14px !important;
  }
}/* =========================
   CF7 FORM SPACING HARD FIX
========================= */

.booking-modal__form .wpcf7 p {
  margin: 0 !important;
  padding: 0 !important;
}

.booking-modal__form .wpcf7-form {
  display: grid !important;
  gap: 12px !important;
}

.booking-modal__form .bd-form {
  gap: 12px !important;
}

.booking-modal__form .bd-field {
  gap: 6px !important;
}

.booking-modal__form .bd-field span {
  margin: 0 !important;
  padding: 0 !important;
}

.booking-modal__form .bd-field input,
.booking-modal__form .bd-field select {
  margin: 0 !important;
}

.booking-modal__form .wpcf7-form-control-wrap {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.booking-modal__form .bd-form__submit {
  margin-top: 4px !important;
}

@media (max-width: 980px) {
  .booking-modal__form .wpcf7-form,
  .booking-modal__form .bd-form {
    gap: 10px !important;
  }
}
/* =========================
   CF7 FORM SPACING COMPACT
========================= */

.booking-modal__form .wpcf7 p {
  margin: 0 !important;
  padding: 0 !important;
}

.booking-modal__form .wpcf7-form {
  display: grid !important;
  gap: 8px !important;
}

.booking-modal__form .bd-form {
  display: grid !important;
  gap: 8px !important;
}

.booking-modal__form .bd-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.booking-modal__form .bd-field label {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.booking-modal__form .bd-field span {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.booking-modal__form .wpcf7-form-control-wrap {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.booking-modal__form input,
.booking-modal__form select {
  height: 54px !important;
  margin: 0 !important;
}

.booking-modal__form .bd-form__submit {
  margin-top: 6px !important;
}

@media (max-width: 980px) {

  .booking-modal__form .wpcf7-form,
  .booking-modal__form .bd-form {
    gap: 6px !important;
  }

  .booking-modal__form .bd-field {
    gap: 3px !important;
  }

  .booking-modal__form input,
  .booking-modal__form select {
    height: 50px !important;
  }
}
/* =========================
   VK ICON SIZE FIX
========================= */

.messenger-link img,
.booking-cta img,
.booking-cta__actions img,
.mobile-sticky img,
.mobile-menu img,
.footer-contact img,
.footer-vk-main img {
  max-width: 24px !important;
  max-height: 24px !important;
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  border-radius: 7px !important;
  display: inline-block !important;
}

.footer-vk-main img {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  border-radius: 999px !important;
}

.footer-icon--vk img {
  width: 46px !important;
  height: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  border-radius: 999px !important;
}

.messenger-link {
  overflow: hidden !important;
}

.messenger-link__icon img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
}