:root {
  --rose: #C23F89;
  --burgundy: #850E51;
  --ink: #111827;
  --muted: #566070;
  --line: rgba(133, 14, 81, 0.14);
  --shadow: 0 24px 70px rgba(73, 13, 48, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  padding-bottom: 76px;
}

h1,
h2,
h3,
h4 {
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(35px, 9vw, 68px);
}

h2 {
  font-size: clamp(28px, 7vw, 48px);
}

h3,
h4 {
  font-size: clamp(20px, 5vw, 28px);
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

.container-site {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(133, 14, 81, 0.12);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--burgundy), var(--rose));
  box-shadow: 0 10px 24px rgba(133, 14, 81, 0.25);
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: none !important;
}

.desktop-phone {
  display: none !important;
}

.mobile-menu-button {
  display: inline-flex !important;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

.nav-link {
  font-size: 18px;
  color: #303746;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: var(--burgundy);
}

.phone-pill,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-pill,
.primary-button {
  color: #fff !important;
  background: linear-gradient(135deg, var(--burgundy), var(--rose));
  box-shadow: 0 16px 34px rgba(133, 14, 81, 0.24);
}

.phone-pill {
  padding: 12px 18px;
}

.primary-button {
  padding: 16px 24px;
}

.secondary-button {
  color: #111827 !important;
  background: #fff;
  border: 1px solid rgba(133, 14, 81, 0.18);
  padding: 16px 22px;
}

.phone-pill:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(133, 14, 81, 0.3);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(194, 63, 137, 0.18), transparent 34%), linear-gradient(135deg, #fff7fb 0%, #fff 48%, #f7edf3 100%);
}

.hero-section::before,
.hero-section::after,
.decor-circle {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-section::before {
  width: 360px;
  height: 360px;
  right: -130px;
  top: 72px;
  border: 1px solid rgba(133, 14, 81, 0.18);
}

.hero-section::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 18px;
  background: rgba(194, 63, 137, 0.08);
}

.hero-grid {
  min-height: 680px;
}

.stars {
  color: var(--rose);
  letter-spacing: 0.14em;
  font-size: 22px;
  font-weight: 900;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid rgba(133, 14, 81, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(133, 14, 81, 0.08);
}

.hero-image-card {
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: #fff;
}

.hero-image-card img,
.media-card img,
.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 24px;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.13);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #111827;
  background: #fff;
  border: 1px solid rgba(133, 14, 81, 0.14);
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 800;
}

.lux-card {
  border: 1px solid rgba(133, 14, 81, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.soft-section {
  background: linear-gradient(180deg, #fff, #fff7fb);
}

.dark-cta,
.footer {
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(194, 63, 137, 0.32), transparent 30%), linear-gradient(135deg, #160a12, #2c0a1e 58%, #850e51);
}

.dark-cta h2,
.dark-cta h3,
.footer h2,
.footer h3,
.footer .brand-name {
  color: #fff;
}

.dark-cta p,
.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.86);
}

.footer p,
.footer a,
.footer li {
  font-size: 14px;
  line-height: 1.65;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #850E51;
  background: #fff7fb;
  border: 1px solid rgba(133, 14, 81, 0.12);
}

.split-block {
  display: grid;
  gap: 24px;
  align-items: center;
}

.media-card,
.wide-photo {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.faq-item {
  border-bottom: 1px solid rgba(133, 14, 81, 0.14);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  color: #111827;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  color: #374151;
}

.faq-item.open .faq-answer {
  display: block;
}

.review-shell {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 360ms ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 10px;
}

.review-card-inner {
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(133, 14, 81, 0.12);
  background: #fff;
  box-shadow: 0 18px 44px rgba(73, 13, 48, 0.1);
  padding: 24px;
}

.carousel-button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #111827;
  background: #fff;
  border: 1px solid rgba(133, 14, 81, 0.18);
  box-shadow: 0 12px 24px rgba(73, 13, 48, 0.12);
}

.mobile-sticky-call {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(133, 14, 81, 0.16);
  transform: translateY(105%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call.is-visible {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 54px;
  color: #fff !important;
  background: linear-gradient(135deg, #850E51, #C23F89);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(133, 14, 81, 0.35);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.glow {
  animation: softGlow 3.4s ease-in-out infinite alternate;
}

@keyframes softGlow {
  from { box-shadow: 0 16px 34px rgba(133, 14, 81, 0.2); }
  to { box-shadow: 0 22px 52px rgba(194, 63, 137, 0.34); }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .desktop-nav {
    display: flex !important;
  }

  .desktop-phone {
    display: inline-flex !important;
  }

  .mobile-menu-button,
  .mobile-menu,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

  .split-block {
    grid-template-columns: minmax(0, 65%) minmax(260px, 35%);
  }

  .split-block.reverse {
    grid-template-columns: minmax(260px, 35%) minmax(0, 65%);
  }

  .split-block.reverse .text-col {
    order: 2;
  }

  .split-block.reverse .image-col {
    order: 1;
  }

  .review-card {
    flex-basis: 33.3333%;
  }
}

@media (max-width: 767px) {
  h1,
  h2 {
    line-height: 1.08;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .brand-name {
    font-size: 24px;
  }

  .trust-icons img {
    height: 44px;
    max-width: 82px;
  }
}
