:root {
  --bg: #ffffff;
  --text: #261f33;
  --muted: #665a78;
  --primary: #8d53d6;
  --primary-2: #d866c7;
  --soft: #f7efff;
  --soft-2: #faf6ff;
  --line: rgba(141, 83, 214, 0.16);
  --shadow: 0 24px 60px rgba(84, 44, 120, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.page-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.glow-left { top: 80px; left: -100px; background: #d866c7; }
.glow-right { top: 260px; right: -110px; background: #8d53d6; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(141, 83, 214, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand strong,
.footer-brand strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.brand span,
.footer-brand span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}
.brand-logo,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(70, 40, 110, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 30px rgba(141, 83, 214, 0.28);
}
.btn-secondary,
.btn-outline {
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(141, 83, 214, 0.22);
}

.hero {
  padding: 64px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}
.hero h1,
.section-heading h2,
.content-card h2,
.booking-box h2,
.contact-card h2 {
  margin: 0;
  font-family: 'Cinzel', serif;
  line-height: 1.1;
}
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}
.hero h1 span {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  color: var(--muted);
}
.hero-text {
  margin: 22px 0;
  font-size: 1.06rem;
  color: #4a4258;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--soft-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-chip span {
  font-size: 0.83rem;
  color: var(--muted);
}
.contact-chip strong {
  font-size: 1.08rem;
}
.contact-chip.large {
  min-width: 220px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-card,
.hero-mini-card,
.service-card,
.content-card,
.requirement-card,
.gallery-card,
.contact-card,
.booking-box {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.logo-card {
  position: absolute;
  inset: 36px 40px auto 40px;
  padding: 30px;
  border-radius: 34px;
  background: radial-gradient(circle at top, rgba(216, 102, 199, 0.18), #fff 60%);
}
.logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
}
.hero-mini-card {
  position: absolute;
  width: 180px;
  border-radius: 24px;
  overflow: hidden;
}
.hero-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-one {
  bottom: 28px;
  left: 0;
  height: 230px;
}
.mini-two {
  right: 0;
  bottom: 54px;
  height: 180px;
}
.floating {
  animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section {
  padding: 34px 0 70px;
}
.section-soft {
  background: linear-gradient(180deg, #fff 0%, var(--soft-2) 100%);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2,
.content-card h2,
.booking-box h2,
.contact-card h2 {
  font-size: clamp(1.85rem, 2.4vw, 3rem);
  margin-bottom: 10px;
}
.section-heading p:last-child,
.content-card p,
.booking-box p,
.contact-card p {
  color: #574d66;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  border-radius: var(--radius);
  padding: 24px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: auto -20px -20px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 102, 199, 0.18), transparent 70%);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.service-card p {
  margin: 0 0 22px;
  color: #5e546d;
}
.price {
  font-size: 1.2rem;
  color: var(--primary);
}
.featured {
  background: linear-gradient(180deg, #fff, #f8efff);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 32px;
  align-items: center;
}
.image-stack {
  position: relative;
  min-height: 560px;
}
.main-image,
.accent-image {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.main-image {
  inset: 0 68px 70px 0;
}
.accent-image {
  width: 230px;
  height: 230px;
  right: 0;
  bottom: 0;
}
.content-card {
  border-radius: 30px;
  padding: 34px;
}
.price-banner {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 700;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.requirement-card {
  padding: 24px;
  border-radius: 22px;
  text-align: left;
}
.requirement-card span {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
}
.requirement-card h3 {
  margin: 10px 0 0;
  font-size: 1.05rem;
}

.booking-box {
  padding: 34px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, #f8efff);
}
.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 230px;
}
.gallery-card {
  border-radius: 24px;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card.tall {
  grid-row: span 2;
}
.gallery-card.wide {
  grid-column: span 2;
}

.contact-card {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: radial-gradient(circle at left, rgba(216, 102, 199, 0.14), #fff 42%);
}
.contact-number {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--primary);
}

.footer {
  border-top: 1px solid rgba(141, 83, 214, 0.1);
  padding: 28px 0 34px;
  background: #fff;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer p,
.footer a { color: var(--muted); }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #25d366, #17a34a);
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.28);
  z-index: 30;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .booking-box,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }
  .services-grid,
  .requirements-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    min-height: 500px;
  }
  .booking-actions {
    align-items: flex-start;
  }
  .contact-card {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: stretch;
  }
  .brand {
    justify-content: center;
  }
  .btn-outline {
    width: 100%;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-grid,
  .services-grid,
  .requirements-grid,
  .gallery-grid,
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 430px;
  }
  .logo-card {
    inset: 20px 20px auto 20px;
    padding: 18px;
  }
  .hero-mini-card {
    width: 140px;
  }
  .mini-one { height: 180px; }
  .mini-two { height: 140px; }
  .image-stack {
    min-height: 440px;
  }
  .main-image {
    inset: 0 24px 90px 0;
  }
  .accent-image {
    width: 160px;
    height: 160px;
  }
  .section,
  .section-soft {
    padding: 26px 0 54px;
  }
  .booking-box,
  .contact-card,
  .content-card,
  .service-card,
  .requirement-card {
    padding: 22px;
  }
  .contact-number {
    word-break: break-word;
  }
}
