@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 650;
  font-display: optional;
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --bg: #fbf7f4;
  --milk: #f5ece7;
  --paper: #fffdfb;
  --soft: #f1e3dc;
  --ink: #1b1114;
  --muted: #6c5f60;
  --dark: #15070d;
  --dark-2: #241118;
  --cherry: #930036;
  --cherry-2: #5f001f;
  --rose: #c891a1;
  --pearl: #fff4ee;
  --lime: #d7ec71;
  --gold: #e8c886;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow: 0 26px 70px rgba(43, 14, 23, .15);
  --shadow-strong: 0 36px 100px rgba(43, 14, 23, .24);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(154px, .6fr) auto auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  width: 100%;
  padding: 12px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(21, 7, 13, .9), rgba(21, 7, 13, .7)),
    rgba(21, 7, 13, .72);
  color: #fff;
  box-shadow: 0 18px 60px rgba(21, 7, 13, .2);
  backdrop-filter: blur(18px);
  transition: background .22s ease, box-shadow .22s ease, color .22s ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background:
    linear-gradient(90deg, rgba(21, 7, 13, .9), rgba(21, 7, 13, .7)),
    rgba(21, 7, 13, .72);
  color: #fff;
  box-shadow: 0 18px 60px rgba(21, 7, 13, .2);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .2em;
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 600;
  line-height: .82;
  letter-spacing: .01em;
  white-space: nowrap;
}

.wordmark span:first-child {
  color: currentColor;
}

.wordmark span:last-child {
  color: var(--rose);
  font-style: normal;
}

.site-header .wordmark {
  font-size: clamp(28px, 2.2vw, 38px);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  opacity: .9;
  transition: color .18s ease, opacity .18s ease, text-shadow .18s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.desktop-nav a:hover {
  color: var(--rose);
  opacity: 1;
  text-shadow: 0 0 16px rgba(216, 150, 170, .36);
}

.desktop-nav a:hover::after {
  opacity: .85;
  box-shadow: 0 0 18px rgba(216, 150, 170, .46);
}

.header-phone,
.header-cta,
.btn,
.mobile-menu__phone,
.mobile-menu__cta,
.cookie-banner button {
  border: 0;
  border-radius: 999px;
  color: inherit;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  background:
    radial-gradient(circle at 22% 0%, rgba(215, 236, 113, .32), transparent 32%),
    linear-gradient(135deg, var(--cherry), var(--cherry-2));
  color: #fff;
  box-shadow: 0 16px 42px rgba(95, 0, 31, .28);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: box-shadow .2s ease, filter .2s ease, background .2s ease;
}

.header-phone:hover {
  color: #fff;
  filter: saturate(1.1);
  box-shadow: 0 0 0 1px rgba(215, 236, 113, .35), 0 0 34px rgba(147, 0, 54, .45), 0 18px 50px rgba(95, 0, 31, .28);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 19px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.site-header.is-scrolled .header-cta {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.header-cta:hover {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 0 28px rgba(215, 236, 113, .46);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: currentColor;
  transition: background .18s ease, box-shadow .18s ease;
}

.menu-toggle span,
.mobile-menu__top button span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 28px;
}

.menu-toggle:hover {
  background: rgba(215, 236, 113, .18);
  box-shadow: 0 0 22px rgba(215, 236, 113, .24);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(95, 0, 31, .08), transparent 38%),
    var(--paper);
  color: var(--ink);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px 16px;
  background: linear-gradient(100deg, var(--dark), #531326);
  color: #fff;
}

.mobile-menu__top .wordmark {
  font-size: 31px;
}

.mobile-menu__top button {
  position: relative;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.mobile-menu__top button span:first-child {
  top: 23px;
  rotate: 45deg;
}

.mobile-menu__top button span:last-child {
  top: 23px;
  rotate: -45deg;
}

.mobile-menu nav {
  display: grid;
  gap: 5px;
  padding: 24px 20px 14px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.18;
}

.mobile-menu nav a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(147, 0, 54, 0);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.mobile-menu nav a:hover {
  background: rgba(147, 0, 54, .08);
  color: var(--cherry);
  box-shadow: inset 0 0 0 1px rgba(147, 0, 54, .04);
}

.mobile-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 20px;
}

.mobile-menu__phone,
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 680;
  text-align: center;
}

.mobile-menu__phone {
  background: var(--dark);
  color: #fff;
}

.mobile-menu__cta {
  background:
    radial-gradient(circle at 18% 10%, rgba(215, 236, 113, .32), transparent 34%),
    linear-gradient(135deg, var(--cherry), var(--cherry-2));
  color: #fff;
  box-shadow: 0 24px 70px rgba(95, 0, 31, .2);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero__slides {
  display: flex;
  transform: translate3d(var(--hero-offset, 0%), 0, 0);
  transition: transform .9s cubic-bezier(.72, 0, .22, 1);
  will-change: transform;
}

.hero__slides.is-jump {
  transition: none;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 4, 8, .86) 0%, rgba(10, 4, 8, .66) 34%, rgba(10, 4, 8, .06) 76%),
    linear-gradient(0deg, rgba(10, 4, 8, .42), rgba(10, 4, 8, 0) 48%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 48px));
  min-height: 100svh;
  padding: 126px 0 130px;
  margin-left: max(32px, calc((100vw - 1420px) / 2 + 32px));
}

h1,
h2,
.not-found__art {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .94;
  letter-spacing: 0;
}

.hero h1,
.hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1,
.hero h2 {
  max-width: 710px;
  font-size: clamp(54px, 6.4vw, 92px);
}

.hero h2 {
  margin: 0;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.8vw, 68px);
}

h3 {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.hero__content p {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 25px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 740;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(19, 8, 13, .14);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
  filter: saturate(1.08);
  box-shadow: 0 0 0 1px rgba(215, 236, 113, .26), 0 0 34px rgba(147, 0, 54, .36), 0 18px 56px rgba(19, 8, 13, .22);
}

.btn--primary {
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 236, 113, .28), transparent 36%),
    linear-gradient(135deg, var(--cherry), var(--cherry-2));
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  box-shadow: none;
}

.hero .btn--primary:hover {
  background:
    radial-gradient(circle at 22% 0%, rgba(215, 236, 113, .7), transparent 32%),
    linear-gradient(135deg, #b30045, #700025);
  box-shadow: 0 0 0 1px rgba(215, 236, 113, .48), 0 0 42px rgba(215, 236, 113, .28), 0 0 70px rgba(179, 0, 69, .42);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, .22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .26), 0 0 38px rgba(255, 221, 232, .24);
}

.hero__facts {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.hero__facts span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(19, 8, 13, .62);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.hero-progress {
  position: absolute;
  z-index: 6;
  left: max(32px, calc((100vw - 1420px) / 2 + 32px));
  right: max(32px, calc((100vw - 1420px) / 2 + 32px));
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
}

.hero-progress button {
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), #fff4a3, var(--rose));
}

.hero-progress button.is-complete span {
  width: 100%;
}

.hero-progress button.is-active span {
  animation: fillHero var(--fill-duration, 7200ms) linear forwards;
}

@keyframes fillHero {
  from { width: 0; }
  to { width: 100%; }
}

.section {
  min-height: 100svh;
  background: var(--paper);
}

.section:nth-of-type(odd):not(.section--dark):not(.booking-section) {
  background: var(--milk);
}

.section__inner {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section__head {
  display: grid;
  gap: 22px;
  max-width: 910px;
}

.section__kicker {
  width: fit-content;
  margin-bottom: clamp(28px, 2vw, 34px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(147, 0, 54, .08);
  color: var(--cherry);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 42vw) minmax(0, 1fr);
}

.split--image-right {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw);
}

.split--image-right .section__media {
  order: 2;
}

.section__media {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--dark);
  border-radius: 0;
}

.section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.section__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 116px 7vw 92px;
}

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-jump a,
.chips a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(147, 0, 54, .08);
  color: var(--cherry-2);
  font-size: 14px;
  font-weight: 650;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.service-jump a:hover,
.chips a:hover {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 0 28px rgba(147, 0, 54, .22);
}

.service-groups {
  display: grid;
  gap: 70px;
  margin-top: 58px;
}

.service-group {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.service-group > div:first-child {
  position: sticky;
  top: 98px;
}

.service-group > div:first-child span,
.promo-list span,
.advantage-list > li > span {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: .9;
}

.service-group > div:first-child span {
  color: #9c4763;
}

.promo-list span,
.advantage-list > li > span {
  color: var(--rose);
}

.service-group h3 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
}

.service-group p {
  margin-top: 12px;
  color: var(--muted);
}

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

.service-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  padding: 0 0 18px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(215, 236, 113, .18), transparent 28%),
    linear-gradient(145deg, #fffdfb, #f7eee9);
  box-shadow: 0 16px 48px rgba(42, 16, 24, .08);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease, filter .2s ease;
}

.service-card:hover {
  background:
    radial-gradient(circle at 90% 5%, rgba(215, 236, 113, .3), transparent 30%),
    linear-gradient(145deg, #fffaf6, #f1e0d8);
  box-shadow: 0 0 0 1px rgba(147, 0, 54, .05), 0 28px 86px rgba(42, 16, 24, .16);
}

.service-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, .64), transparent 32%),
    linear-gradient(145deg, #f6e6df, #ead4cf 52%, #d7b7b4);
  box-shadow: inset 0 0 0 1px rgba(147, 0, 54, .04);
  transition: box-shadow .2s ease, filter .2s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: transparent;
  transform-origin: center;
  transition: filter .2s ease;
}

.service-card:hover .service-card__media {
  box-shadow: inset 0 0 0 1px rgba(147, 0, 54, .06), 0 0 28px rgba(147, 0, 54, .18);
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.03);
}

.service-card strong {
  margin: 18px 18px 0;
  font-size: 18px;
  font-weight: 760;
}

.service-card small {
  margin: 8px 18px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-card em {
  align-self: end;
  width: fit-content;
  margin: 16px 18px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(147, 0, 54, .09);
  color: var(--cherry);
  font-style: normal;
  font-weight: 760;
}

.route-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.route-tabs button {
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 640;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.route-tabs button:hover {
  background: rgba(147, 0, 54, .12);
  color: var(--cherry);
}

.route-tabs button[aria-selected="true"] {
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 236, 113, .28), transparent 38%),
    linear-gradient(135deg, var(--cherry), var(--cherry-2));
  color: #fff;
  box-shadow: 0 14px 36px rgba(95, 0, 31, .18);
}

.route-panel {
  max-width: 760px;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 236, 113, .18), transparent 30%),
    rgba(255, 253, 251, .76);
  box-shadow: 0 18px 54px rgba(42, 16, 24, .08);
}

.route-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.section--dark {
  background:
    radial-gradient(circle at 88% 18%, rgba(147, 0, 54, .28), transparent 34%),
    var(--dark);
  color: #fff;
}

.section--dark .section__kicker {
  background: rgba(255, 255, 255, .08);
  color: var(--rose);
}

.section--dark .lead,
.section--dark .advantage-list p {
  color: rgba(255, 255, 255, .72);
}

.advantage-list {
  display: grid;
  gap: 18px;
  max-width: 780px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.advantage-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
  transition: background .18s ease, box-shadow .18s ease;
}

.advantage-list li:hover {
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 38px rgba(255, 255, 255, .06);
}

.advantage-list h3,
.advantage-list p {
  margin: 0;
}

.advantage-list p {
  margin-top: 8px;
}

.promo-list {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-top: 40px;
}

.promo-list a {
  display: block;
  padding: 26px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 236, 113, .14), transparent 30%),
    var(--paper);
  box-shadow: 0 16px 45px rgba(42, 16, 24, .08);
  transition: box-shadow .18s ease, background .18s ease;
}

.promo-list a:hover {
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 236, 113, .24), transparent 34%),
    #fffaf7;
  box-shadow: 0 28px 72px rgba(42, 16, 24, .14);
}

.promo-list h3 {
  margin-top: 16px;
}

.promo-list p {
  margin-top: 10px;
  color: var(--muted);
}

.booking-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 145, 161, .18), transparent 34%),
    #fffaf8;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
}

.booking-widget {
  display: grid;
  gap: 24px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 34px;
  background: rgba(255, 253, 251, .88);
  box-shadow: var(--shadow);
}

.booking-picker {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
  align-items: start;
}

.booking-picker h3,
.time-panel h3 {
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-list {
  position: relative;
}

.booking-list button {
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 16px;
  background: var(--soft);
  color: var(--ink);
  text-align: left;
  font-size: 14px;
  font-weight: 650;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.booking-list button:hover {
  background: rgba(147, 0, 54, .1);
  color: var(--cherry);
}

.booking-list button.is-active {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 236, 113, .26), transparent 36%),
    linear-gradient(135deg, var(--cherry), var(--cherry-2));
  color: #fff;
  box-shadow: 0 16px 42px rgba(95, 0, 31, .18);
}

.booking-dropdown__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 52px;
  padding: 13px 46px 13px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .55), transparent 34%),
    var(--soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.booking-dropdown__trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transform-origin: center;
  transition: transform .2s ease, color .2s ease;
}

.booking-dropdown.is-open .booking-dropdown__trigger {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 236, 113, .2), transparent 36%),
    rgba(147, 0, 54, .1);
  color: var(--cherry);
  box-shadow: 0 0 0 1px rgba(147, 0, 54, .05), 0 18px 46px rgba(42, 16, 24, .1);
}

.booking-dropdown.is-open .booking-dropdown__trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.booking-dropdown__menu {
  position: absolute;
  z-index: 42;
  top: calc(100% + 9px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  max-height: min(340px, 54vh);
  padding: 10px;
  overflow: auto;
  border-radius: 22px;
  background: rgba(255, 253, 251, .97);
  box-shadow: 0 28px 86px rgba(42, 16, 24, .18);
  backdrop-filter: blur(16px);
  transform-origin: top center;
  animation: bookingDropdownIn .22s cubic-bezier(.16, 1, .3, 1) both;
}

.booking-dropdown__menu[hidden] {
  display: none;
}

.booking-dropdown__option {
  width: 100%;
}

@keyframes bookingDropdownIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-8px) scale(.98);
  }

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

.calendar {
  display: grid;
  gap: 12px;
}

.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar__head strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.calendar__head button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.calendar__head button:hover {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 0 30px rgba(147, 0, 54, .24);
}

.calendar__weekdays,
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar__weekdays {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
  text-transform: uppercase;
}

.calendar__day {
  min-height: 54px;
  padding: 7px;
  border: 0;
  border-radius: 16px;
  background: #f5eee9;
  color: var(--ink);
  text-align: left;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.calendar__day span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.calendar__day:hover {
  background: rgba(147, 0, 54, .1);
  color: var(--cherry);
}

.calendar__day.is-muted {
  opacity: .34;
}

.calendar__day.is-active {
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 236, 113, .28), transparent 40%),
    var(--cherry);
  color: #fff;
  box-shadow: 0 14px 36px rgba(95, 0, 31, .18);
}

.calendar__day.is-active span {
  color: rgba(255, 255, 255, .72);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.time-grid button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: #f5eee9;
  color: var(--ink);
  font-weight: 650;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.time-grid button:hover {
  background: rgba(147, 0, 54, .1);
  color: var(--cherry);
}

.time-grid button.is-active {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 0 30px rgba(21, 7, 13, .18);
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #f5eee9;
  color: var(--ink);
  padding: 13px 15px;
  font-size: 16px;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

input:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(215, 236, 113, .9);
  outline-offset: 3px;
}

.booking-form .agree {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

.agree input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cherry);
}

.agree a {
  color: var(--cherry);
  font-weight: 760;
}

.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  color: var(--cherry);
  font-weight: 760;
}

.reviews {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-top: 38px;
  perspective: 1200px;
}

.reviews article {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(147, 0, 54, .08), transparent 34%),
    var(--paper);
  box-shadow: 0 16px 45px rgba(42, 16, 24, .08);
  transform: translate3d(0, 0, 0) rotateX(0) rotateZ(0) scale(1);
  transition:
    opacity .5s ease,
    filter .5s ease,
    transform .5s cubic-bezier(.55, 0, .2, 1),
    box-shadow .18s ease,
    background .18s ease;
  transition-delay: calc(var(--review-index, 0) * 55ms);
  will-change: opacity, filter, transform;
}

.reviews article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 12%, rgba(255, 255, 255, .34) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
}

.reviews.is-swapping article {
  opacity: 0;
  filter: blur(13px) saturate(1.08);
  transform: translate3d(24px, -14px, 0) rotateZ(1.6deg) scale(.96);
}

.reviews.is-entering article {
  animation: reviewCardIn .72s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: calc(var(--review-index, 0) * 90ms);
}

.reviews.is-entering article::before {
  animation: reviewCardSheen .86s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: calc(var(--review-index, 0) * 100ms + 120ms);
}

.reviews article:hover {
  background: #fffaf7;
  box-shadow: 0 26px 64px rgba(42, 16, 24, .14);
}

.stars {
  color: var(--cherry);
  font-size: 14px;
}

.reviews p {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.28;
}

.reviews h3 {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

@keyframes reviewCardIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(-22px, 24px, 0) rotateX(-8deg) rotateZ(-1.2deg) scale(.97);
  }

  58% {
    opacity: 1;
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0) rotateZ(0) scale(1);
  }
}

@keyframes reviewCardSheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  34% {
    opacity: .75;
  }

  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

.footer {
  background: var(--dark);
  color: #fff;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.05fr .85fr .8fr 1fr;
  gap: 40px;
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 44px;
  align-items: start;
}

.brand--footer {
  color: #fff;
}

.footer p {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .68);
}

address,
.footer nav {
  display: grid;
  gap: 12px;
  font-style: normal;
}

address strong,
.footer nav strong {
  margin-bottom: 8px;
  color: var(--rose);
  text-transform: uppercase;
}

address a,
address span,
.footer nav a {
  color: rgba(255, 255, 255, .76);
}

.footer nav a:hover,
address a:hover,
.footer__bottom a:hover {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(215, 236, 113, .25);
}

.footer__map {
  position: relative;
  width: 100%;
  height: min(56vh, 520px);
  min-height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--dark-2);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.86) contrast(.96);
  pointer-events: none;
}

.footer__map.is-interactive iframe {
  pointer-events: auto;
}

.footer__map-toggle {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 236, 113, .36), transparent 36%),
    rgba(21, 7, 13, .82);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition: background .18s ease, box-shadow .18s ease;
}

.footer__map-toggle:hover {
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 236, 113, .52), transparent 36%),
    rgba(95, 0, 31, .86);
  box-shadow: 0 0 34px rgba(147, 0, 54, .28), 0 20px 58px rgba(0, 0, 0, .26);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 34px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.footer__bottom p {
  max-width: none;
  margin: 0;
}

.footer__bottom a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  z-index: 220;
  left: 50%;
  right: auto;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(880px, calc(100vw - 40px));
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 253, 251, .94);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner a {
  color: var(--cherry);
  font-weight: 760;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(21, 7, 13, .94), rgba(21, 7, 13, .78)),
    url("/assets/images/result-cherry-satin.webp") center / cover fixed;
  color: #fff;
}

.legal-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 152px 0 86px;
}

.legal-main h1 {
  font-size: clamp(48px, 6vw, 78px);
  color: #fff;
  overflow-wrap: anywhere;
}

.legal-main h2 {
  margin-top: 34px;
  font-size: 28px;
  font-family: var(--serif);
  color: #fff;
}

.legal-main p,
.legal-main li {
  color: rgba(255, 255, 255, .78);
}

.legal-main a {
  color: var(--lime);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main .section__kicker {
  background: rgba(255, 255, 255, .1);
  color: var(--rose);
}

.legal-main p,
.legal-main ul,
.legal-main ol {
  margin-top: 14px;
}

.legal-main ul,
.legal-main ol {
  padding-left: 22px;
}

.legal-card {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(147, 0, 54, .28), transparent 34%),
    rgba(21, 7, 13, .74);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.not-found-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(21, 7, 13, .94), rgba(21, 7, 13, .76)),
    url("/assets/images/result-cherry-satin.webp") center / cover;
  color: #fff;
}

.not-found {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100svh;
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 74px;
  text-align: center;
}

.not-found__art {
  color: var(--rose);
  font-size: clamp(110px, 16vw, 190px);
}

.not-found h1 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

.not-found p {
  max-width: 600px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.not-found .btn--ghost {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-phone {
    justify-self: end;
  }

  .service-group {
    grid-template-columns: 1fr;
  }

  .service-group > div:first-child,
  .booking-copy {
    position: static;
  }

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

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: 100vw;
    max-width: 100vw;
    padding: 10px 16px;
  }

  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header .wordmark {
    font-size: 31px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: max(100svh, 820px);
  }

  .hero-slide {
    min-height: max(100svh, 820px);
  }

  .hero__content {
    width: calc(100% - 40px);
    min-height: max(100svh, 820px);
    justify-content: flex-start;
    padding: 112px 0 300px;
    margin-left: 20px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 4, 8, .52), rgba(10, 4, 8, .78)),
      linear-gradient(90deg, rgba(10, 4, 8, .82), rgba(10, 4, 8, .18));
  }

  h1,
  .hero h2 {
    max-width: 350px;
    font-size: 42px;
    line-height: .98;
  }

  .legal-main h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.03;
  }

  .section h2 {
    font-size: 40px;
  }

  .hero__content p,
  .lead {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(340px, 100%);
    margin-top: 24px;
  }

  .hero__facts {
    left: 20px;
    right: 20px;
    bottom: 78px;
    display: grid;
  }

  .hero__facts span {
    width: fit-content;
  }

  .hero-progress {
    left: 20px;
    right: 20px;
    bottom: 34px;
    max-width: none;
  }

  .section__inner {
    width: calc(100% - 40px);
    padding: 64px 0;
  }

  .split,
  .split--image-right {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .split--image-right .section__media {
    order: 0;
  }

  .section__media {
    position: relative;
    height: 50vh;
    min-height: 330px;
  }

  .section__body {
    min-height: auto;
    padding: 54px 20px 62px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-group h3 {
    font-size: 34px;
  }

  .booking-picker,
  .booking-form,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .calendar__weekdays,
  .calendar__days {
    gap: 5px;
  }

  .calendar__day {
    min-height: 48px;
    padding: 6px;
    border-radius: 13px;
    font-size: 14px;
  }

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

  .footer__main {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding-top: 54px;
  }

  .footer__map,
  .footer__bottom {
    width: calc(100% - 40px);
  }

  .footer__map {
    width: 100%;
    height: 360px;
    border-radius: 0;
  }

  .footer__map-toggle {
    bottom: 18px;
    width: min(300px, calc(100% - 36px));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    width: calc(100vw - 36px);
    padding: 16px;
    border-radius: 22px;
  }

  .not-found .hero__actions {
    margin-inline: auto;
  }
}

@media (max-width: 380px) {
  .hero,
  .hero-slide,
  .hero__content {
    min-height: max(100svh, 880px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slides {
    transition-duration: .9s !important;
  }

  .hero-progress button.is-active span {
    animation-duration: var(--fill-duration, 7200ms) !important;
  }

  .booking-dropdown__menu {
    animation: none !important;
  }
}
