/* ==================================================================
   ЛапаДом — plain CSS (BEM, longhand, no pseudo-elements, no variables)
   ================================================================== */

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, h4, p, dl, dd, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  background-color: rgb(252, 251, 247);
  color: rgb(28, 34, 58);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 21px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.main-wrapper {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

/* -------- Container helper (unique BEM per block below) ---------- */

/* ================== HEADER ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(225, 227, 235);
  background-color: rgba(252, 251, 247, 0.96);
  backdrop-filter: blur(6px);
}
.site-header__container {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.site-header__logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
}
.site-header__logo-paw { font-size: 22px; line-height: 1; }
.site-header__logo-text {
  font-family: "Prata", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: rgb(28, 34, 58);
}
.site-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.site-nav__link {
  font-size: 16px;
  font-weight: 500;
  color: rgb(96, 104, 128);
  text-decoration: none;
  transition-property: color;
  transition-duration: 200ms;
}
.site-nav__link--hover { color: rgb(28, 34, 58); }
.site-nav__link--active { color: rgb(30, 43, 82); }
.site-header__cta {
  display: none;
  align-items: center;
  gap: 16px;
}
.site-header__phone {
  font-size: 16px;
  font-weight: 600;
  color: rgb(28, 34, 58);
  text-decoration: none;
  width: 116px;
  line-height: 1.25;
  text-align: center;
  transition-property: color;
  transition-duration: 200ms;
}
.site-header__phone--hover { color: rgb(30, 43, 82); }
.site-header__button {
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  width: 166px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition-property: opacity;
  transition-duration: 200ms;
}
.site-header__button--hover { opacity: 0.9; }
.site-header__burger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: transparent;
  color: rgb(28, 34, 58);
  cursor: pointer;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  gap: 5px;
}
.site-header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: rgb(28, 34, 58);
  border-radius: 2px;
}
.site-header__mobile {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
  background-color: rgb(252, 251, 247);
}
.site-header__mobile-inner {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
}
.site-header__mobile-link {
  border-radius: 10px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  font-size: 17px;
  font-weight: 500;
  color: rgb(28, 34, 58);
  text-decoration: none;
}
.site-header__mobile-link--hover { background-color: rgb(244, 243, 238); }
.site-header__mobile-phone {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  font-size: 17px;
  font-weight: 600;
  color: rgb(30, 43, 82);
  text-decoration: none;
}

/* Show desktop nav ≥1024px, hide burger */
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .site-header__cta { display: flex; }
  .site-header__burger { display: none; }
  .site-header__mobile { display: none !important; }
}

/* ================== PAGE / SECTIONS ================== */
.site-main { display: block; }
.page { display: none; }
.page--active { display: block; }
.page__section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.page__section--divider {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(225, 227, 235);
  background-color: rgb(248, 246, 240);
}
.page__section--tint { background-color: rgb(248, 246, 240); }
.page__container {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.page__container--narrow {
  max-width: 900px;
}
@media (min-width: 768px) {
  .page__section { padding-top: 112px; padding-bottom: 112px; }
  .page__container { padding-left: 32px; padding-right: 32px; }
}
@media (min-width: 1280px) {
  .page__container { padding-left: 64px; padding-right: 64px; }
}

.section-eyebrow {
  color: rgb(198, 148, 60);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.section-title {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: rgb(28, 34, 58);
  margin-top: 12px;
  margin-bottom: 0;
}
.section-title--hero {
  font-size: clamp(32px, 5vw, 64px);
}
.section-lead {
  margin-top: 20px;
  color: rgb(96, 104, 128);
  font-size: 21px;
  line-height: 1.6;
}
.section-head {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .section-title { font-size: 44px; }
}

/* ================== HOME HERO ================== */
.hero {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(225, 227, 235);
  background-color: rgb(248, 246, 240);
}
.hero__container {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-right: 16px;
  padding-bottom: 64px;
  padding-left: 16px;
  display: grid;
  gap: 48px;
  box-sizing: border-box;
}
.hero__inner { text-align: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(252, 251, 247);
  padding-top: 6px;
  padding-right: 16px;
  padding-bottom: 6px;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(96, 104, 128);
}
.hero__badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: rgb(198, 148, 60);
}
.hero__title {
  margin-top: 24px;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: rgb(28, 34, 58);
}
.hero__text {
  margin-top: 24px;
  color: rgb(96, 104, 128);
  font-size: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__button {
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 14px;
  padding-right: 28px;
  padding-bottom: 14px;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition-property: opacity;
  transition-duration: 200ms;
}
.hero__button--hover { opacity: 0.9; }
.hero__button-outline {
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(252, 251, 247);
  color: rgb(28, 34, 58);
  padding-top: 14px;
  padding-right: 28px;
  padding-bottom: 14px;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: 200ms;
}
.hero__button-outline--hover { background-color: rgb(244, 243, 238); }
.hero__stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-left: 0;
  padding-left: 0;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: "Prata", Georgia, serif;
  font-size: 30px;
  color: rgb(30, 43, 82);
  margin: 0;
}
.hero__stat-label {
  margin-top: 4px;
  font-size: 13px;
  color: rgb(96, 104, 128);
}
.hero__media { position: relative; margin-left: auto; margin-right: auto; width: 100%; max-width: 560px; }
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 50px -25px rgba(28, 34, 58, 0.25);
}
.hero__rating {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__rating-stars { color: rgb(198, 148, 60); font-size: 14px; letter-spacing: 1px; }
.hero__rating-num { font-family: "Prata", Georgia, serif; font-size: 18px; margin: 0; }
.hero__rating-caption { font-size: 12px; color: rgb(96, 104, 128); margin: 4px 0 0 0; }

@media (min-width: 768px) {
  .hero__container { padding-top: 96px; padding-bottom: 96px; }
  .hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .hero__container { grid-template-columns: 1fr 1fr; align-items: center; }
  .hero__media { margin-top: -20px; }
  .hero__inner { text-align: left; }
  .hero__text { margin-left: 0; margin-right: 0; }
  .hero__actions { justify-content: flex-start; }
  .hero__rating { left: 24px; transform: none; }
  .hero__stat { text-align: left; }
}

/* ================== GENERIC GRID CARDS ================== */
.card-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .card-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.card {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
  text-align: center;
}
.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgb(244, 243, 238);
  color: rgb(30, 43, 82);
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}
.icon-svg { width: 24px; height: 24px; display: block; }
.card__icon--filled { background-color: rgb(30, 43, 82); color: rgb(252, 251, 247); }
.card__title {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 0;
  color: rgb(28, 34, 58);
}
.card__text {
  margin-top: 12px;
  color: rgb(96, 104, 128);
  font-size: 16px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgb(30, 43, 82);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
@media (min-width: 768px) {
  .card--service { text-align: left; }
  .card--service .card__icon { margin-left: 0; margin-right: 0; }
  .card--service .card__link { justify-content: flex-start; }
}

.step-card {
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
}
.step-card__number {
  font-family: "Prata", Georgia, serif;
  color: rgb(198, 148, 60);
  font-size: 32px;
  margin: 0;
}
.step-card__title {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 0;
}
.step-card__text {
  margin-top: 10px;
  color: rgb(96, 104, 128);
  font-size: 15px;
}

/* ================== REVIEWS ================== */
.review-card {
  border-radius: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
  margin: 0;
}
.review-card__stars { color: rgb(198, 148, 60); font-size: 15px; letter-spacing: 1px; }
.review-card__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgb(28, 34, 58);
}
.review-card__footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
}
.review-card__name { font-weight: 600; color: rgb(28, 34, 58); margin: 0; }
.review-card__role { font-size: 13px; color: rgb(96, 104, 128); margin: 4px 0 0 0; }

/* ================== CTA BANNER ================== */
.cta-banner {
  border-radius: 24px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 48px;
  padding-right: 28px;
  padding-bottom: 48px;
  padding-left: 28px;
  text-align: center;
}
.cta-banner__title {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  color: rgb(252, 251, 247);
  margin: 0;
}
.cta-banner__text {
  margin-top: 14px;
  color: rgba(252, 251, 247, 0.8);
  font-size: 17px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cta-banner__primary {
  border-radius: 999px;
  background-color: rgb(252, 251, 247);
  color: rgb(30, 43, 82);
  padding-top: 14px;
  padding-right: 26px;
  padding-bottom: 14px;
  padding-left: 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.cta-banner__outline {
  border-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(252, 251, 247, 0.4);
  color: rgb(252, 251, 247);
  padding-top: 14px;
  padding-right: 26px;
  padding-bottom: 14px;
  padding-left: 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* ================== SERVICES PACKAGES ================== */
.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 900px) { .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.package-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
}
@media (min-width: 768px) {
  .package-card { padding-top: 40px; padding-right: 40px; padding-bottom: 40px; padding-left: 40px; }
}
.package-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.package-card__name {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0;
  color: rgb(28, 34, 58);
}
.package-card__price {
  color: rgb(198, 148, 60);
  font-weight: 600;
  font-size: 17px;
}
.package-card__desc {
  margin-top: 14px;
  color: rgb(96, 104, 128);
  font-size: 15px;
}
.package-card__perks {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-card__perk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: rgb(28, 34, 58);
}
.package-card__perk-mark {
  color: rgb(198, 148, 60);
  flex-shrink: 0;
  margin-top: 3px;
}
.package-card__cta {
  margin-top: 26px;
  align-self: flex-start;
  border-radius: 999px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 640px) { .district-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .district-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.district-grid__item {
  border-radius: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  text-align: center;
  font-size: 15px;
}

/* ================== VACANCIES ================== */
.vac-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 900px) { .vac-toolbar { grid-template-columns: minmax(0, 1fr) 260px; align-items: center; } }
.vac-toolbar__input,
.vac-toolbar__select {
  width: 100%;
  border-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 12px;
  padding-right: 22px;
  padding-bottom: 12px;
  padding-left: 22px;
  font-size: 16px;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}
.vac-toolbar__input--focus,
.vac-toolbar__select--focus { border-color: rgb(30, 43, 82); outline: none; }
.vac-count { margin-top: 20px; color: rgb(96, 104, 128); font-size: 13px; }
.vac-list { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.vac-card {
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
}
.vac-card__toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.vac-card__title {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: rgb(28, 34, 58);
}
.vac-card__short { margin-top: 8px; font-size: 15px; color: rgb(96, 104, 128); }
.vac-card__tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgb(96, 104, 128);
}
.vac-card__tag { display: inline-flex; align-items: center; gap: 6px; }
.vac-card__tag-mark { color: rgb(198, 148, 60); }
.vac-card__chev {
  color: rgb(30, 43, 82);
  font-size: 20px;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 200ms;
}
.vac-card__chev--open { transform: rotate(180deg); }
.vac-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
@media (min-width: 900px) { .vac-card__body { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.vac-card__body-title {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}
.vac-card__list {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: rgb(96, 104, 128);
}
.vac-card__cta {
  margin-top: 20px;
  display: inline-flex;
  border-radius: 999px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.vac-empty {
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: dashed;
  border-color: rgb(225, 227, 235);
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  text-align: center;
  color: rgb(96, 104, 128);
}

/* ================== FAQ ================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.faq-item {
  border-radius: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
}
.faq-item__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  font-size: 19px;
}
.faq-item__chev {
  color: rgb(30, 43, 82);
  font-size: 20px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 200ms;
}
.faq-item__chev--open { transform: rotate(180deg); }
.faq-item__a {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
  padding-top: 20px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  color: rgb(96, 104, 128);
  font-size: 15px;
}

/* ================== CONTACTS ================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-top: 8px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.contact-block { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  border-radius: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 26px;
  padding-right: 26px;
  padding-bottom: 26px;
  padding-left: 26px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgb(244, 243, 238);
  color: rgb(30, 43, 82);
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card__label {
  font-size: 12px;
  color: rgb(96, 104, 128);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}
.contact-card__value {
  margin-top: 6px;
  font-family: "Prata", Georgia, serif;
  font-size: 22px;
  color: rgb(28, 34, 58);
  text-decoration: none;
  display: block;
}
.contact-card__note { margin-top: 6px; color: rgb(96, 104, 128); font-size: 13px; }
.contact-form {
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
}
.contact-form__title { font-family: "Prata", Georgia, serif; font-weight: 400; font-size: 26px; margin: 0; }
.contact-form__intro { margin-top: 10px; color: rgb(96, 104, 128); font-size: 15px; }
.contact-form__row { margin-top: 16px; display: block; }
.contact-form__label { font-size: 13px; font-weight: 600; color: rgb(28, 34, 58); display: block; }
.contact-form__input,
.contact-form__textarea {
  margin-top: 8px;
  width: 100%;
  border-radius: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(252, 251, 247);
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  font-size: 15px;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}
.contact-form__textarea { min-height: 130px; resize: vertical; }
.contact-form__checkbox {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgb(96, 104, 128);
}
.contact-form__submit {
  margin-top: 20px;
  width: 100%;
  border-radius: 999px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 14px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 600;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-family: inherit;
}
.contact-form__success {
  margin-top: 16px;
  border-radius: 12px;
  background-color: rgb(244, 243, 238);
  padding-top: 14px;
  padding-right: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  text-align: center;
  color: rgb(28, 34, 58);
}

.map-wrap {
  overflow: hidden;
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.18);
  position: relative;
}
.map-wrap__frame { display: block; width: 100%; height: 420px; border-top-width: 0; border-right-width: 0; border-bottom-width: 0; border-left-width: 0; }
.map-wrap__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  max-width: 280px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.96);
  padding-top: 14px;
  padding-right: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  box-shadow: 0 10px 40px -20px rgba(28, 34, 58, 0.25);
  pointer-events: none;
}
.map-wrap__badge-title { font-family: "Prata", Georgia, serif; font-size: 17px; margin: 0; }
.map-wrap__badge-text { margin-top: 6px; font-size: 13px; color: rgb(96, 104, 128); }

/* ================== ABOUT REKV ================== */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  .about-split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.rekv {
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
}
.rekv__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  font-size: 15px;
}
@media (min-width: 768px) { .rekv__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.rekv__col { display: flex; flex-direction: column; gap: 8px; }
.rekv__muted { color: rgb(96, 104, 128); }

/* ================== DOCS PAGES ================== */
.doc-body { display: flex; flex-direction: column; gap: 20px; font-size: 15px; line-height: 1.65; }
.doc-body h2 { font-family: "Prata", Georgia, serif; font-weight: 400; font-size: 22px; margin: 20px 0 0 0; }
.doc-body ul { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.doc-body a { color: rgb(30, 43, 82); text-decoration: underline; }

/* ================== FOOTER ================== */
.site-footer {
  margin-top: 96px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
}
.site-footer__container {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-right: 16px;
  padding-bottom: 64px;
  padding-left: 16px;
  box-sizing: border-box;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.site-footer__col { display: block; }
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgb(252, 251, 247);
  color: rgb(30, 43, 82);
  font-size: 22px;
}
.site-footer__brand-text { font-family: "Prata", Georgia, serif; font-size: 22px; }
.site-footer__about { margin-top: 20px; color: rgba(252, 251, 247, 0.75); font-size: 16px; }
.site-footer__title { font-family: "Prata", Georgia, serif; font-weight: 400; font-size: 20px; margin: 0; }
.site-footer__list { margin-top: 18px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: rgba(252, 251, 247, 0.8); }
.site-footer__item { display: flex; align-items: flex-start; gap: 10px; }
.site-footer__icon { color: rgb(198, 148, 60); margin-top: 2px; flex-shrink: 0; }
.site-footer__link { color: inherit; text-decoration: none; }
.site-footer__link--hover { color: rgb(198, 148, 60); }
.site-footer__text { color: inherit; }
.site-footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(252, 251, 247, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(252, 251, 247, 0.6);
  font-size: 13px;
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.site-footer__copy { margin: 0; }

/* ================== COOKIE BANNER ================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
  background-color: rgba(252, 251, 247, 0.98);
  backdrop-filter: blur(6px);
  box-shadow: 0 -8px 30px -15px rgba(28, 34, 58, 0.2);
}
.cookie-banner__container {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
  padding-right: 16px;
  padding-bottom: 18px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .cookie-banner__container { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-banner__text { margin: 0; font-size: 14px; color: rgb(96, 104, 128); }
.cookie-banner__link { color: rgb(30, 43, 82); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-shrink: 0; gap: 10px; flex-wrap: wrap; }
.cookie-banner__more {
  border-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  padding-top: 10px;
  padding-right: 22px;
  padding-bottom: 10px;
  padding-left: 22px;
  color: rgb(28, 34, 58);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.cookie-banner__accept {
  border-radius: 999px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* ================== CHAT ================== */
.chat-launcher {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 12px;
  box-shadow: 0 15px 40px -15px rgba(28, 34, 58, 0.5);
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-family: inherit;
}
.chat-launcher--hover { opacity: 0.95; }
.chat-launcher__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: rgba(252, 251, 247, 0.4);
}
.chat-launcher__meta { display: none; flex-direction: column; text-align: left; line-height: 1.2; }
@media (min-width: 640px) { .chat-launcher__meta { display: flex; } }
.chat-launcher__title { font-size: 14px; font-weight: 600; }
.chat-launcher__hint { font-size: 12px; opacity: 0.8; }

.chat-window {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 0;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  box-shadow: 0 20px 50px -20px rgba(28, 34, 58, 0.5);
}
@media (min-width: 640px) {
  .chat-window { left: auto; width: 380px; right: 0; }
}
.has-cookie-banner .chat-launcher,
.has-cookie-banner .chat-window { bottom: 0; }
@media (min-width: 768px) {
  .has-cookie-banner .chat-launcher,
  .has-cookie-banner .chat-window { bottom: 0; }
}
.chat-window[hidden],
.chat-launcher[hidden] { display: none !important; }
.chat-window__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
}
.chat-window__who { display: flex; align-items: center; gap: 12px; }
.chat-window__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: rgba(252, 251, 247, 0.4);
}
.chat-window__meta { line-height: 1.2; }
.chat-window__name { margin: 0; font-size: 15px; font-weight: 600; }
.chat-window__status { margin: 4px 0 0 0; font-size: 12px; opacity: 0.8; }
.chat-window__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: transparent;
  color: rgb(252, 251, 247);
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}
.chat-window__close--hover { background-color: rgba(252, 251, 247, 0.15); }
.chat-window__body {
  flex-grow: 1;
  overflow-y: auto;
  background-color: rgb(248, 246, 240);
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg { display: flex; }
.chat-msg--bot { justify-content: flex-start; }
.chat-msg--user { justify-content: flex-end; }
.chat-msg__bubble {
  max-width: 85%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding-top: 10px;
  padding-right: 14px;
  padding-bottom: 10px;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.5;
}
.chat-msg__bubble--bot {
  background-color: rgb(255, 255, 255);
  color: rgb(28, 34, 58);
  border-bottom-left-radius: 6px;
  box-shadow: 0 8px 20px -10px rgba(28, 34, 58, 0.15);
}
.chat-msg__bubble--user {
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  border-bottom-right-radius: 6px;
}
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.chat-quick__btn {
  border-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(30, 43, 82, 0.3);
  background-color: rgb(255, 255, 255);
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  font-size: 13px;
  color: rgb(28, 34, 58);
  cursor: pointer;
  font-family: inherit;
  transition-property: background-color, color;
  transition-duration: 200ms;
}
.chat-quick__btn--hover { background-color: rgb(30, 43, 82); color: rgb(252, 251, 247); }
.chat-window__consent {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}
.chat-window__consent-text { margin: 0; font-size: 13px; color: rgb(96, 104, 128); }
.chat-window__consent-link { color: rgb(30, 43, 82); text-decoration: underline; }
.chat-window__consent-label {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgb(28, 34, 58);
}
.chat-window__consent-checkbox {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: rgb(30, 43, 82);
}
.chat-window__form {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(225, 227, 235);
  background-color: rgb(255, 255, 255);
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
}
.chat-window__input {
  flex-grow: 1;
  min-width: 0;
  border-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgb(225, 227, 235);
  background-color: rgb(252, 251, 247);
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  font-size: 15px;
  font-family: inherit;
  color: inherit;
}
.chat-window__input--focus { border-color: rgb(30, 43, 82); outline: none; }
.chat-window__submit {
  border-radius: 999px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  background-color: rgb(30, 43, 82);
  color: rgb(252, 251, 247);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
