:root {
  --pink-100: #fff1f4;
  --pink-200: #ffdce4;
  --pink-300: #f8c7d4;
  --rose-500: #d7688a;
  --beige-100: #f5efe8;
  --gold-500: #b28d57;
  --ink-800: #2f2830;
  --ink-600: #5e505c;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(25, 16, 20, 0.08);
  --shadow-hover: 0 18px 40px rgba(25, 16, 20, 0.14);
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-800);
  background: linear-gradient(180deg, #fffdfd 0%, #fff8fb 35%, #fffdfb 100%);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

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

.section-padding {
  padding: 6rem 0;
}

.section-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--rose-500);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section-subtitle {
  margin-top: 0.8rem;
  color: var(--ink-600);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 104, 138, 0.12);
}

.navbar {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--ink-800);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--rose-500);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 20px;
  background: var(--ink-800);
  display: block;
  margin: 4px 0;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(
    115deg,
    rgba(36, 20, 33, 0.72) 5%,
    rgba(84, 34, 57, 0.56) 45%,
    rgba(215, 104, 138, 0.36) 100%
  );
}

.hero-content {
  color: var(--white);
  max-width: 700px;
  text-align: left;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  margin-top: 0.6rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(120deg, #d7688a, #b84f72);
  box-shadow: 0 8px 20px rgba(183, 74, 114, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(183, 74, 114, 0.4);
}

.btn-secondary {
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.88);
}

.about {
  background: radial-gradient(circle at 10% 10%, #fff3f5 0%, #ffffff 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.about h2,
.services h2,
.gallery h2,
.bridal h2,
.testimonials h2,
.contact h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.about p + p {
  margin-top: 0.7rem;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-height: 340px;
}

.services {
  background: linear-gradient(180deg, #fff8fb 0%, #fff 100%);
}

.service-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(215, 104, 138, 0.16);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
  color: var(--rose-500);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.service-card h3 {
  font-size: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery {
  background: linear-gradient(180deg, #fff 0%, #fef7f9 100%);
}

.gallery-masonry {
  margin-top: 1.8rem;
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery-item::after {
  content: "Before / After";
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(47, 40, 48, 0.65);
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.bridal {
  background: linear-gradient(145deg, #ffeef3 0%, #fff9fb 60%, #fff 100%);
}

.carousel {
  margin-top: 1.4rem;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease;
}

.carousel-track img {
  min-width: 100%;
  height: clamp(280px, 52vw, 520px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 0.8rem;
}

.carousel-btn.next {
  right: 0.8rem;
}

.testimonials {
  background: linear-gradient(180deg, #fff 0%, #f8f2eb 100%);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}

.stars {
  color: #e6ab2f;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.testimonial-card h3 {
  margin-top: 0.7rem;
  font-size: 1rem;
}

.contact {
  background: linear-gradient(180deg, #fff9fb 0%, #fff 100%);
}

.contact-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-card,
.map-card {
  background: var(--white);
  border: 1px solid rgba(215, 104, 138, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-bottom: 0.7rem;
}

.socials {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.8rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-100);
  color: var(--ink-800);
  transition: transform 0.25s ease, background 0.25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: var(--pink-300);
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.map-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 0.6rem;
}

.footer {
  padding: 2.4rem 0;
  text-align: center;
  background: #291f27;
  color: #fef5f8;
}

.footer p {
  margin-top: 0.2rem;
}

.footer .socials {
  justify-content: center;
}

.footer .socials a {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer small {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 70;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: rgba(20, 15, 18, 0.86);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox img {
  width: min(900px, 94vw);
  max-height: 88vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 760px) {
  .section-padding {
    padding: 4.2rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 4.4rem;
    right: 4%;
    width: min(270px, 90%);
    background: #fff;
    border: 1px solid rgba(215, 104, 138, 0.15);
    border-radius: 0.8rem;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    padding: 0.8rem;
  }

  .nav-links.open {
    display: flex;
  }

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

  .gallery-masonry {
    column-count: 1;
  }

  .hero {
    min-height: 78vh;
  }
}
