@import url("https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --background: #fffafa;
  --background-soft: #fff6f7;
  --surface: rgba(255, 248, 249, 0.88);
  --surface-strong: #fff1f3;
  --primary: #ee919e;
  --primary-soft: #f8cbd1;
  --primary-light: #fdebed;
  --border: rgba(238, 145, 158, 0.28);
  --text: #292326;
  --text-muted: #7f7377;
  --white: #ffffff;
  --sage: #8a9b91;
  --shadow-soft: 0 16px 40px rgba(87, 52, 58, 0.08);
  --max-width: 1320px;
  color: var(--text);
  background: var(--background);
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 203, 209, 0.22), transparent 26rem),
    linear-gradient(180deg, var(--background) 0%, #fff8f8 48%, #fffafa 100%);
}

body.intro-lock,
body.modal-lock {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

:focus-visible {
  outline: 2px solid rgba(238, 145, 158, 0.82);
  outline-offset: 4px;
}

.icon {
  flex: 0 0 auto;
}

.app-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-wrap {
  width: min(var(--max-width), calc(100vw - 96px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  direction: ltr;
  padding-top: 18px;
}

.header-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--max-width), calc(100vw - 96px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 18px 0 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 246, 247, 0.82);
  box-shadow: 0 10px 28px rgba(76, 44, 49, 0.07);
  backdrop-filter: blur(16px);
}

.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 152px;
}

.brand-logo {
  width: 148px;
  height: auto;
  opacity: 1;
  transition: opacity 180ms ease;
}

.brand-logo.is-reserved {
  opacity: 0;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 2px;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--primary);
  content: "";
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.booking-button,
.submit-button,
.mobile-sticky-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  color: #3d2d32;
  background: linear-gradient(180deg, #f8cbd1 0%, #eea2ad 100%);
  box-shadow: 0 8px 20px rgba(238, 145, 158, 0.19);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.booking-button:hover,
.submit-button:hover,
.mobile-sticky-booking:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(238, 145, 158, 0.24);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  direction: ltr;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher button {
  padding: 5px 2px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--primary);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 12px;
  min-width: 210px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 250, 250, 0.96);
  box-shadow: var(--shadow-soft);
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-menu a {
  padding: 10px 8px;
  color: var(--text);
  font-weight: 700;
}

.brand-intro {
  --intro-final-left: 48px;
  --intro-final-top: 28px;
  --intro-final-width: 148px;
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.brand-intro__backdrop {
  position: absolute;
  inset: 0;
  background: #fffafa;
  animation: intro-backdrop 3.15s ease-out forwards;
}

.brand-intro__logo {
  position: fixed;
  top: calc(50vh - 58px);
  left: -430px;
  z-index: 2;
  width: min(34vw, 430px);
  height: auto;
  transform-origin: center center;
  animation: intro-logo 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: left, top, width, opacity, transform;
}

.brand-intro.is-done {
  opacity: 0;
  transition: opacity 320ms ease;
}

.intro-skip {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  cursor: pointer;
  pointer-events: auto;
}

@keyframes intro-backdrop {
  0%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes intro-logo {
  0% {
    left: -430px;
    top: calc(50vh - 58px);
    width: min(34vw, 430px);
    opacity: 0;
    transform: scale(0.92);
    filter: drop-shadow(0 24px 52px rgba(238, 145, 158, 0));
  }
  40%,
  60% {
    left: calc(50vw - min(34vw, 430px) / 2);
    top: calc(50vh - min(9.16vw, 116px) / 2);
    width: min(34vw, 430px);
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 26px 56px rgba(238, 145, 158, 0.16));
  }
  100% {
    left: var(--intro-final-left);
    top: var(--intro-final-top);
    width: var(--intro-final-width);
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(238, 145, 158, 0));
  }
}

.decorative-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.line {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(238, 145, 158, 0.28);
}

.line--left {
  left: 28px;
}

.line--right {
  right: 28px;
}

.floating-badge {
  position: fixed;
  top: 44vh;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 250, 250, 0.78);
  box-shadow: 0 10px 28px rgba(86, 49, 55, 0.06);
}

.floating-badge img {
  width: 20px;
  opacity: 0.72;
}

.home-page {
  position: relative;
  z-index: 1;
}

.hero-section {
  width: min(var(--max-width), calc(100vw - 96px));
  margin: 34px auto 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.92fr) minmax(310px, 0.96fr);
  gap: 28px;
  align-items: center;
  direction: ltr;
}

.hero-media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 1.8 / 1;
  border: 1px solid rgba(238, 145, 158, 0.18);
  border-radius: 21px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  touch-action: pan-y;
}

.hero-media__frame {
  position: absolute;
  inset: 0;
}

.hero-media__asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: media-fade 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes media-fade {
  from {
    opacity: 0.25;
    transform: translateX(22px) scale(1.018);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(41, 35, 38, 0.14) 100%),
    linear-gradient(90deg, rgba(255, 250, 250, 0.18), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
}

.hero-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.hero-dots span.is-active {
  width: 19px;
  border-radius: 999px;
  background: var(--white);
}

.hero-arrows {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
}

.hero-arrows button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 250, 250, 0.7);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-arrows button:hover {
  background: rgba(255, 250, 250, 0.92);
  transform: translateY(-1px);
}

.service-selector {
  min-width: 0;
  align-self: center;
  padding: 18px;
  border: 1px solid rgba(238, 145, 158, 0.22);
  border-radius: 21px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(253, 235, 237, 0.72)),
    rgba(255, 248, 249, 0.78);
  box-shadow: 0 14px 34px rgba(86, 49, 55, 0.06);
  overflow: visible;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: auto;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 11px;
  min-height: 142px;
  padding: 20px 12px 18px;
  border: 1px solid rgba(238, 145, 158, 0.16);
  border-radius: 18px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.service-row:hover,
.service-row:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(238, 145, 158, 0.34);
  background: rgba(255, 250, 250, 0.72);
  box-shadow: 0 14px 28px rgba(86, 49, 55, 0.065);
}

.service-row__active {
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(253, 235, 237, 0.92), rgba(255, 248, 249, 0.72));
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.service-row.is-active .service-row__active {
  opacity: 1;
  transform: scale(1);
}

.service-row__icon,
.service-row__label,
.service-row__arrow {
  position: relative;
  z-index: 1;
}

.service-row__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(238, 145, 158, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.94), rgba(253, 235, 237, 0.82));
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.28);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row__icon img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.service-row__label {
  color: currentColor;
  font-size: clamp(0.96rem, 0.4vw + 0.86rem, 1.08rem);
  font-weight: 800;
  letter-spacing: 0;
}

.service-row__arrow {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(238, 145, 158, 0.16);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.38);
  opacity: 0.78;
}

.service-row.is-active {
  color: #4b373d;
}

.service-row.is-active .service-row__icon,
.service-row:hover .service-row__icon {
  transform: scale(1.035);
}

.service-row.is-active .service-row__arrow {
  border-color: rgba(238, 145, 158, 0.62);
}

.intro-copy {
  width: min(830px, calc(100vw - 48px));
  margin: 64px auto 76px;
  text-align: center;
}

.script-heading {
  margin: 0 0 8px;
  color: var(--primary);
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: clamp(2.1rem, 2vw + 1.6rem, 3rem);
  line-height: 0.95;
}

.intro-copy h1,
.about-block h2,
.booking-modal h2,
.page-hero h1,
.page-heading h1,
.legal-page h1 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 3.4vw, 4.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy p:last-child,
.page-hero p:last-child,
.page-heading p,
.legal-page p {
  max-width: 730px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 0.42vw + 0.9rem, 1.16rem);
  line-height: 1.9;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 550ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.benefits-section {
  margin-top: 0;
}

.benefits-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 246, 247, 0.66);
  overflow: hidden;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 212px;
  padding: 34px 30px;
  border-right: 1px solid rgba(238, 145, 158, 0.18);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-light);
}

.benefit-item h2 {
  margin: 2px 0 10px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.35;
}

.benefit-item p,
.about-block p,
.note {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.78;
}

.results-section {
  margin-top: 90px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading-row h2 {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.text-link,
.outline-button,
.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link {
  padding-bottom: 2px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.result-card {
  overflow: hidden;
  border: 1px solid rgba(238, 145, 158, 0.22);
  border-radius: 18px;
  background: rgba(255, 248, 249, 0.7);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after figure {
  position: relative;
  margin: 0;
  aspect-ratio: 0.87 / 1;
  overflow: hidden;
}

.before-after figure + figure {
  border-left: 1px solid rgba(255, 255, 255, 0.74);
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 250, 250, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.result-card > p {
  margin: 0;
  padding: 16px 18px 17px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-contact {
  margin-top: 88px;
  padding-bottom: 96px;
}

.about-contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.about-block,
.contact-block,
.map-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 248, 249, 0.68);
}

.about-block,
.contact-block {
  padding: 34px;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.about-block h2 {
  max-width: 360px;
  font-size: clamp(2.05rem, 2vw + 1.35rem, 3.2rem);
}

.about-block p {
  margin-top: 18px;
}

.outline-button,
.instagram-button {
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgba(238, 145, 158, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

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

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  color: var(--text-muted);
}

.contact-list svg {
  flex: 0 0 auto;
  color: var(--primary);
}

.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 241, 243, 0.82), rgba(255, 250, 250, 0.8)),
    #fff8f9;
}

.map-card__grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(238, 145, 158, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 145, 158, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: rotate(-7deg) scale(1.15);
}

.map-card__marker {
  position: absolute;
  top: 45%;
  left: 52%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(238, 145, 158, 0.36);
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(86, 49, 55, 0.08);
}

.map-card > span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.content-page {
  padding-bottom: 96px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 48px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  border: 1px solid rgba(238, 145, 158, 0.18);
  border-radius: 21px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about-detail {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 26px;
  margin-top: 48px;
}

.note {
  padding-top: 18px;
  font-size: 0.92rem;
}

.page-heading {
  margin-top: 58px;
  text-align: center;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 28px;
}

.gallery-filters button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(238, 145, 158, 0.22);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 248, 249, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filters button.is-active {
  color: #4b373d;
  background: var(--primary-light);
  border-color: rgba(238, 145, 158, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  border: 1px solid rgba(238, 145, 158, 0.2);
  border-radius: 18px;
  background: var(--surface-strong);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(86, 49, 55, 0.055);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.gallery-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 250, 250, 0.74);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 920;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(41, 35, 38, 0.42);
  backdrop-filter: blur(10px);
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: calc(100vh - 80px);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(30, 18, 20, 0.24);
  object-fit: contain;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(41, 35, 38, 0.24);
  backdrop-filter: blur(8px);
  animation: modal-fade 240ms ease;
}

.booking-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 250, 250, 0.98);
  box-shadow: 0 30px 80px rgba(60, 35, 40, 0.18);
  animation: modal-rise 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: var(--text);
  background: var(--primary-light);
  cursor: pointer;
}

.booking-modal__heading {
  max-width: 470px;
  margin-bottom: 24px;
}

.booking-modal__heading .script-heading {
  font-size: 2.25rem;
}

.booking-modal h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.booking-modal__heading p:last-child {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(238, 145, 158, 0.24);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
}

.booking-form input,
.booking-form select {
  height: 46px;
  padding: 0 13px;
}

.booking-form textarea {
  resize: vertical;
  min-height: 104px;
  padding: 12px 13px;
}

.booking-form small {
  min-height: 1em;
  color: #9c3f4b;
  font-size: 0.76rem;
  font-weight: 700;
}

.form-field--wide,
.form-error {
  grid-column: 1 / -1;
}

.form-privacy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.form-privacy a {
  margin-inline-start: 8px;
  color: var(--primary);
  font-weight: 800;
}

.form-error {
  min-height: 1em;
  margin: 0;
  color: #9c3f4b;
  font-size: 0.86rem;
  font-weight: 700;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.booking-flow {
  display: grid;
  gap: 18px;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(238, 145, 158, 0.22);
  transition:
    width 220ms ease,
    background 220ms ease;
}

.booking-steps li.is-active {
  width: 38px;
  background: var(--primary);
}

.booking-step {
  display: grid;
  gap: 18px;
}

.booking-step h3,
.booking-confirmation h3 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  font-weight: 600;
  line-height: 1.02;
}

.booking-choice-grid,
.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.booking-choice,
.booking-service-card,
.slot-button {
  border: 1px solid rgba(238, 145, 158, 0.22);
  border-radius: 18px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(253, 235, 237, 0.54)),
    rgba(255, 248, 249, 0.72);
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.booking-choice:hover,
.booking-service-card:hover,
.slot-button:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 145, 158, 0.42);
  box-shadow: 0 12px 28px rgba(86, 49, 55, 0.065);
}

.booking-choice.is-selected,
.booking-service-card.is-selected,
.slot-button.is-selected {
  border-color: rgba(238, 145, 158, 0.62);
  background: rgba(253, 235, 237, 0.92);
}

.booking-choice {
  min-height: 126px;
  padding: 22px;
  text-align: left;
}

.booking-choice span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.booking-choice small,
.booking-muted {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

.booking-service-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 126px;
  padding: 18px 12px;
  font-weight: 800;
}

.booking-service-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.booking-field {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(238, 145, 158, 0.24);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
}

.slot-panel {
  min-height: 76px;
}

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

.slot-button {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.booking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.booking-summary span {
  padding: 7px 11px;
  border: 1px solid rgba(238, 145, 158, 0.22);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.booking-actions .outline-button,
.booking-actions .submit-button {
  width: auto;
  min-width: 148px;
  margin-top: 0;
}

.booking-flow-error {
  margin-top: -4px;
}

.booking-confirmation {
  display: grid;
  gap: 18px;
}

.booking-confirmation dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.booking-confirmation dl div {
  padding: 14px;
  border: 1px solid rgba(238, 145, 158, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
}

.booking-confirmation dt {
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.booking-confirmation dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.mobile-sticky-booking {
  position: fixed;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 45;
  display: none;
  min-height: 52px;
}

.legal-page {
  display: grid;
  align-content: center;
  min-height: 100vh;
  padding: 64px 0;
}

.legal-page img {
  margin-bottom: 34px;
}

.legal-page p {
  margin-left: 0;
}

[dir="rtl"] .intro-copy,
[dir="rtl"] .about-block,
[dir="rtl"] .contact-block,
[dir="rtl"] .booking-modal,
[dir="rtl"] .page-hero,
[dir="rtl"] .page-heading,
[dir="rtl"] .legal-page {
  direction: rtl;
}

[dir="rtl"] .hero-grid,
[dir="rtl"] .header-bar,
[dir="rtl"] .results-grid,
[dir="rtl"] .about-contact__grid,
[dir="rtl"] .about-detail,
[dir="rtl"] .gallery-grid {
  direction: ltr;
}

[dir="rtl"] .service-row {
  text-align: right;
}

[dir="rtl"] .section-heading-row {
  direction: rtl;
}

[dir="rtl"] .before-after figcaption,
[dir="rtl"] .gallery-card span {
  right: 12px;
  left: auto;
}
