@font-face {
  font-family: "Apollo";
  src: url("./fonts/APOLLO.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ApocLCT";
  src: url("./fonts/ApocLCT.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #fffaf8;
  --color-white-soft: #f8f1ef;

  --color-green-050: #f8f1ef;
  --color-green-100: #e8d8c4;
  --color-green-200: #c7b7a3;
  --color-green-300: #d8b9b2;
  --color-green-500: #6d2932;
  --color-green-700: #561c24;

  --color-text: #2f2325;
  --color-text-soft: rgba(47, 35, 37, 0.72);
  --color-border: rgba(95, 31, 45, 0.14);
  --color-shadow: 0 24px 80px rgba(95, 31, 45, 0.12);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container-width: 1240px;

  --space-30: 30px;
  --space-60: 60px;
  --space-90: 90px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at top left,
      rgba(230, 209, 203, 0.55),
      transparent 24%
    ),
    linear-gradient(180deg, #fffaf8 0%, #f8f1ef 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: var(--space-60) 0;
}

.section-title {
  font-family: "ApocLCT", "Times New Roman", serif;
  font-size: clamp(30px, 6vw, 80px);
  line-height: 1.1;
  font-weight: 300;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 248, 0.76);
  border-bottom: 1px solid rgba(95, 31, 45, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0;
  padding: 15px 0 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 130px;
  font-family: "Apollo", "Times New Roman", serif;
  color: var(--color-green-500);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-title {
  font-family: "Apollo", "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.logo-section {
  margin: auto;
}

.logo-section .logo-mark,
.logo-section .logo-subtitle,
.logo-section .logo-title {
  color: var(--color-green-050);
}

.site-nav,
.nav-list,
.nav-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: var(--space-30);
  margin-top: -20px;
}

.nav-list,
.nav-actions {
  gap: var(--space-30);
}

.nav-list a,
.lang-switch {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition: color 0.25s ease;
}

.nav-list a::after,
.lang-switch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--color-green-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-list a:hover,
.lang-switch:hover {
  color: var(--color-text);
}

.nav-list a:hover::after,
.lang-switch:hover::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 45px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary {
  color: #fff;

  background: linear-gradient(20deg, #4a0c13 0%, #8a2b36 50%, #4a0c13 100%);

  box-shadow:
    0 8px 20px rgba(91, 15, 23, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transition: all 0.3s ease;
}

.btn-secondary {
  color: var(--color-text);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.75);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
}

.btn:hover::after {
  left: 120%;
  transition: left 0.6s ease;
}

.circle-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: linear-gradient(180deg, #4a0c13, #8a2b36, #4a0c13);

  position: absolute;
  right: 30px;
  bottom: -30px;
}
.circle-btn.top {
  top: -30px;
}
.circle-btn svg {
  animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-btn svg {
  width: 100%;
  height: 100%;
}

.nav-actions .btn-primary {
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

.hero {
  min-height: max-content;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: var(--space-60);
}

.hero-media {
  position: relative;
  min-height: 720px;
}

.hero-media-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.9;
}

.hero-media-glow-one {
  width: 240px;
  height: 240px;
  top: 40px;
  left: -20px;
  background: rgba(230, 209, 203, 0.85);
}

.hero-media-glow-two {
  width: 200px;
  height: 200px;
  right: -10px;
  bottom: 70px;
  background: rgba(216, 185, 178, 0.75);
}

.hero-photo-frame {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  border: 1px solid rgba(91, 116, 84, 0.12);
  box-shadow: var(--color-shadow);
  background: url("img/hero.png") center/cover no-repeat;
  background-position: top;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 60px 30px 60px 0;
}

.eyebrow {
  margin-bottom: 24px;
  font-size: 25px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-green-700);
  font-family: "Apollo", "Times New Roman", serif;
}

.hero-title {
  margin-bottom: 30px;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-soft);
  font-family: "Apollo", "Times New Roman", serif;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

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

.hero-meta-item {
  padding-top: 18px;
  border-top: 1px solid rgba(91, 116, 84, 0.14);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-meta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.hero-meta-value {
  font-size: 15px;
  line-height: 1.5;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(252, 253, 249, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(31, 42, 31, 0.1);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badge-top {
  top: 30px;
  left: 30px;
}

.hero-badge-bottom {
  right: 30px;
  bottom: 30px;
}

@media (max-width: 1180px) {
  .hero-panel {
    margin-left: 0;
    margin-right: 0;
    padding: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    display: block;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 88px;
  }

  .site-nav {
    gap: 20px;
  }

  .nav-list,
  .nav-actions {
    gap: 20px;
  }

  .hero-panel {
    padding: 42px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1180px) {
  .logo-title {
    font-size: 18px;
  }
  .nav-list,
  .nav-actions {
    gap: 15px;
  }
}

@media (max-width: 860px) {
  :root {
    --space-60: 48px;
    --space-90: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    position: relative;
    z-index: 100;
  }

  .header-inner {
    flex-direction: row;
    padding: 0;
  }

  .logo-mark {
    font-size: 70px;
  }

  .site-nav {
    position: fixed;
    top: 120px;
    left: 20px;
    right: 20px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(252, 253, 249, 0.97);
    border: 1px solid var(--color-border);
    box-shadow: 0 30px 70px rgba(91, 116, 84, 0.16);
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-media,
  .hero-photo-frame {
    min-height: 540px;
  }

  .hero-panel {
    margin: -90px 20px 0;
    padding: 36px 30px;
    background-color: var(--color-green-050);
  }
  .nav-actions {
    display: flex;
  }
  .hero-panel::before {
    background: transparent !important;
  }
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--color-green-700);
  border-bottom: 1px solid var(--color-green-700);
  background: var(--color-green-500);
}

.ticker__track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  min-height: 68px;
  align-items: center;
  width: max-content;
  animation: tickerMove 28s linear infinite;
  padding-inline: 24px;
}

.ticker__track span {
  position: relative;
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: "Apollo", "Times New Roman", serif;
}

.ticker__track span::after {
  content: "";
  position: absolute;
  right: -21px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(68, 81, 63, 0.35);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  :root {
    --space-30: 20px;
    --space-60: 30px;
    --space-90: 48px;
    --header-height: 80px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .header-inner {
    gap: 16px;
  }

  .logo-title {
    font-size: 15px;
  }

  .logo {
    gap: 5px;
  }

  .logo-subtitle {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-photo-overlay {
    inset: 18px;
  }

  .hero-badge {
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-badge-top {
    top: 18px;
    left: 18px;
  }

  .hero-badge-bottom {
    right: 18px;
    bottom: 18px;
  }

  .hero-panel {
    margin: -70px 12px 0;
    padding: 28px 20px;
    border-radius: 28px;
  }

  .hero-title,
  .hero-text {
    max-width: none;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    padding: 24px;
  }

  .ticker__track {
    min-height: 58px;
    gap: 28px;
  }

  .ticker__track span {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}
.about {
  position: relative;
}

.about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 45%;
  height: 100%;

  background: url("img/about.jpg") center/cover no-repeat;

  opacity: 0.3;
  pointer-events: none;

  mask-image:
    linear-gradient(to left, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);

  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

.procedures-block.about::after {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.title {
  margin-bottom: 60px;
}

.about-media {
  position: relative;
}

.about-media__frame {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(91, 116, 84, 0.12);
  box-shadow: var(--color-shadow);
  background: url("img/about.jpg") top/cover no-repeat;
}

.about-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 252, 247, 0.02) 0%,
    rgba(23, 47, 17, 0.16) 100%
  );
  z-index: 0;
}

.about-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(252, 253, 249, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(31, 42, 31, 0.1);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--color-green-700);
}

.about-text {
  display: grid;
  gap: 18px;
}

.about-text p {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Apollo", "Times New Roman", serif;
  color: var(--color-green-050);
}

.about-description {
  max-width: 720px;
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-green-050);
  margin: auto;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.about-point {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  background-color: var(--color-green-050);
}

.about-point__number {
  font-family: "Apollo", "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  opacity: 0.35;
  position: absolute;
  right: 10px;
  top: 10px;
}

.about-point__body {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.about-point__title {
  font-family: "Apollo", "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-text);
}

.about-point__text {
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.about-point:hover .about-point__number {
  color: rgba(180, 225, 161, 0.18);
  -webkit-text-stroke: 1px rgba(23, 47, 17, 0.45);
  transition: all 0.3s ease;
}

.procedures-list .about-description {
  margin-bottom: 24px;
  font-size: 25px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: "Apollo", "Times New Roman", serif;
}

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media__frame {
    min-height: 620px;
  }
}

@media (max-width: 768px) {
  .about-text p {
    font-size: 20px;
  }

  .about-point__number {
    font-size: 52px;
  }

  .about-point__title {
    font-size: 24px;
  }
  .about-points {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .about-media__frame {
    min-height: 440px;
  }

  .about-media__frame::before {
    inset: 18px;
  }

  .about-badge {
    left: 18px;
    bottom: 18px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .about-content {
    gap: 24px;
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-point {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-point__number {
    font-size: 44px;
  }

  .about-point__body {
    padding-top: 0;
  }
  .title {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .about-media__frame::before {
    inset: 18px;
  }

  .about-grid {
    gap: 0;
  }

  .about-content {
    position: relative;
    z-index: 2;
    margin: 15px;
    padding: 28px 20px;
    border-radius: 28px;
    border: 1px solid rgba(91, 116, 84, 0.14);
    box-shadow: 0 28px 90px rgba(91, 116, 84, 0.12);
    backdrop-filter: blur(18px);
    gap: 24px;
    order: 2;
  }

  .about-description,
  .procedures-list .about-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-point {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-point__number {
    font-size: 44px;
  }

  .about-point__body {
    padding-top: 0;
  }

  .title {
    margin-bottom: 30px;
    padding: 0 10px;
  }
}

.procedures {
  position: relative;
  padding-bottom: 0;
  padding-top: 0;
}
.mobile {
  display: none;
}
.procedures-title-wrap {
  margin-bottom: 60px;
}

.procedures-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--color-green-700);
  padding: 60px 30px;
}

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

.procedure-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-green-500);
  background-color: var(--color-green-050);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 26px rgba(95, 31, 45, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.procedure-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(159, 106, 103, 0.14),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.procedure-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(91, 116, 84, 0.12);
  border-color: rgba(91, 116, 84, 0.22);
}

.procedure-card:hover::before {
  opacity: 1;
}

.procedure-card:hover::after {
  left: 130%;
}

.procedure-card__number,
.procedure-card__top,
.procedure-card__text,
.procedure-card__link {
  position: relative;
  z-index: 1;
}

.procedure-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  font-family: "Apollo", "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.9;
  opacity: 0.28;
}

.procedure-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.procedure-card__title {
  font-family: "ApocLCT", "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 300;
  color: var(--color-text);
}

.procedure-card__price {
  display: inline-flex;
  align-self: flex-start;

  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green-700);
  font-family: "ApocLCT", "Times New Roman", serif;
}

.procedure-card__text {
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-soft);
  margin-bottom: auto;
}

.procedures-note {
  margin-top: 30px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

@media (max-width: 960px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .mobile {
    display: flex;
  }
}

@media (max-width: 600px) {
  .procedures-title-wrap {
    margin-bottom: 30px;
  }

  .procedure-card {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .procedure-card__number {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .procedure-card__title {
    font-size: 24px;
  }

  .procedure-card__text {
    max-width: none;
    font-size: 15px;
    line-height: 1.75;
  }

  .procedures-note {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
  }
}
.procedures-slider {
  position: relative;
}

.procedures-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.procedures-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(91, 116, 84, 0.22);
  border: none;
  padding: 0;
  transition: all 0.25s ease;
}

.procedures-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--color-green-050);
}

/* modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(218, 176, 198, 0.36);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 90;
}

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

.procedure-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 100;
}

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

.procedure-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 42px 36px 36px;
  border-radius: var(--radius-lg);
  background: rgba(252, 253, 249, 0.96);
  border: 1px solid rgba(91, 116, 84, 0.14);
  box-shadow: 0 28px 90px rgba(91, 116, 84, 0.18);
}

.procedure-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  color: var(--color-green-500);
}

.procedure-modal__title {
  margin-bottom: 24px;
  max-width: 12ch;
}

.procedure-modal__content {
  display: grid;
  gap: 16px;
}

.procedure-modal__content p,
.procedure-modal__content li {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.procedure-modal__content strong {
  color: var(--color-text);
  font-weight: 600;
}

.procedure-modal__content ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  list-style: disc;
}

/* mobile carousel */
@media (max-width: 600px) {
  .procedures-slider {
    overflow: visible;
    margin: 0 -12px;
    padding-left: 12px;
  }

  .procedures-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 6px 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .procedures-grid::-webkit-scrollbar {
    display: none;
  }

  .procedure-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 28px;
    box-shadow: none;
  }

  .procedures-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .procedures-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(91, 116, 84, 0.22);
    border: none;
    padding: 0;
  }

  .procedures-dots button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--color-green-050);
  }

  .procedure-modal {
    padding: 12px;
  }

  .procedure-modal__dialog {
    width: 100%;
    max-height: 88vh;
    padding: 38px 20px 24px;
    border-radius: 28px;
  }

  .procedure-modal__title {
    max-width: none;
  }

  .procedure-modal__content p,
  .procedure-modal__content li {
    font-size: 15px;
    line-height: 1.75;
  }
}

.procedure-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: var(--space-60);
  align-items: center;
  margin-bottom: 0;
}

.procedure-feature__media {
  position: relative;
  min-height: 720px;
}

.procedure-feature__frame {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: url("img/about.jpg") center/cover no-repeat;
}

.procedure-feature__panel {
  position: relative;
  z-index: 2;
  padding: 60px;
}

.procedure-feature__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.procedure-feature__title {
  max-width: 8ch;
}

.procedure-feature__price {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green-700);
  font-family: "Apollo", "Times New Roman", serif;
}

.procedure-feature__content {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.procedure-feature__content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.procedure-feature__content strong {
  color: var(--color-text);
}

.procedure-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1180px) {
  .procedure-feature__panel {
    padding: 42px;
  }
}

@media (max-width: 600px) {
  .procedure-feature__frame::before {
    inset: 18px;
  }

  .procedure-feature__panel {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .procedure-feature__content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .procedure-feature__actions {
    flex-direction: column;
  }

  .procedure-feature__actions .btn {
    width: 100%;
  }

  .circle-btn.top {
    top: -70px;
    right: 5px;
  }

  .procedures {
    overflow-y: hidden;
  }
}

.results {
  position: relative;
  padding-top: 0;
}

.results .hero-photo-frame {
  background: url(img/results.png) center / cover no-repeat;
  background-position: top;
}

.results .section-title {
  font-size: clamp(22px, 4vw, 64px);
}

.results-title-wrap {
  margin-bottom: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 60px;
  align-items: center;
}

.results-media {
  position: relative;
}

.results-media__frame {
  position: relative;
  min-height: 760px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(91, 116, 84, 0.12);
  box-shadow: var(--color-shadow);
}

.results-media__frame::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: calc(var(--radius-lg) - 14px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  z-index: 2;
  pointer-events: none;
}

.results-media__image {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.results-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 252, 247, 0.03) 0%,
    rgba(23, 47, 17, 0.1) 100%
  );
  z-index: 1;
}

.results-badge {
  position: absolute;
  top: 30px;
  z-index: 3;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(252, 253, 249, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(31, 42, 31, 0.1);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.results-badge--left {
  left: 30px;
}

.results-badge--right {
  right: 30px;
}

.results-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 30px;
}

.results-description {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.results-points {
  display: grid;
  gap: 18px;
}

.results-point {
  padding: 24px 0;
  border-top: 1px solid rgba(91, 116, 84, 0.14);
}

.results-point:last-child {
  border-bottom: 1px solid rgba(91, 116, 84, 0.14);
}

.results-point__number {
  font-family: "Apollo", "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  position: absolute;
  right: 10px;
  top: 10px;
  color: var(--color-green-700);
}

.results-point__body {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.results-point__title {
  font-family: "Apollo", "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-text);
}

.results-point__text {
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.results-point:hover .results-point__number {
  color: rgba(180, 225, 161, 0.18);
  -webkit-text-stroke: 1px rgba(23, 47, 17, 0.45);
  transition: all 0.3s ease;
}

@media (max-width: 1100px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .results-media__frame,
  .results-media__image {
    min-height: 620px;
  }

  .results-content {
    position: relative;
    z-index: 2;
    margin: -110px 30px 0;
    padding: 42px;
    border-radius: var(--radius-lg);
    background: rgba(252, 253, 249, 0.6);
    border: 1px solid rgba(91, 116, 84, 0.14);
    box-shadow: 0 28px 90px rgba(91, 116, 84, 0.12);
    backdrop-filter: blur(18px);
  }
}

.contacts .eyebrow {
  color: #fff;
}

@media (max-width: 768px) {
  .results-point {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }

  .results-point__number {
    font-size: 52px;
  }

  .results-point__title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .results-title-wrap {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .results-media__frame,
  .results-media__image {
    min-height: 430px;
  }

  .results-media__frame::before {
    inset: 18px;
  }

  .results-badge {
    top: 18px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .results-badge--left {
    left: 18px;
  }

  .results-badge--right {
    right: 18px;
  }

  .results-content {
    margin: -70px 12px 0;
    padding: 28px 20px;
    border-radius: 28px;
    gap: 24px;
  }

  .results-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .results-point {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .results-point__number {
    font-size: 44px;
  }

  .results-point__body {
    padding-top: 0;
  }

  .results-point__text {
    max-width: none;
    font-size: 15px;
    line-height: 1.75;
  }
}

.reviews {
  position: relative;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 225, 161, 0.12) 0%,
    rgba(180, 225, 161, 0) 72%
  );
  pointer-events: none;
}

.reviews-title-wrap {
  margin-bottom: 60px;
}

.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 248, 0.58);
  border: 1px solid rgba(95, 31, 45, 0.12);
  backdrop-filter: blur(14px);
}

.review-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  font-family: "Apollo", "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.9;
  opacity: 0.28;
}

.review-card__text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text-soft);
  margin-bottom: auto;
  padding-right: 50px;
}

.review-card__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(91, 116, 84, 0.14);
}

.review-card__name {
  font-family: "ApocLCT", "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.05;
  color: var(--color-text);
}

.review-card__meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green-700);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.reviews-arrow {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;
  color: var(--color-text);
  font-size: 22px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  background: rgba(234, 242, 226, 0.95);
  box-shadow: 0 14px 28px rgba(91, 116, 84, 0.12);
}

.reviews-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(91, 116, 84, 0.22);
  border: none;
  padding: 0;
  transition: all 0.25s ease;
}

.reviews-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--color-green-700);
}

@media (max-width: 1100px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .reviews-slider {
    overflow: visible;
    margin: 0 -12px;
    padding-left: 12px;
  }

  .reviews-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 6px 0;
    margin: 0;
    scrollbar-width: none;
    transition: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 74%;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 28px;
    scroll-snap-align: start;
  }

  .review-card__number {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .review-card__text {
    font-size: 15px;
    line-height: 1.75;
  }

  .review-card__name {
    font-size: 22px;
  }

  .review-card__meta {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .reviews-controls {
    margin-top: 20px;
    gap: 14px;
  }

  .reviews-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.contacts {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contacts-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(109, 41, 50, 0.65), rgba(52, 31, 50, 0.75)),
    url("img/contacts.jpg") center/cover no-repeat;

  z-index: 0;
  background-position: left;
}

.contacts .container {
  position: relative;
  z-index: 2;
}

.contacts-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contacts-title-wrap {
  margin-bottom: 30px;
}

.contacts-description {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* кнопки */
.contacts-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  background: rgba(255, 250, 248, 0.14);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fffaf8;

  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: rgba(255, 250, 248, 0.22);
  transform: translateY(-3px);
}

/* інфо */
.contacts-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contacts-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

.contacts-value {
  font-size: 16px;
  line-height: 1.6;
}

/* планшет */
@media (max-width: 768px) {
  .contacts-shell {
    padding: 100px 0;
  }
}

/* мобілка */
@media (max-width: 600px) {
  .contacts-shell {
    padding: 80px 0 40px;
  }

  .contacts-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .contacts-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-btn {
    width: 100%;
  }

  .contacts-info {
    gap: 20px;
    flex-direction: column;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.procedure-card,
.review-card,
.results-point,
.about-point {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.procedure-card.is-visible,
.review-card.is-visible,
.results-point.is-visible,
.about-point.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 80;
}

.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--color-green-700);
  display: block;
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 859px) {
  .nav-toggle {
    display: none;
  }
}

.procedures-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.procedures-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--color-green-050);
  font-weight: 300;
  font-size: 22px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
@media (max-width: 600px) {
  .procedures-controls {
    display: flex;
  }
}
@media (max-width: 600px) {
  .procedures-controls {
    margin-top: 18px;
    gap: 14px;
  }

  .procedures-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.about-content,
.procedure-feature__panel {
  padding: 30px;
}

.pb-0 {
  padding-bottom: 0;
}

@media (max-width: 960px) {
  .hero-stage,
  .procedure-feature {
    grid-template-columns: 1fr;
  }
  .hero-photo-frame,
  .procedure-feature__frame {
    min-height: 600px;
  }
  .procedure-feature__media {
    order: 1;
    min-height: auto;
  }
  .procedure-feature__panel {
    order: 2;
  }
  .procedure-feature__panel {
    margin: -70px 12px 0;
    padding: 28px 20px;
    border-radius: 28px;
    background-color: var(--color-green-050);
  }
  .reviews-title-wrap {
    margin-bottom: 30px;
  }
  .procedure-feature {
    margin-bottom: 30px;
  }
  .procedures {
    overflow-x: hidden;
  }
  .procedures-block.about::after {
    display: none;
  }
}
