:root {
  --ink: #22343b;
  --muted: #526068;
  --green: #8cc01e;
  --purple: #7a61f4;
  --pink: #ef3d77;
  --aqua: #47c8c2;
  --line: #ececec;
  --soft: #f8f8f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  position: relative;
  z-index: 30;
  min-height: 142px;
  padding: 18px 66px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.brand {
  display: block;
  width: min(305px, 52vw);
  line-height: 0;
}

.brand img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: #22343b;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: visible;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.main-nav a {
  position: relative;
  color: #141b1f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 14px 0 15px;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.main-nav a.active {
  color: var(--green);
}

.nav-item > a.active::after,
.nav-item > a:hover::after,
.nav-item:focus-within > a::after {
  background: var(--green);
}

.has-dropdown > a {
  padding-right: 13px;
}

.has-dropdown > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(-18%);
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  z-index: 20;
  min-width: 230px;
  padding: 10px 0;
  border: 1px solid rgba(34, 52, 59, 0.08);
  border-top: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(25, 37, 44, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.wide-menu .submenu {
  min-width: 330px;
}

.align-right .submenu {
  right: 0;
  left: auto;
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 11px 18px;
  color: #22343b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
}

.submenu a::after,
.submenu a::before {
  display: none;
}

.submenu a:hover,
.submenu a:focus {
  color: var(--green);
  background: #f7faef;
}

.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 52px 92px 68px;
  overflow: hidden;
  background: #f8f5ed;
}

.hero-slider,
.hero-slide,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  transition: opacity 700ms ease, transform 1300ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 247, 239, 0.94) 0%, rgba(250, 247, 239, 0.76) 34%, rgba(250, 247, 239, 0.1) 63%);
  pointer-events: none;
}

.hero::after {
  content: "";
  z-index: 2;
  background:
    radial-gradient(circle at 66% 48%, rgba(250, 205, 96, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.52));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(480px, 100%);
}

.hero h1 {
  margin: 0 0 18px;
  color: #20313a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--purple);
}

.hero p {
  max-width: 390px;
  margin: 0;
  color: #263840;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.hero p strong {
  color: #6aa61b;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.button {
  min-width: 178px;
  min-height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(42, 52, 58, 0.12);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.button span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.button-primary {
  color: #ffffff;
  background: var(--purple);
}

.button-primary span {
  color: var(--purple);
  background: #ffffff;
}

.button-secondary span {
  color: #7ea91d;
  background: #f2f6e8;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 70px;
  border: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  text-shadow: 0 3px 12px rgba(34, 52, 59, 0.48);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 180ms ease, transform 180ms ease;
}

.slider-arrow:hover {
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.slider-prev {
  left: 28px;
}

.slider-next {
  right: 28px;
}

.floating-mark {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  margin: -38px auto 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(19, 28, 34, 0.24);
}

.floating-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.about-section {
  scroll-margin-top: 28px;
  width: min(980px, calc(100% - 140px));
  margin: 72px auto 84px;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(46px, 6vw, 74px);
}

.about-image {
  aspect-ratio: 1 / 1.08;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2e7;
}

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

.about-content {
  max-width: 500px;
}

.section-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 22px;
  margin-bottom: 6px;
}

.section-mark::before {
  content: "";
  position: absolute;
  display: block;
}

.section-mark::before {
  left: 6px;
  top: 1px;
  width: 15px;
  height: 21px;
  border-radius: 14px 0 14px 0;
  background: linear-gradient(135deg, #9ac82b, #5da525);
  transform: rotate(-42deg);
  transform-origin: bottom center;
}


.about-content h2 {
  position: relative;
  margin: 0 0 24px;
  color: #20313a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.about-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
}

.about-content p {
  margin: 0 0 22px;
  color: #24323a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.68;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.pause-section {
  position: relative;
  padding: 42px 24px 38px;
  background:
    linear-gradient(90deg, rgba(246, 243, 252, 0.88), rgba(255, 255, 255, 0.96) 42%, rgba(246, 243, 252, 0.88));
  text-align: center;
}

.pause-section::before {
  content: "\201C";
  position: absolute;
  left: 50%;
  top: 0;
  color: rgba(122, 97, 244, 0.62);
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.pause-section p {
  margin: 0;
  color: #15262e;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.8vw, 34px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.pause-section span {
  color: #6aa61b;
}

.values-section {
  scroll-margin-top: 18px;
  padding: 68px 48px 86px;
  background:
    radial-gradient(circle at 4% 18%, rgba(122, 97, 244, 0.08), transparent 30%),
    radial-gradient(circle at 96% 20%, rgba(71, 200, 194, 0.07), transparent 28%),
    linear-gradient(90deg, rgba(247, 244, 252, 0.78), #ffffff 36%, #ffffff 64%, rgba(247, 244, 252, 0.78));
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading .section-mark {
  margin-bottom: 8px;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  color: #20313a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
  transform: translateX(-50%);
}

.values-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 292px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(34, 52, 59, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(25, 37, 44, 0.09);
  text-align: center;
}

.value-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
}

.value-icon img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
}

.value-card h3 {
  position: relative;
  margin: 0 0 24px;
  color: var(--value-color);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.value-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--value-color);
  transform: translateX(-50%);
}

.value-card p {
  margin: 0;
  color: #24323a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.62;
}

.value-purple {
  --value-color: #7a61f4;
}

.value-green {
  --value-color: #72a928;
}

.value-gold {
  --value-color: #c7831d;
}

.value-pink {
  --value-color: #ef4f88;
}

.value-blue {
  --value-color: #4c82f5;
}

.contact-section {
  scroll-margin-top: 18px;
  padding: 72px 48px 72px;
  background:
    radial-gradient(circle at 7% 12%, rgba(122, 97, 244, 0.08), transparent 32%),
    radial-gradient(circle at 94% 18%, rgba(122, 97, 244, 0.07), transparent 30%),
    #ffffff;
  text-align: center;
}

.contact-intro {
  margin: 0 auto 52px;
  color: #314458;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-card {
  width: min(1050px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(34, 52, 59, 0.08);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(25, 37, 44, 0.09);
  text-align: left;
  overflow: hidden;
}

.contact-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 178px;
  padding: 42px 44px;
}

.contact-item:nth-child(odd) {
  border-right: 1px solid rgba(122, 97, 244, 0.24);
}

.contact-item:nth-child(-n + 2) {
  border-bottom: 1px dashed rgba(122, 97, 244, 0.28);
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5932a3;
  background: rgba(122, 97, 244, 0.13);
  font-size: 30px;
  line-height: 1;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.contact-item h3 {
  margin: 0 0 8px;
  color: #5630a4;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-item p,
.contact-item a {
  margin: 0 0 6px;
  color: #314458;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
}

.contact-item a {
  display: inline-block;
  margin-top: 12px;
  color: #5630a4;
  font-weight: 600;
}

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

.page-hero {
  position: relative;
  min-height: 286px;
  display: grid;
  place-items: center;
  padding: 58px 24px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(32, 49, 58, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(48, 35, 68, 0.1));
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 16px rgba(18, 26, 30, 0.5);
}

.therapies-hero {
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1600&q=85");
}

.archangels-hero {
  background-image: url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&w=1600&q=85");
}

.light-guides-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=85");
}

.therapist-hero {
  background-image: url("https://images.unsplash.com/photo-1551847677-dc82d764e1eb?auto=format&fit=crop&w=1600&q=85");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1499209974431-9dddcece7f88?auto=format&fit=crop&w=1600&q=85");
}

.page-floating-mark {
  margin-top: -38px;
  margin-bottom: -38px;
}

.therapies-section {
  padding: 116px 24px 70px;
  background:
    radial-gradient(circle at 8% 8%, rgba(122, 97, 244, 0.08), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(71, 200, 194, 0.06), transparent 24%),
    linear-gradient(90deg, rgba(248, 244, 252, 0.84), #ffffff 38%, #ffffff 62%, rgba(248, 244, 252, 0.84));
}

.therapy-card {
  width: min(1088px, 100%);
  margin: 0 auto;
  padding: 48px 18px 58px;
  display: grid;
  grid-template-columns: minmax(192px, 272px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
  border-bottom: 2px solid rgba(122, 97, 244, 0.52);
  scroll-margin-top: 24px;
}

.therapy-card:first-of-type {
  padding-top: 0;
}

.therapy-image {
  aspect-ratio: 1 / 1.46;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2e7;
  box-shadow: 0 16px 34px rgba(25, 37, 44, 0.08);
}

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

.therapy-content {
  max-width: 650px;
}

.therapy-content .section-mark {
  margin-bottom: 14px;
}

.therapy-content h3 {
  margin: 0 0 22px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.therapy-content p,
.therapy-content li {
  color: #121a1f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.therapy-content p {
  margin: 0 0 18px;
}

.therapy-content ul {
  margin: 0 0 30px 18px;
  padding: 0;
}

.therapy-content li {
  padding-left: 16px;
}

.therapy-content blockquote {
  margin: 0 0 0 clamp(0px, 7vw, 72px);
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}

.contact-page-section {
  padding: 116px 24px 74px;
  background:
    radial-gradient(circle at 8% 8%, rgba(122, 97, 244, 0.08), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(71, 200, 194, 0.06), transparent 24%),
    linear-gradient(90deg, rgba(248, 244, 252, 0.84), #ffffff 38%, #ffffff 62%, rgba(248, 244, 252, 0.84));
  text-align: center;
}

.contact-page-section .contact-intro {
  max-width: 1180px;
  text-align: center;
}

.contact-form {
  width: min(940px, 100%);
  margin: 0 auto 52px;
  padding: 40px;
  border: 1px solid rgba(34, 52, 59, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(25, 37, 44, 0.09);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #5630a4;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form label span {
  color: #526068;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(122, 97, 244, 0.22);
  border-radius: 8px;
  padding: 14px 15px;
  color: #22343b;
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(122, 97, 244, 0.12);
}

.contact-form > label {
  margin-top: 22px;
}

.contact-form .button {
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}

.contact-page-card {
  margin-top: 0;
}

.form-result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f8f4fc;
}

.form-result {
  width: min(560px, 100%);
  padding: 42px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(25, 37, 44, 0.12);
  text-align: center;
}

.form-result h1 {
  margin: 0 0 16px;
  color: #5630a4;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
}

.form-result p {
  margin: 0 0 26px;
  color: #314458;
  line-height: 1.6;
}

.site-footer {
  padding: 34px 48px 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 10%, rgba(122, 97, 244, 0.26), transparent 30%),
    linear-gradient(135deg, #3f177b, #2d1368 55%, #3f177b);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.5fr 1fr;
  gap: 58px;
  align-items: start;
}

.footer-brand .section-mark {
  margin-left: 60px;
  margin-bottom: 2px;
}

.footer-brand h2 {
  position: relative;
  margin: 0 0 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-brand h2::after,
.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 58px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.footer-brand p,
.footer-contact p,
.footer-menu a,
.footer-social a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
}

.footer-brand img {
  width: 88px;
  height: 88px;
  margin-top: 24px;
  object-fit: contain;
  opacity: 0.38;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 30px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-menu,
.footer-social {
  display: grid;
  gap: 8px;
}

.footer-menu a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  margin-right: 12px;
  border-radius: 10px 0 10px 0;
  background: #82bd21;
  transform: rotate(-38deg);
  vertical-align: -2px;
}

.footer-contact p {
  position: relative;
  margin: 0 0 18px;
  padding-left: 36px;
}

.footer-contact span {
  position: absolute;
  left: 0;
  top: 1px;
  color: #ffffff;
  font-size: 20px;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #3f177b;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  width: min(1160px, 100%);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.footer-leaf {
  width: 20px;
  height: 24px;
  border-radius: 15px 0 15px 0;
  background: #82bd21;
  transform: rotate(-38deg);
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 16px 24px;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    max-height: calc(100vh - 118px);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-nav a {
    display: block;
    padding: 15px 2px;
  }

  .nav-item > a::after {
    bottom: 8px;
    right: auto;
    width: 68px;
  }

  .submenu {
    position: static;
    max-height: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    border-left: 2px solid var(--green);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height 220ms ease;
  }

  .has-dropdown:hover .submenu,
  .has-dropdown:focus-within .submenu {
    transform: none;
  }

  .has-dropdown.open .submenu {
    max-height: 520px;
  }

  .wide-menu .submenu,
  .align-right .submenu {
    min-width: 0;
  }

  .submenu a {
    padding: 10px 16px;
    background: #fbfcf8;
  }

  .hero {
    min-height: 500px;
    padding: 44px 34px 70px;
  }

  .hero-slide {
    background-position: 60% center;
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }

  .about-section {
    width: min(680px, calc(100% - 64px));
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 62px;
  }

  .about-image {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .about-content {
    max-width: 680px;
  }

  .pause-section p {
    line-height: 1.25;
  }

  .values-section {
    padding: 62px 34px 76px;
  }

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

  .contact-section {
    padding: 62px 34px 66px;
  }

  .contact-intro br {
    display: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: auto;
    padding: 30px 34px;
  }

  .contact-item:nth-child(odd) {
    border-right: 0;
  }

  .contact-item:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-item:not(:last-child) {
    border-bottom: 1px dashed rgba(122, 97, 244, 0.28);
  }

  .page-hero {
    min-height: 230px;
  }

  .therapies-section {
    padding: 100px 24px 56px;
  }

  .therapy-card {
    grid-template-columns: minmax(160px, 224px) minmax(0, 1fr);
    gap: 34px;
  }

  .contact-page-section {
    padding: 100px 24px 62px;
  }

  .contact-form {
    padding: 34px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 18px;
    gap: 12px;
  }

  .brand {
    width: min(240px, 76vw);
  }

  .brand img {
    height: 66px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 540px;
    padding: 38px 22px 72px;
    align-items: flex-start;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(250, 247, 239, 0.96) 0%, rgba(250, 247, 239, 0.84) 48%, rgba(250, 247, 239, 0.22) 100%);
  }

  .hero-slide {
    background-position: center bottom;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .slider-arrow {
    top: auto;
    bottom: 22px;
    width: 34px;
    height: 46px;
    font-size: 44px;
    transform: none;
  }

  .slider-arrow:hover {
    transform: none;
  }

  .slider-prev {
    left: 22px;
  }

  .slider-next {
    right: 22px;
  }

  .about-section {
    width: calc(100% - 36px);
    margin: 54px auto 64px;
  }

  .about-image {
    border-radius: 14px;
  }

  .about-content h2 {
    font-size: 44px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.68;
  }

  .pause-section {
    padding: 40px 22px 36px;
  }

  .pause-section p {
    font-size: 25px;
  }

  .pause-section p br {
    display: none;
  }

  .values-section {
    padding: 56px 18px 66px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .value-card {
    min-height: auto;
  }

  .contact-section {
    padding: 54px 18px 58px;
  }

  .contact-intro {
    margin-bottom: 34px;
    font-size: 17px;
  }

  .contact-card {
    padding: 0;
  }

  .contact-item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 24px 20px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .contact-item h3 {
    font-size: 22px;
  }

  .contact-item p,
  .contact-item a {
    font-size: 14px;
  }

  .site-footer {
    padding: 34px 22px 26px;
  }

  .page-hero {
    min-height: 190px;
    padding: 44px 18px;
  }

  .page-hero h1 {
    font-size: 50px;
  }

  .therapies-section {
    padding: 92px 18px 48px;
  }

  .therapy-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0 44px;
  }

  .therapy-image {
    width: min(100%, 256px);
    aspect-ratio: 1 / 1.12;
    margin: 0 auto;
  }

  .therapy-content h3 {
    font-size: 31px;
  }

  .therapy-content p,
  .therapy-content li {
    font-size: 14px;
  }

  .therapy-content blockquote {
    margin-left: 0;
    font-size: 19px;
  }

  .contact-page-section {
    padding: 92px 18px 54px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .form-result {
    padding: 32px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px;
  }
}
