:root {
  --kp-blue: #1f3d8f;
  --kp-blue-dark: #161936;
  --kp-dark: #161936;
  --kp-text: #242932;
  --kp-muted: #74777c;
  --kp-border: #e6eaee;
  --kp-bg: #ffffff;
  --kp-soft: #f4f8fc;
  --kp-container: 1320px;
  --kp-font: "Montserrat", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--kp-bg);
  color: var(--kp-text);
  font-family: var(--kp-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 420ms ease;
}

body.kp-page-loaded {
  opacity: 1;
}

body.has-gallery-modal {
  overflow: hidden;
}

a {
  color: var(--kp-blue-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--kp-blue);
}

img {
  max-width: 100%;
  height: auto;
}

.home-container,
.site-main,
.kp-section__inner {
  width: min(var(--kp-container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #eef1f4;
  transition: box-shadow 180ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(20, 28, 36, 0.08);
}

.site-topbar {
  border-bottom: 1px solid var(--kp-border);
  height: 42px;
  overflow: hidden;
  position: relative;
  transition: opacity 120ms ease, visibility 120ms ease;
}

.site-header.is-scrolled .site-topbar {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.site-topbar__inner,
.site-mainbar__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-topbar__inner {
  min-height: 56px;
}

.site-topbar p {
  margin: 0;
  color: var(--kp-blue);
  font-size: 20px;
  font-weight: 700;
}

.site-social {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 4px;
}

.site-social .site-social__instagram {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 10px 7px 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: linear-gradient(110deg, #5b2cbd, #d62d82 55%, #f28b32);
  box-shadow: 0 9px 26px rgba(175, 36, 126, 0.38);
  color: #ffffff;
  font-family: var(--kp-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  animation: instagram-callout-enter 780ms cubic-bezier(0.18, 0.85, 0.28, 1.18);
  isolation: isolate;
}

.site-social .site-social__instagram::before {
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -30%;
  width: 38%;
  height: 220%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transform: rotate(18deg);
  animation: instagram-callout-shine 900ms ease-in-out 850ms forwards;
}

.site-social .site-social__instagram img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-social .site-social__instagram:hover,
.site-social .site-social__instagram:focus {
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(175, 36, 126, 0.34);
  transform: translateY(-2px);
}

@keyframes instagram-callout-enter {
  0% {
    opacity: 0;
    transform: translateY(-48px) scale(0.92);
  }
  72% {
    opacity: 1;
    transform: translateY(4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes instagram-callout-shine {
  0% {
    left: -35%;
  }
  100% {
    left: 125%;
  }
}

.site-mainbar__inner {
  min-height: 154px;
  gap: 18px;
  transition: min-height 120ms ease;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header.is-scrolled .site-mainbar__inner {
  min-height: 86px;
}

.site-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 166px;
  min-height: 54px;
  color: var(--kp-blue-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  transform-origin: left center;
  transition: transform 120ms ease;
  text-decoration: none;
}

.site-header.is-scrolled .site-logo-mark {
  transform: scale(0.86);
}

.site-logo-mark::before,
.site-logo-mark::after,
.site-logo-mark span::before {
  display: none;
}

.site-logo-mark span {
  display: inline-block;
  max-width: 180px;
}

.main-navigation {
  margin-left: auto;
}

.primary-menu,
.primary-menu ul,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  color: #3c3f44;
  font-family: var(--kp-font);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus {
  color: var(--kp-blue-dark);
}

.site-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--kp-blue-dark);
  color: #ffffff;
  font-family: var(--kp-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 12px 15px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: min-height 180ms ease, padding 180ms ease, background 180ms ease;
}

.site-booking-button:hover,
.site-booking-button:focus {
  background: var(--kp-blue);
  color: #ffffff;
}

.site-header.is-scrolled .site-booking-button {
  min-height: 42px;
  padding: 10px 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--kp-border);
  border-radius: 0;
  background: #ffffff;
  color: var(--kp-text);
  padding: 0;
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__line {
  position: relative;
}

.menu-toggle__line::before,
.menu-toggle__line::after {
  position: absolute;
  left: 0;
}

.menu-toggle__line::before {
  top: -6px;
}

.menu-toggle__line::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line::after {
  transform: translateY(-6px) rotate(-45deg);
}

.home-hero {
  position: relative;
  min-height: 650px;
  background-color: #d9ecff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(255, 255, 255, 0.13);
  content: "";
  -webkit-backdrop-filter: blur(4px) brightness(1.12);
  backdrop-filter: blur(4px) brightness(1.12);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding: 72px 0;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(62%, 760px);
}

.home-kicker {
  margin: 0 0 12px;
  color: #74777c;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
}

.home-hero h1 {
  margin: 0 0 24px;
  color: #252a32;
  font-family: var(--kp-font);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.14;
}

.home-hero__content > p {
  max-width: 700px;
  margin: 0;
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 68%, rgba(255, 255, 255, 0.42) 100%);
  box-shadow: 0 16px 36px rgba(22, 25, 54, 0.11);
  color: #343a43;
  font-family: var(--kp-font);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.home-hero__directions-wrap {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.home-hero__content .home-hero__directions-note {
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  width: max-content;
  max-width: 350px;
  margin: 0;
  padding: 13px 18px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(22, 25, 54, 0.94);
  box-shadow: 0 16px 38px rgba(22, 25, 54, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(-18px, -50%) scaleX(0.82);
  transform-origin: left center;
  transition: opacity 320ms ease, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-hero__directions-note::before {
  position: absolute;
  top: 50%;
  left: 16px;
  content: "●";
  color: #67e8a5;
  font-size: 15px;
  transform: translateY(-50%);
}

.home-hero__directions-wrap.is-visible .home-hero__directions-note {
  opacity: 1;
  transform: translate(0, -50%) scaleX(1);
}

.home-hero__call {
  display: inline-flex;
  align-items: stretch;
  min-height: 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(22, 25, 54, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-hero__phone-number {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  padding: 9px 22px;
  color: var(--kp-dark);
  white-space: nowrap;
}

.home-hero__phone-number small {
  margin-bottom: 3px;
  color: #697386;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero__phone-number strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.home-hero__call-button,
.home-hero__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.home-hero__call-button {
  border-radius: 0;
  background: linear-gradient(135deg, #1f3d8f, #161936);
  color: #ffffff;
}

.home-hero__call-button::before {
  margin-right: 9px;
  content: "☎";
  font-size: 19px;
  line-height: 1;
}

.home-hero__directions {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.86);
  color: var(--kp-blue-dark);
  box-shadow: 0 14px 34px rgba(22, 25, 54, 0.13);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-hero__directions::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(31, 61, 143, 0.1);
  content: "⌖";
  font-size: 18px;
}

.home-hero__call-button:hover,
.home-hero__call-button:focus,
.home-hero__directions:hover,
.home-hero__directions:focus {
  border-color: var(--kp-blue);
  background: var(--kp-blue);
  box-shadow: 0 18px 36px rgba(31, 61, 143, 0.25);
  color: #ffffff;
  transform: translateY(-3px);
}

.home-hero__directions:hover::before,
.home-hero__directions:focus::before {
  background: rgba(255, 255, 255, 0.18);
}

.home-hero__portrait {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: 0;
  width: min(43vw, 540px);
  line-height: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: home-portrait-fade-in 1.1s ease-out 180ms forwards;
}

.home-hero__portrait img {
  display: block;
  width: 100%;
}

@keyframes home-portrait-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 74px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 18px 34px;
  text-transform: uppercase;
}

.home-button--primary {
  background: var(--kp-blue-dark);
  border-radius: 28px;
  color: #ffffff;
}

.home-button--primary:hover,
.home-button--primary:focus {
  background: var(--kp-blue);
  color: #ffffff;
}

.home-button--light {
  background: #ffffff;
  color: #24272c;
}

.home-button--outline {
  background: transparent;
  border-color: #d4dce4;
  color: #24272c;
}

.home-button--outline:hover,
.home-button--outline:focus {
  background: var(--kp-blue-dark);
  color: #ffffff;
}

.home-cta-band {
  background: var(--kp-dark);
  color: #ffffff;
}

.home-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 220px;
}

.home-cta-band h2 {
  margin: 0 0 4px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.home-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.home-cta-band p a {
  color: #ffffff;
  font-weight: 700;
}

.home-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 540px;
}

.home-feature--reverse .home-feature__image {
  order: 2;
}

.home-feature--reverse .home-feature__content {
  order: 1;
}

.home-feature__image {
  min-height: 540px;
  overflow: hidden;
}

.home-feature__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 690px;
  padding: 86px clamp(42px, 8vw, 110px);
}

.home-feature__content h2 {
  margin: 0 0 28px;
  color: #252a32;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.home-feature__content p:not(.home-kicker) {
  margin: 0 0 38px;
  color: #777a7f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
}

.home-treatments {
  scroll-margin-top: 110px;
  background: #ffffff;
  padding: 96px 0 92px;
}

.home-treatments__header {
  max-width: 940px;
  margin-bottom: 54px;
}

.home-treatments__header h2 {
  margin: 0 0 22px;
  color: var(--kp-dark);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
}

.home-treatments__header p {
  margin: 0;
  color: #657083;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.home-treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 34px;
}

.home-treatment-card {
  min-width: 0;
}

.home-treatment-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border-radius: 34px;
  color: #ffffff;
}

.home-treatment-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 50%);
  content: "";
  pointer-events: none;
}

.home-treatment-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.home-treatment-card:hover .home-treatment-card__media img {
  transform: scale(1.035);
}

.home-treatment-card__label {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #2c2a28;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 16px;
  text-transform: uppercase;
}

.home-treatment-card__arrow {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--kp-dark);
}

.home-treatment-card__arrow::before {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 17px;
  height: 17px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.home-treatment-card__body {
  padding: 26px 8px 0;
}

.home-treatment-card h3 {
  margin: 0 0 14px;
  color: var(--kp-dark);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.home-treatment-card h3 a {
  color: inherit;
}

.home-treatment-card__excerpt,
.home-treatment-card__excerpt p {
  margin: 0;
  color: #687386;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.home-process {
  background: var(--kp-dark);
  color: #ffffff;
}

.home-process__link {
  display: block;
  color: inherit;
  padding: 94px 0 88px;
}

.home-process__link:hover,
.home-process__link:focus {
  color: inherit;
}

.home-process__link:focus-visible {
  outline: 3px solid #65a6ff;
  outline-offset: -5px;
}

.home-process__header {
  max-width: 820px;
  margin-bottom: 52px;
}

.home-process__header h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.08;
}

.home-process__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.home-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-process__step {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.home-process__link:hover .home-process__step {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.home-process__step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--kp-dark);
  font-size: 18px;
  font-weight: 700;
}

.home-process__step h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}

.home-process__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.home-process__detail {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 34px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--kp-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
}

.process-detail-page {
  background: #ffffff;
  padding: 28px 0 90px;
}

.process-detail__hero {
  width: min(100% - 80px, 1880px);
  margin: 0 auto 72px;
}

.process-detail__hero-bg {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 34px;
  background-color: var(--kp-dark);
  background-position: center;
  background-size: cover;
}

.process-detail__hero-bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 54, 0.84), rgba(22, 25, 54, 0.48));
  content: "";
}

.process-detail__hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 330px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.process-detail__hero h1 {
  max-width: 1050px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.12;
}

.process-detail__content {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  color: #424b5a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.process-detail__content > p:first-child {
  color: var(--kp-dark);
  font-size: 22px;
  line-height: 1.7;
}

.process-detail__content h2 {
  margin: 48px 0 18px;
  color: var(--kp-dark);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
}

.process-detail__content p {
  margin: 0 0 22px;
}

.process-detail__content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.process-detail__content li {
  position: relative;
  padding-left: 28px;
}

.process-detail__content li::before {
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kp-blue);
  content: "";
}

.home-conditions {
  background: #ffffff;
  padding: 96px 0 92px;
}

.home-conditions__header {
  max-width: 920px;
  margin-bottom: 52px;
}

.home-conditions__header h2 {
  margin: 0 0 20px;
  color: var(--kp-dark);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
}

.home-conditions__header p {
  margin: 0;
  color: #657083;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.home-about {
  background: #f7f8fa;
}

.home-about__link {
  display: block;
  color: inherit;
  padding: 96px 0;
}

.home-about__link:hover,
.home-about__link:focus {
  color: inherit;
}

.home-about__link:focus-visible {
  outline: 3px solid var(--kp-blue);
  outline-offset: -5px;
}

.home-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.home-about__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, #dceefa, #f5f9fc);
}

.home-about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.home-about__link:hover .home-about__image img {
  transform: scale(1.025);
}

.home-about__content > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--kp-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.home-about__content h2 {
  margin: 0 0 28px;
  color: var(--kp-dark);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.08;
}

.home-about__content p {
  margin: 0 0 30px;
  color: #636d7e;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
}

.home-about__content strong {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border-radius: 8px;
  background: var(--kp-dark);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
}

.home-gallery {
  background: #ffffff;
  padding: 96px 0 92px;
}

.home-gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.home-gallery__header span {
  display: block;
  margin-bottom: 10px;
  color: var(--kp-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.home-gallery__header h2 {
  margin: 0;
  color: var(--kp-dark);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.08;
}

.home-gallery__header > a,
.home-gallery__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--kp-dark);
  border-radius: 8px;
  background: var(--kp-dark);
  color: #ffffff;
  font-family: var(--kp-font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 25px;
}

.home-gallery__header > a:hover,
.home-gallery__header > a:focus,
.home-gallery__more:hover,
.home-gallery__more:focus {
  border-color: var(--kp-blue);
  background: var(--kp-blue);
  color: #ffffff;
}

.home-gallery__viewport {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-gallery__item {
  position: relative;
  display: none;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 20px;
  background: #edf2f6;
  cursor: zoom-in;
  opacity: 0;
  padding: 0;
  transition: opacity 240ms ease;
}

.home-gallery__item.is-active {
  display: block;
  opacity: 1;
  animation: home-gallery-fade-in 420ms ease both;
}

.home-gallery__item img,
.home-gallery__item video {
  display: block;
  width: 100%;
  height: 100%;
  background: #111827;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.home-gallery__item::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(22, 25, 54, 0.28));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-gallery__item:hover img,
.home-gallery__item:focus-visible img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.home-gallery__item:hover::after,
.home-gallery__item:focus-visible::after {
  opacity: 1;
}

.home-gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.home-gallery__more {
  cursor: pointer;
}

.home-gallery__more:disabled {
  cursor: wait;
  opacity: 0.6;
}

.home-gallery__more[hidden] {
  display: none;
}

@keyframes home-gallery-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.home-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(8, 11, 26, 0.78);
  opacity: 0;
  padding: 28px;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.home-gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.home-gallery-lightbox__dialog {
  position: relative;
  width: min(100%, 1180px);
  max-height: min(84vh, 860px);
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-gallery-lightbox.is-open .home-gallery-lightbox__dialog {
  opacity: 1;
  transform: scale(1);
}

.home-gallery-lightbox__dialog img {
  display: block;
  width: 100%;
  max-height: min(84vh, 860px);
  object-fit: contain;
}

.home-gallery-lightbox__close {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.home-gallery-lightbox__close::before,
.home-gallery-lightbox__close::after {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 20px;
  height: 2px;
  background: var(--kp-blue-dark);
  content: "";
}

.home-gallery-lightbox__close::before {
  transform: rotate(45deg);
}

.home-gallery-lightbox__close::after {
  transform: rotate(-45deg);
}

.home-reviews {
  background: #fffdfb;
  padding: 96px 0 86px;
  text-align: center;
}

.home-reviews__header {
  margin: 0 auto 58px;
  max-width: 680px;
}

.home-reviews__header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: #1f3d8f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 22px;
}

.home-reviews__header h2 {
  margin: 24px 0 12px;
  color: #161936;
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
}

.home-reviews__header p {
  margin: 0;
  color: #808797;
  font-size: 18px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.review-card {
  background: #ffffff;
  border: 1px solid #edf0f3;
  border-radius: 24px;
  border-top: 6px solid #161936;
  box-shadow: 0 20px 60px rgba(31, 41, 55, 0.04);
  padding: 28px 30px 24px;
}

.review-card.is-hidden {
  display: none;
}

.review-card.is-visible {
  animation: kp-review-reveal 220ms ease both;
}

@keyframes kp-review-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card--orange {
  border-top-color: #1f3d8f;
}

.review-card--blue {
  border-top-color: #2d4f9f;
}

.review-card--red {
  border-top-color: #3d5fab;
}

.review-card__stars {
  color: #1f3d8f;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-card p {
  margin: 0 0 26px;
  color: #606b7c;
  font-size: 17px;
  line-height: 1.75;
}

.review-card footer {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid #f0f2f4;
  padding-top: 18px;
}

.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef2ff;
  color: #161936;
  font-weight: 700;
}

.review-card strong {
  color: #263244;
}

.review-card time {
  color: #9aa3b3;
}

.reviews-button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  background: #161936;
  color: #ffffff;
  font-weight: 700;
  margin-top: 42px;
  padding: 14px 34px;
}

.reviews-button:hover,
.reviews-button:focus {
  background: #1f3d8f;
  color: #ffffff;
}

.home-reviews__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82px;
  margin-top: 48px;
  border-radius: 14px;
  background: var(--kp-dark);
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 20px 32px;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.home-reviews__contact:hover,
.home-reviews__contact:focus {
  background: var(--kp-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.home-links {
  padding: 32px 0 70px;
}

.home-links__grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  gap: 72px;
}

.home-links h2 {
  margin: 0 0 24px;
  color: #252a32;
  font-size: 32px;
  font-weight: 700;
}

.home-links ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-links__columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-links a {
  color: var(--kp-blue-dark);
  font-size: 20px;
  font-weight: 700;
}

.home-blog-section {
  background: #ffffff;
  padding: 94px 0 86px;
}

.home-blog-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
}

.home-blog-section__header h2 {
  margin: 0;
  color: #20242d;
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1;
}

.home-blog-section__nav {
  display: flex;
  gap: 10px;
}

.home-blog-section__nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--kp-blue-dark);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.home-blog-section__nav button:hover,
.home-blog-section__nav button:focus-visible {
  background: rgba(31, 61, 143, 0.08);
  transform: translateY(-2px);
}

.home-blog-section__nav button:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
}

.home-blog-section__nav button::before {
  width: 12px;
  height: 12px;
  border-left: 3px solid var(--kp-blue-dark);
  border-bottom: 3px solid var(--kp-blue-dark);
  content: "";
  transform: rotate(45deg);
}

.home-blog-section__nav button:last-child::before {
  transform: rotate(-135deg);
}

.home-blog-grid {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.home-blog-grid .blog-card {
  flex: 0 0 calc((100% - 68px) / 3);
  scroll-snap-align: start;
}

.home-legal {
  background: #ffffff;
  padding: 0 0 58px;
}

.home-legal__inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px;
  border: 1px solid #e8ebef;
  border-radius: 16px;
  background: #f8f9fb;
  padding: 28px 32px;
}

.home-legal h2 {
  margin: 2px 0 0;
  color: #4e5868;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.home-legal__content {
  display: grid;
  gap: 9px;
}

.home-legal__content p {
  margin: 0;
  color: #737c89;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.blog-page {
  background: #ffffff;
  padding: 24px 0 80px;
}

.blog-hero {
  width: min(100% - 80px, 1880px);
  margin: 0 auto 84px;
}

.blog-hero__bg {
  min-height: 285px;
  border-radius: 42px;
  background-color: #161936;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.blog-hero__bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 54, 0.64), rgba(22, 25, 54, 0.24) 45%, rgba(22, 25, 54, 0.08));
  content: "";
}

.blog-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 285px;
  padding: 48px 60px;
}

.blog-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
}

.blog-list {
  width: min(100% - 90px, 1880px);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 40px;
}

.blog-card {
  min-width: 0;
  border: 1px solid #edf0f3;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(22, 25, 54, 0.06);
}

.blog-card__category {
  position: absolute;
  top: 26px;
  left: 34px;
  z-index: 2;
  min-width: 138px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #2c2a28;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 20px;
  text-align: center;
  text-transform: uppercase;
}

.blog-card__body {
  padding: 30px;
}

.blog-card__category--inline {
  position: static;
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  margin-bottom: 18px;
  background: rgba(31, 61, 143, 0.09);
  color: var(--kp-blue-dark);
  text-decoration: none;
}

.blog-card__date {
  margin: 0 0 18px;
  color: #758197;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-card__date::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #161936;
  border-radius: 3px;
  content: "";
  margin-right: 10px;
  vertical-align: -3px;
}

.blog-card h2 {
  margin: 0;
  color: #161936;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1.18;
}

.blog-card h2 a {
  color: inherit;
}

.conditions-page__description,
.conditions-page__description p {
  margin: 0;
  color: #657083;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 24px;
}

.condition-card {
  min-width: 0;
}

.condition-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  border-radius: 26px;
}

.condition-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%);
  content: "";
}

.condition-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.condition-card:hover .condition-card__media img {
  transform: scale(1.035);
}

.condition-card__arrow {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--kp-dark);
}

.condition-card__arrow::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.condition-card__body {
  padding: 24px 6px 0;
}

.condition-card h2 {
  margin: 0 0 12px;
  color: var(--kp-dark);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.condition-card h2 a {
  color: inherit;
}

.condition-card__excerpt,
.condition-card__excerpt p {
  margin: 0;
  color: #687386;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.about-page {
  background: #ffffff;
  padding: 30px 0 80px;
}

.about-hero {
  width: min(100% - 80px, 1880px);
  margin: 0 auto 110px;
}

.about-hero__bg {
  min-height: 285px;
  border-radius: 34px;
  background-color: #161936;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.about-hero__bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 54, 0.68), rgba(22, 25, 54, 0.28) 52%, rgba(22, 25, 54, 0.08));
  content: "";
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 285px;
  padding: 48px min(10vw, 190px);
}

.about-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 22px;
  width: min(100% - 80px, 1880px);
  margin: 0 auto;
}

.about-intro__image,
.about-intro__card {
  border-radius: 28px;
  overflow: hidden;
}

.about-intro__image {
  position: sticky;
  top: 118px;
  background: linear-gradient(145deg, #dceefa, #f5f9fc);
}

.about-intro__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-intro__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f6fb;
  padding: clamp(42px, 6vw, 96px);
}

.about-intro__card > h2 {
  margin: 0 0 42px;
  color: #24272c;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.12;
}

.about-intro__content h2 {
  margin: 40px 0 16px;
  color: var(--kp-dark);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.about-intro__card p {
  margin: 0 0 18px;
  color: #262a31;
  font-size: 20px;
  line-height: 1.65;
}

.contact-page {
  background: #ffffff;
  padding: 30px 0 80px;
  position: relative;
}

.contact-hero {
  width: min(100% - 80px, 1880px);
  margin: 0 auto 110px;
}

.contact-hero__bg {
  min-height: 285px;
  border-radius: 34px;
  background-color: #161936;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.contact-hero__bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 54, 0.68), rgba(22, 25, 54, 0.28) 52%, rgba(22, 25, 54, 0.08));
  content: "";
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 285px;
  padding: 48px min(10vw, 190px);
}

.contact-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(100% - 90px, 1480px);
  margin: 0 auto 86px;
}

.contact-card {
  min-height: 330px;
  background: #f4f6fb;
  border-radius: 26px 26px 76px 26px;
  color: #161936;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 46px 48px 40px;
  position: relative;
}

.contact-card--address {
  gap: 16px;
  justify-content: flex-start;
}

.contact-card::after {
  position: absolute;
  right: 42px;
  top: 112px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c7cfdf;
  content: "";
}

.contact-card__icon {
  display: block;
  width: 36px;
  height: 36px;
  border: 2px solid #161936;
  margin-bottom: 34px;
  position: relative;
}

.contact-card__icon--mail {
  border-radius: 3px;
}

.contact-card__icon--mail::before,
.contact-card__icon--mail::after {
  position: absolute;
  top: 9px;
  width: 23px;
  height: 2px;
  background: #161936;
  content: "";
}

.contact-card__icon--mail::before {
  left: 0;
  transform: rotate(34deg);
}

.contact-card__icon--mail::after {
  right: 0;
  transform: rotate(-34deg);
}

.contact-card__icon--phone {
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.contact-card__icon--pin {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-card__icon--pin::before {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 12px;
  height: 12px;
  border: 2px solid #161936;
  border-radius: 50%;
  content: "";
}

.contact-card h2 {
  margin: 0;
  color: #161936;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.contact-card a,
.contact-card p {
  color: #24272c;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.contact-card__contact-list {
  display: grid;
  gap: 12px;
}

.contact-card a.contact-card__contact-link {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  min-width: min(100%, 260px);
  border: 1px solid rgba(31, 61, 143, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #161936;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  padding: 12px 15px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-card a.contact-card__contact-link:hover,
.contact-card a.contact-card__contact-link:focus-visible {
  border-color: rgba(31, 61, 143, 0.28);
  box-shadow: 0 12px 28px rgba(22, 25, 54, 0.08);
  transform: translateY(-2px);
}

.contact-card__contact-link small,
.contact-card__contact-link strong {
  display: block;
}

.contact-card__contact-link small {
  margin-bottom: 3px;
  color: #778197;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-card__contact-link strong {
  color: #161936;
  font-size: 19px;
}

.contact-card__contact-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
}

.contact-card__contact-icon--phone {
  border-radius: 14px;
  display: block;
  object-fit: contain;
}

.contact-card__contact-icon--whatsapp {
  display: block;
  border-radius: 14px;
  object-fit: contain;
}

.contact-card .contact-card__note {
  width: fit-content;
  border: 1px solid rgba(31, 61, 143, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #505b70;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 0;
  padding: 8px 14px;
}

.contact-card .contact-card__address {
  max-width: 420px;
  color: #24272c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-card a.contact-card__directions {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border-radius: 999px;
  background: #161936;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
  padding: 13px 18px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-card a.contact-card__directions::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.contact-card a.contact-card__directions:hover,
.contact-card a.contact-card__directions:focus-visible {
  background: var(--kp-blue-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 18px;
  height: 18px;
}

.contact-card__arrow::before {
  position: absolute;
  inset: 0;
  border-top: 2px solid #24272c;
  border-right: 2px solid #24272c;
  content: "";
  transform: rotate(-45deg);
}

.contact-map {
  width: min(100% - 90px, 1480px);
  height: 520px;
  border-radius: 26px;
  margin: 0 auto 70px;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(100% - 90px, 1480px);
  margin: 0 auto;
  text-align: center;
}

.contact-booking h2 {
  margin: 0;
  color: #24272c;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
}

.contact-rail {
  position: fixed;
  left: 0;
  top: 42%;
  z-index: 45;
  display: grid;
  width: 50px;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}

.contact-rail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-rail__back {
  background: #000000;
  position: relative;
}

.contact-rail__back::before {
  width: 14px;
  height: 14px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.contact-rail__whatsapp {
  background: #25d366;
}

.contact-rail__instagram {
  background: #ffffff;
}

.contact-rail__whatsapp img,
.contact-rail__instagram img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-rail__map {
  background: #4285f4;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  background: #1fbd5b;
  color: #ffffff;
}

.site-footer {
  background: #ffffff;
  color: #ffffff;
  padding: 64px 0 0;
}

.site-footer__panel {
  display: grid;
  justify-items: center;
  align-items: center;
  width: min(100% - 80px, 1880px);
  min-height: 230px;
  margin: 0 auto;
  border-radius: 34px 34px 0 0;
  background: #161936;
  padding: 48px 24px 34px;
  text-align: center;
}

.site-footer p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--kp-font);
  font-size: 16px;
  font-weight: 400;
}

.site-footer__navigation {
  margin-top: 28px;
}

.site-footer .footer-menu {
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer .footer-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--kp-font);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus,
.site-footer .footer-menu .current-menu-item > a {
  color: #ffffff;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  text-decoration: none;
}

.site-footer__logo::before,
.site-footer__logo::after,
.site-footer__logo span::before {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  width: 58px;
  height: 58px;
  background: #777;
}

.back-to-top::before {
  position: absolute;
  top: 23px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.site-main {
  padding: 56px 0;
}

.faq-page {
  background: #ffffff;
  padding: 30px 0 80px;
}

.faq-hero {
  width: min(100% - 80px, 1880px);
  margin: 0 auto 94px;
}

.faq-hero__bg {
  min-height: 285px;
  border-radius: 34px;
  background-color: #161936;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.faq-hero__bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 54, 0.68), rgba(22, 25, 54, 0.28) 52%, rgba(22, 25, 54, 0.08));
  content: "";
}

.faq-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 285px;
  padding: 48px min(10vw, 190px);
}

.faq-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 1.05;
}

.faq-list {
  width: min(100% - 90px, 1480px);
  margin: 0 auto 80px;
}

.faq-item {
  margin: 0 0 22px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-radius: 18px;
  background: #f4f6fb;
  color: #161936;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
  padding: 20px 34px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 11px;
  height: 11px;
  border-right: 3px solid #161936;
  border-bottom: 3px solid #161936;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item.is-closing summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  height: 0;
  overflow: hidden;
  color: #42464d;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
  opacity: 0;
  transition: height 300ms ease, opacity 240ms ease;
}

.faq-item[open] .faq-item__answer {
  opacity: 1;
}

.faq-item.is-closing .faq-item__answer {
  opacity: 0;
}

.faq-item__answer-inner {
  padding: 26px 36px 14px;
}

.faq-item__answer p {
  margin: 0;
}

.service-detail-page {
  background: #ffffff;
  padding: 30px 0 80px;
}

.service-detail-hero {
  width: min(100% - 80px, 1880px);
  margin: 0 auto 94px;
}

.service-detail-hero__bg {
  min-height: 290px;
  border-radius: 34px;
  background-color: var(--kp-blue-dark);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.service-detail-hero__bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 54, 0.76), rgba(22, 25, 54, 0.4) 52%, rgba(22, 25, 54, 0.12));
  content: "";
}

.service-detail-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  padding: 48px min(18vw, 360px);
}

.service-detail-hero p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 700;
}

.service-detail-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 700;
  line-height: 1.05;
}

.service-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
  width: min(100% - 80px, 1180px);
  margin: 0 auto 60px;
}

.service-detail-main__image {
  border-radius: 28px;
  overflow: hidden;
}

.service-detail-main__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.service-detail-card {
  min-height: 430px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(22, 25, 54, 0.72), rgba(22, 25, 54, 0.78)),
    url("../images/blog-hero.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 28px;
  text-align: center;
}

.service-detail-card span {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 28px;
  padding: 7px 18px;
  text-transform: uppercase;
}

.service-detail-card h2 {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.service-detail-card__phone {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 26px;
}

.service-detail-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  background: #1f3d8f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 26px;
  text-transform: uppercase;
}

.service-detail-card__button:hover,
.service-detail-card__button:focus {
  background: #ffffff;
  color: var(--kp-blue-dark);
}

.service-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 52px;
  align-items: start;
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
}

.service-detail-navigation {
  position: sticky;
  top: 112px;
  padding: 24px 20px;
  border: 1px solid #e3e7f0;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f4f6fb);
  box-shadow: 0 16px 38px rgba(22, 25, 54, 0.09);
}

.service-detail-navigation__eyebrow {
  margin: 0 0 7px;
  color: var(--kp-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-detail-navigation h2 {
  margin: 0 0 18px;
  color: var(--kp-blue-dark);
  font-size: 21px;
  line-height: 1.25;
}

.service-detail-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 11px;
  background: #ffffff;
  color: #343a43;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-detail-navigation a i {
  color: var(--kp-blue);
  font-size: 17px;
  font-style: normal;
  transition: transform 180ms ease;
}

.service-detail-navigation a:hover,
.service-detail-navigation a:focus {
  background: var(--kp-blue-dark);
  color: #ffffff;
  transform: translateX(3px);
}

.service-detail-navigation a:hover i,
.service-detail-navigation a:focus i {
  color: #ffffff;
  transform: translateX(2px);
}

.service-detail-content__body {
  color: #3f4652;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
}

.service-detail-content__body > p:first-child::first-letter {
  float: left;
  color: var(--kp-blue-dark);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.85;
  padding: 8px 10px 0 0;
}

.service-detail-lead {
  color: var(--kp-blue-dark);
  font-size: 22px;
}

.service-detail-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.service-detail-info > div,
.service-detail-faq {
  background: #f4f6fb;
  border-radius: 24px;
  padding: 28px;
}

.service-detail-info h2,
.service-detail-faq h2 {
  margin: 0 0 12px;
  color: var(--kp-blue-dark);
}

.service-detail-faq {
  width: min(100% - 80px, 1180px);
  margin: 44px auto 0;
}

.single-blog-page {
  padding-bottom: 80px;
}

.single-blog-hero {
  width: min(100% - 72px, 1920px);
  margin: 44px auto 0;
}

.single-blog-hero__bg {
  min-height: 250px;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.single-blog-hero__bg::before {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 54, 0.58);
  content: "";
}

.single-blog-hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 54px clamp(34px, 10vw, 210px);
}

.single-blog-hero p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 700;
}

.single-blog-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
}

.single-blog-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  width: min(100% - 80px, 1180px);
  margin: 72px auto 48px;
  align-items: stretch;
}

.single-blog-main__image {
  border-radius: 24px;
  overflow: hidden;
}

.single-blog-main__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.single-blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(22, 25, 54, 0.74), rgba(22, 25, 54, 0.8)),
    url("../images/blog-hero.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 34px 28px;
  text-align: center;
}

.single-blog-card span {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 26px;
  padding: 7px 18px;
  text-transform: uppercase;
}

.single-blog-card h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.single-blog-card p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
}

.single-blog-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  background: #1f3d8f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 26px;
  text-transform: uppercase;
}

.single-blog-card__button:hover,
.single-blog-card__button:focus {
  background: #ffffff;
  color: var(--kp-blue-dark);
}

.single-blog-content {
  width: min(100% - 80px, 980px);
  margin: 0 auto;
}

.single-blog-content__body {
  color: #3f4652;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
}

.single-blog-content__body p {
  margin: 0 0 24px;
}

.single-blog-content__body h2,
.single-blog-content__body h3 {
  color: var(--kp-blue-dark);
  font-weight: 700;
  line-height: 1.2;
  margin: 42px 0 18px;
}

.single-blog-content__body > p:first-child::first-letter {
  float: left;
  color: var(--kp-blue-dark);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.85;
  padding: 8px 10px 0 0;
}

.single-blog-lead {
  color: var(--kp-blue-dark);
  font-size: 22px;
  line-height: 1.55;
}

.single-blog-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 80px, 980px);
  margin: 54px auto 0;
}

.single-blog-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--kp-border);
  color: var(--kp-blue-dark);
  font-weight: 700;
  padding: 12px 20px;
}

.kp-card,
.post-card,
.entry-content,
.kp-info-box {
  background: #ffffff;
  border: 1px solid var(--kp-border);
  border-radius: 0;
  padding: 28px;
}

.kp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kp-section {
  padding: 64px 0;
}

.kp-eyebrow {
  margin: 0 0 10px;
  color: var(--kp-blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.kp-card__media {
  display: block;
  aspect-ratio: 10 / 7;
  margin: -28px -28px 22px;
  overflow: hidden;
  background: var(--kp-soft);
}

.kp-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kp-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cce4f8, #ffffff);
}

.kp-card h3,
.entry-title,
.page-title {
  margin-top: 0;
}

.kp-card__excerpt,
.entry-meta {
  color: var(--kp-muted);
}

.kp-archive-header,
.kp-detail__header {
  max-width: 900px;
  margin-bottom: 36px;
}

.kp-archive-header h1,
.kp-detail__header h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
}

.kp-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-list strong {
  color: var(--kp-text);
}

.kp-detail__media img {
  display: block;
  width: 100%;
}

.kp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--kp-muted);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .site-mainbar {
    position: relative;
  }

  .site-mainbar__inner {
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .site-header.is-scrolled .site-mainbar__inner {
    min-height: 82px;
  }

  .site-header.is-scrolled .site-logo-mark {
    transform: none;
  }

  .site-topbar {
    display: contents;
  }

  .site-topbar__inner {
    display: contents;
  }

  .site-topbar__inner > p {
    display: none;
  }

  .site-header.is-scrolled .site-topbar {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
  }

  .site-social {
    position: fixed;
    z-index: 43;
    right: 28px;
    bottom: 172px;
    margin: 0;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid var(--kp-border);
    opacity: 0;
    padding: 0 24px;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
  }

  .main-navigation.is-open {
    max-height: 420px;
    opacity: 1;
    padding: 24px;
    pointer-events: auto;
  }

  .primary-menu,
  .primary-menu ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-booking-button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    align-self: center;
  }

  .home-hero {
    min-height: 560px;
    background-position: center;
  }

  .home-hero__inner {
    min-height: 560px;
  }

  .home-hero__content {
    width: 66%;
  }

  .home-hero__portrait {
    right: -8%;
    width: min(48vw, 480px);
  }

  .home-feature,
  .home-feature--reverse {
    grid-template-columns: 1fr;
  }

  .home-feature--reverse .home-feature__image,
  .home-feature--reverse .home-feature__content {
    order: initial;
  }

  .home-links__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-blog-grid .blog-card {
    flex-basis: calc((100% - 34px) / 2);
  }

  .home-treatments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about__inner {
    gap: 38px;
  }

  .about-intro,
  .contact-cards,
  .contact-booking,
  .service-detail-main,
  .service-detail-content,
  .service-detail-info,
  .single-blog-main,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-booking {
    display: grid;
  }

  .service-detail-navigation {
    position: static;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .home-container,
  .site-main,
  .kp-section__inner {
    width: min(100% - 28px, var(--kp-container));
  }

  .site-mainbar__inner {
    min-height: 68px;
  }

  .site-header.is-scrolled .site-mainbar__inner {
    min-height: 68px;
  }

  .site-logo-mark {
    width: auto;
    min-width: 138px;
    font-size: 18px;
    min-height: 44px;
    transform: none;
    transform-origin: left center;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .home-hero {
    min-height: 0;
    background-position: center;
  }

  .home-hero__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 48px 0 0;
  }

  .home-hero__content {
    width: 100%;
  }

  .home-kicker {
    font-size: 20px;
  }

  .home-hero h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.16;
  }

  .home-hero__content > p {
    padding: 15px 17px;
    border-radius: 15px;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8));
    font-size: 16px;
    line-height: 1.6;
  }

  .home-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    margin-top: 26px;
    margin-bottom: 36px;
  }

  .home-hero__directions-wrap {
    display: contents;
  }

  .home-hero__call {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-hero__phone-number {
    display: none;
  }

  .home-hero__call-button {
    width: 100%;
    min-width: 0;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(22, 25, 54, 0.22);
  }

  .home-hero__directions {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
  }

  .home-hero__content .home-hero__directions-note {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    border-width: 0;
    transform: translateX(-12px) scaleX(0.92);
    transform-origin: left center;
    transition: max-height 420ms ease, margin 420ms ease, padding 420ms ease, border-width 420ms ease, opacity 300ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .home-hero__directions-wrap.is-visible .home-hero__directions-note {
    max-height: 110px;
    margin-top: 4px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-width: 1px;
    transform: translateX(0) scaleX(1);
  }

  .home-hero__portrait {
    display: none;
  }

  .home-button {
    min-width: 156px;
    min-height: 58px;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 22px;
  }

  .home-cta-band__inner {
    display: block;
    min-height: 0;
    padding: 40px 0;
  }

  .home-cta-band .home-button {
    margin-top: 24px;
  }

  .home-feature__image {
    min-height: 320px;
  }

  .home-feature__content {
    padding: 42px 24px;
  }

  .home-feature__content p:not(.home-kicker) {
    font-size: 18px;
  }

  .home-links__columns,
  .kp-grid,
  .kp-detail__layout,
  .contact-layout,
  .blog-grid,
  .home-treatments__grid,
  .single-blog-main {
    grid-template-columns: 1fr;
  }

  .home-blog-grid .blog-card {
    flex-basis: min(86vw, 420px);
  }

  .home-treatments {
    padding: 54px 0;
  }

  .home-treatments__header {
    margin-bottom: 32px;
  }

  .home-treatments__header h2 {
    margin-bottom: 0;
    font-size: 36px;
  }

  .home-treatments__header p,
  .home-treatment-card__excerpt {
    display: none;
  }

  .home-treatment-card__media {
    border-radius: 24px;
  }

  .home-treatment-card__body {
    padding-top: 20px;
  }

  .home-process__link {
    padding: 54px 0;
  }

  .home-process__header {
    margin-bottom: 32px;
  }

  .home-process__header h2 {
    font-size: 36px;
  }

  .home-process__steps {
    grid-template-columns: 1fr;
  }

  .home-process__step {
    min-height: 0;
  }

  .process-detail-page {
    padding-top: 14px;
  }

  .process-detail__hero {
    width: min(100% - 28px, 1880px);
    margin-bottom: 44px;
  }

  .process-detail__hero-bg,
  .process-detail__hero-content {
    min-height: 260px;
  }

  .process-detail__hero-bg {
    border-radius: 24px;
  }

  .process-detail__hero h1 {
    font-size: 36px;
  }

  .process-detail__content {
    width: min(100% - 28px, 920px);
    font-size: 17px;
  }

  .process-detail__content > p:first-child {
    font-size: 19px;
  }

  .conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .condition-card__media {
    border-radius: 18px;
  }

  .condition-card__arrow {
    right: 10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
  }

  .condition-card__arrow::before {
    top: 15px;
    left: 14px;
    width: 12px;
    height: 12px;
  }

  .condition-card__body {
    padding: 15px 2px 0;
  }

  .condition-card h2 {
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .condition-card__excerpt,
  .condition-card__excerpt p {
    font-size: 13px;
    line-height: 1.5;
  }

  .home-conditions {
    padding: 54px 0;
  }

  .home-conditions__header {
    margin-bottom: 32px;
  }

  .home-conditions__header h2 {
    font-size: 36px;
  }

  .home-conditions__header p {
    font-size: 16px;
  }

  .home-about__link {
    padding: 54px 0;
  }

  .home-about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-about__image {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .home-about__content h2 {
    font-size: 36px;
  }

  .home-about__content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .home-gallery {
    padding: 54px 0;
  }

  .home-gallery__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .home-gallery__header h2 {
    font-size: 36px;
  }

  .home-gallery__viewport {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-gallery__item {
    aspect-ratio: 1.25 / 1;
    border-radius: 14px;
  }

  .home-gallery-lightbox {
    padding: 16px;
  }

  .home-gallery-lightbox__dialog {
    border-radius: 18px;
  }

  .home-gallery-lightbox__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .home-blog-section {
    padding: 54px 0;
  }

  .home-legal {
    padding-bottom: 42px;
  }

  .home-legal__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .home-legal h2 {
    font-size: 17px;
  }

  .home-blog-section__header {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .home-blog-section__nav button {
    width: 48px;
    height: 48px;
  }

  .blog-page {
    padding-top: 14px;
  }

  .blog-hero,
  .blog-list,
  .about-hero,
  .about-intro,
  .contact-hero,
  .contact-cards,
  .contact-map,
  .contact-booking,
  .faq-hero,
  .faq-list,
  .service-detail-hero,
  .service-detail-main,
  .service-detail-content,
  .service-detail-faq,
  .single-blog-hero,
  .single-blog-main,
  .single-blog-content,
  .single-blog-nav,
  .site-footer__panel {
    width: min(100% - 28px, 1880px);
  }

  .blog-hero,
  .about-hero,
  .contact-hero,
  .faq-hero,
  .service-detail-hero,
  .single-blog-hero {
    margin-bottom: 42px;
  }

  .blog-hero__bg,
  .blog-hero__content,
  .about-hero__bg,
  .about-hero__content,
  .contact-hero__bg,
  .contact-hero__content,
  .faq-hero__bg,
  .faq-hero__content,
  .service-detail-hero__bg,
  .service-detail-hero__content,
  .single-blog-hero__bg,
  .single-blog-hero__content {
    min-height: 210px;
  }

  .blog-hero__bg,
  .about-hero__bg,
  .contact-hero__bg,
  .faq-hero__bg,
  .service-detail-hero__bg,
  .single-blog-hero__bg,
  .about-intro__image,
  .about-intro__card,
  .contact-card,
  .single-blog-main__image,
  .single-blog-card,
  .contact-map {
    border-radius: 24px;
  }

  .blog-hero__content,
  .about-hero__content,
  .contact-hero__content,
  .faq-hero__content,
  .service-detail-hero__content,
  .single-blog-hero__content {
    padding: 34px 28px;
  }

  .single-blog-main {
    gap: 24px;
    margin-top: 32px;
  }

  .single-blog-main__image img {
    min-height: 300px;
  }

  .single-blog-card {
    min-height: 300px;
  }

  .single-blog-content__body {
    font-size: 17px;
  }

  .single-blog-content__body > p:first-child::first-letter {
    font-size: 46px;
  }

  .single-blog-nav {
    flex-direction: column;
    margin-top: 34px;
  }

  .about-intro__image img {
    min-height: 320px;
  }

  .about-intro__image {
    position: static;
  }

  .about-intro__card {
    padding: 34px 24px;
  }

  .contact-card {
    min-height: 260px;
    padding: 34px 28px;
  }

  .contact-map {
    height: 360px;
  }

  .service-detail-card {
    min-height: 320px;
  }

  .contact-rail {
    display: none;
  }

  .review-card footer {
    grid-template-columns: 40px 1fr;
  }

  .home-reviews__contact {
    min-height: 66px;
    margin-top: 34px;
    padding: 17px 20px;
  }

  .review-card time {
    grid-column: 2;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 88px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .site-social {
    right: 18px;
    bottom: 156px;
  }

  .back-to-top {
    display: none;
  }

  .faq-item summary {
    font-size: 17px;
    padding: 18px 20px;
  }

  .faq-item__answer {
    font-size: 16px;
  }

  .faq-item__answer-inner {
    padding: 20px 22px 8px;
  }

  .site-footer {
    padding-top: 36px;
  }

  .site-footer__panel {
    min-height: 190px;
  }
}

p,
li,
.entry-content,
.entry-content p,
.kp-archive-header p,
.kp-card p,
.home-feature__content p:not(.home-kicker),
.home-cta-band p,
.review-card blockquote,
.blog-card p,
.about-intro__card p,
.contact-card p,
.contact-card a,
.faq-item__answer,
.service-detail-content__body,
.service-detail-content__body p,
.service-detail-info p,
.service-detail-info li,
.site-footer p {
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1;
    transition: none;
  }

  .main-navigation,
  .menu-toggle__line,
  .menu-toggle__line::before,
  .menu-toggle__line::after {
    transition: none;
  }

  .home-hero__portrait {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .home-gallery__item,
  .home-gallery__item.is-active {
    transition: none;
    animation: none;
  }

  .faq-item__answer {
    transition: none;
  }

  .home-hero__content .home-hero__directions-note {
    transition: none;
  }

  .site-social .site-social__instagram,
  .site-social .site-social__instagram::before {
    animation: none;
  }
}
