:root {
  --bg: #fff6fa;
  --text: #2f1d2a;
  --muted: #755565;
  --line: rgba(174, 108, 142, 0.3);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --brand: #cf4f91;
  --brand-2: #e57ab0;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(137, 70, 108, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 450px at 0% 0%, #ffdfee 0%, transparent 65%),
    radial-gradient(900px 480px at 100% 0%, #ffeaf4 0%, transparent 64%),
    linear-gradient(180deg, #fff9fc 0%, #fff3f8 100%);
  line-height: 1.65;
}

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(245, 242, 250, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px rgba(217, 106, 162, 0.2);
}

.menu {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(125deg, #c94288, #e56daa);
  box-shadow: 0 12px 28px rgba(172, 63, 121, 0.36);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.button--small {
  padding: 0.6rem 0.92rem;
  font-size: 0.9rem;
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--light {
  color: var(--text);
  background: #fff;
}

.hero-layout {
  padding: 6.2rem 0 4.2rem;
}

.hero-layout__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.glass {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-main {
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.tag {
  display: inline-flex;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #efcfe0;
  background: rgba(255, 255, 255, 0.65);
  color: #9a5f7f;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.55rem);
  max-width: 16ch;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.52rem, 4vw, 2.45rem);
  letter-spacing: -0.01em;
}

.hero-main__lead {
  max-width: 54ch;
  color: var(--muted);
}

.hero-main__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.hero-photo {
  padding: 0.8rem;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.hero-metrics {
  grid-column: 1 / -1;
  padding: 0.95rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-strong);
  padding: 0.85rem 0.9rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.22rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.3rem 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.section-head span {
  color: #915172;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head--center {
  text-align: center;
  margin-bottom: 1.3rem;
}

.about-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.about-text {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 1.25rem;
}

.about-text p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

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

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

.service-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.2rem;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.08rem;
  color: #7d5f71;
}

.mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.mosaic__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.mosaic__item--large {
  grid-row: span 2;
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

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

.results-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.results-grid img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.results-grid figure:hover img {
  transform: scale(1.04);
}

.mosaic__item img,
.results-grid img,
.price-panel img {
  cursor: zoom-in;
}

.price-panels {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-panel {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.price-panel img {
  width: 100%;
  min-height: 460px;
  object-fit: contain;
  display: block;
}

.reasons {
  border-radius: 22px;
  padding: clamp(1.1rem, 2.8vw, 2rem);
  background: linear-gradient(130deg, #ad5f87, #cf739f);
  color: #fff;
  box-shadow: 0 20px 44px rgba(145, 63, 104, 0.35);
}

.reasons h2 {
  margin-bottom: 1.2rem;
}

.reasons__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.reason span {
  min-width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #2a1d37;
  background: #fff;
}

.reason p {
  margin: 0;
  color: #fff1f8;
}

.cta {
  border-radius: 22px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(130deg, rgba(205, 82, 145, 0.95), rgba(229, 120, 174, 0.95));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 18px 38px rgba(155, 63, 113, 0.36);
}

.cta .tag {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.cta p {
  margin: 0;
  color: #fff3f9;
  max-width: 60ch;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1.15rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: #8a6a7d;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100;
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 20, 0.75);
  border: 0;
}

.lightbox__content {
  margin: 0;
  width: auto;
  max-width: 95vw;
  max-height: 90vh;
  display: grid;
  gap: 0.6rem;
  z-index: 2;
  justify-items: center;
}

.lightbox__content img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
}

.lightbox__content figcaption {
  color: #ffeef7;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

.mobile-booking {
  display: none;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-layout__grid,
  .about-grid,
  .service-cards,
  .mosaic,
  .results-grid,
  .price-panels,
  .reasons__grid,
  .hero-metrics,
  .cta {
    grid-template-columns: 1fr;
  }

  .mosaic__item--large {
    grid-row: auto;
  }

  .cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero-layout {
    padding-top: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-photo img,
  .results-grid img,
  .mosaic__item img {
    min-height: 220px;
  }

  .price-panel img {
    min-height: 320px;
  }

  .topbar .button--small {
    display: none;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: 16px;
  }

  .lightbox__nav--next {
    right: 16px;
  }

  .mobile-booking {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    padding: 0.88rem 1rem;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(125deg, var(--brand), var(--brand-2));
    box-shadow: 0 14px 30px rgba(109, 50, 154, 0.44);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-booking.mobile-booking--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .footer {
    padding-bottom: 5.2rem;
  }
}

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