:root {
  --cream: #FFF7FB;
  --blush: #FFF0F5;
  --rose: #FF4FA3;
  --champagne: #FF7A59;
  --maroon: #FF4FA3;
  --charcoal: #2B1720;
  --muted: #6B4A55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
  font-family: "Playfair Display", serif;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

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

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

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--rose), var(--champagne), var(--rose));
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(255, 247, 251, 0.96);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-top-color: var(--maroon);
  border-radius: 999px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--maroon);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 79, 163, 0.42);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: multiply;
}

.cursor-ring.is-hovering {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 79, 163, 0.75);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 247, 251, 0.88);
  box-shadow: 0 18px 50px rgba(43, 23, 32, 0.1);
  backdrop-filter: blur(18px);
}

.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--rose);
  content: "";
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 247, 251, 0.96);
  transition: max-height 0.35s ease;
}

.mobile-panel.open {
  max-height: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 79, 163, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 79, 163, 0.25);
  background: rgba(255, 247, 251, 0.72);
  color: var(--charcoal);
}

.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.hero-slide {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
}

.hero::after,
.page-hero::after,
.image-cta::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 247, 251, 0.94), rgba(255, 247, 251, 0.66), rgba(255, 122, 89, 0.18));
  content: "";
}

.hero-copy,
.page-hero > *,
.image-cta > * {
  position: relative;
  z-index: 1;
}

.hero-swiper {
  z-index: -1;
}

.page-hero {
  min-height: 58vh;
  position: relative;
  display: grid;
  place-items: end start;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.about-page {
  overflow: hidden;
}

.about-hero {
  background-attachment: fixed;
}

.about-story {
  position: relative;
}

.about-story::before {
  position: absolute;
  inset: 12% -90px auto auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 79, 163, 0.22);
  border-radius: 999px;
  content: "";
}

.about-image {
  box-shadow: 0 32px 90px rgba(43, 23, 32, 0.13);
  transform-origin: center;
}

.about-copy p {
  will-change: transform, opacity;
}

.about-cta {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 247, 251, 0), rgba(255, 247, 251, 0.82));
}

.eyebrow {
  display: inline-block;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title {
  color: #2B1720;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.glass {
  border: 1px solid rgba(255, 79, 163, 0.24);
  background: rgba(255, 247, 251, 0.78);
  box-shadow: 0 24px 70px rgba(43, 23, 32, 0.1);
  backdrop-filter: blur(18px);
}

.service-card,
.price-card,
.team-card,
.review-card,
.feature-card,
.video-card {
  border: 1px solid rgba(255, 79, 163, 0.18);
  border-radius: 8px;
  background: rgba(255, 247, 251, 0.78);
  box-shadow: 0 18px 54px rgba(43, 23, 32, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.price-card:hover,
.team-card:hover,
.review-card:hover,
.feature-card:hover,
.video-card:hover {
  border-color: rgba(255, 79, 163, 0.32);
  box-shadow: 0 26px 70px rgba(43, 23, 32, 0.14);
  transform: translateY(-8px);
}

.home-testimonials {
  position: relative;
  overflow: hidden;
}

.home-testimonials::before {
  position: absolute;
  inset: 12% auto auto -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 79, 163, 0.24);
  border-radius: 999px;
  content: "";
}

.home-testimonials .testimonial-swiper {
  overflow: visible;
  padding: 8px 0 18px;
}

.home-testimonials .testimonial-swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear;
}

.home-testimonials .testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  opacity: 0.62;
  transform: scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card::before {
  position: absolute;
  top: -28px;
  right: 24px;
  color: rgba(255, 79, 163, 0.2);
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  line-height: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--maroon);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-testimonials .testimonial-swiper .swiper-slide-active.testimonial-card {
  border-color: rgba(255, 79, 163, 0.36);
  opacity: 1;
  box-shadow: 0 30px 86px rgba(43, 23, 32, 0.18);
  transform: scale(1);
}

.review-stars {
  color: var(--maroon);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.testimonial-controls {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 0.75rem;
}

.testimonial-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 79, 163, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 251, 0.78);
  color: var(--maroon);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(43, 23, 32, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.testimonial-nav:hover {
  background: var(--maroon);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.home-testimonials .testimonial-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.32);
  opacity: 1;
}

.home-testimonials .testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--maroon);
}

.icon-pill {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFF7FB, #FFF7FB);
  color: var(--maroon);
  font-size: 1.25rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.contact-image {
  min-height: 620px;
  box-shadow: 0 32px 90px rgba(43, 23, 32, 0.14);
}

.image-frame img,
.gallery-card img,
.insta-tile img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.image-frame:hover img,
.gallery-card:hover img,
.insta-tile:hover img,
.team-card:hover img {
  transform: scale(1.08);
}

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-card:nth-child(3n + 2) {
  min-height: 420px;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 247, 251, 0.86);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.filter-btn {
  border: 1px solid rgba(255, 79, 163, 0.18);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 247, 251, 0.74);
  color: #6B4A55;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  color: #fff;
}

.service-tabs-section {
  position: relative;
  overflow: hidden;
}

.service-tabs-section::before {
  position: absolute;
  inset: 9% auto auto -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 79, 163, 0.24);
  border-radius: 999px;
  content: "";
}

.service-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  overflow: visible;
  padding: 0.35rem 0;
}

.service-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 79, 163, 0.16);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 247, 251, 0.78);
  color: #6B4A55;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-tab:hover {
  border-color: rgba(255, 79, 163, 0.32);
  color: var(--maroon);
  transform: translateY(-2px);
}

.service-tab.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 79, 163, 0.18);
}

.service-panels {
  position: relative;
  z-index: 1;
}

.service-panel[hidden] {
  display: none;
}

.service-panel-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-item-card {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border: 1px solid rgba(255, 79, 163, 0.12);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  padding: 1.15rem 1.2rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 247, 251, 0.94), rgba(255, 247, 251, 0.76));
  box-shadow: 0 14px 38px rgba(43, 23, 32, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-item-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--rose), transparent);
  content: "";
}

.service-item-card:hover {
  border-color: rgba(255, 79, 163, 0.32);
  border-left-color: var(--maroon);
  background: #FFF7FB;
  box-shadow: 0 22px 58px rgba(43, 23, 32, 0.12);
  transform: translateY(-5px);
}

.service-item-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 79, 163, 0.08);
  color: var(--maroon);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.service-item-card h3 {
  margin-top: 1.05rem;
  color: #2B1720;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
}

.service-item-card p {
  margin-top: 0.65rem;
  color: #6B4A55;
  line-height: 1.6;
}

.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100vw;
  gap: 2rem;
  padding-right: 2rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.floating-btn,
.back-to-top {
  position: fixed;
  right: 22px;
  z-index: 75;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(43, 23, 32, 0.22);
}

.whatsapp {
  bottom: 24px;
  background: #25d366;
  animation: whatsappFloat 2.4s ease-in-out infinite;
}

.whatsapp svg {
  animation: whatsappWiggle 1.8s ease-in-out infinite;
}

.back-to-top {
  right: 86px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes whatsappWiggle {
  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(8deg);
  }

  75% {
    transform: rotate(-4deg);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(24, 17, 15, 0.82);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
}

.form-control {
  width: 100%;
  border: 1px solid rgba(255, 79, 163, 0.16);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  background: #FFF7FB;
  outline: none;
}

.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.14);
}

@media (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .hero,
  .hero-slide {
    min-height: 92vh;
  }

  .about-hero {
    background-attachment: scroll;
  }

  .gallery-card,
  .gallery-card:nth-child(3n + 2) {
    min-height: 300px;
  }

  .contact-image {
    min-height: 440px;
  }

  .testimonial-card {
    min-height: 280px;
    opacity: 1;
    transform: none;
  }

  .testimonial-controls {
    justify-content: center;
  }
}
