*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --dark: #0d0a12; --dark-purple: #1a1025; --mid-purple: #2d1f3d; --plum: #4a2d5e;
  --magenta: #c94090; --hot-pink: #e84d8a; --soft-pink: #f0a0c0; --lavender: #b48edd;
  --gold-spark: #f5d79e; --text: #e8dff0; --text-dim: #9a8aad;
}
html { scroll-behavior: smooth; }
body { font-family: 'Quicksand', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; cursor: default; }
#sparkle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; background: linear-gradient(180deg, rgba(13,10,18,0.95) 0%, rgba(13,10,18,0) 100%); transition: background 0.4s; }
nav.scrolled { background: rgba(13,10,18,0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 40px rgba(201,64,144,0.1); }
.nav-brand { font-family: 'Cinzel Decorative', serif; font-size: 1.3rem; font-weight: 700; color: var(--hot-pink); text-decoration: none; letter-spacing: 0.05em; }
.nav-brand span { color: var(--lavender); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a::after { content: '✦'; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%) scale(0); color: var(--hot-pink); font-size: 0.5rem; transition: transform 0.3s; }
.nav-links a:hover { color: var(--hot-pink); }
.nav-links a:hover::after { transform: translateX(-50%) scale(1); }
.nav-cta { background: linear-gradient(135deg, var(--magenta), var(--plum)); color: #fff !important; padding: 0.6rem 1.6rem; border-radius: 30px; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,64,144,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--soft-pink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(74,45,94,0.5) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,64,144,0.2) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgba(26,16,37,1) 0%, transparent 50%), var(--dark); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: orbFloat 12s ease-in-out infinite; }
.hero-orb-1 { width: 400px; height: 400px; background: var(--magenta); top: 10%; left: -5%; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--plum); bottom: 10%; right: -5%; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: var(--lavender); top: 60%; left: 50%; animation-delay: -8s; opacity: 0.2; }
@keyframes orbFloat { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,15px) scale(0.95); } }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 4rem; max-width: 1200px; padding: 0 2rem; width: 100%; }
.hero-image-wrap { flex-shrink: 0; position: relative; }
.hero-image-frame { width: 380px; height: 380px; border-radius: 50%; overflow: hidden; position: relative; border: 3px solid rgba(201,64,144,0.4); box-shadow: 0 0 60px rgba(201,64,144,0.25), 0 0 120px rgba(74,45,94,0.3), inset 0 0 40px rgba(0,0,0,0.3); animation: heroImageIn 1.2s ease-out both; }
@keyframes heroImageIn { from { opacity: 0; transform: scale(0.8) rotate(-5deg); } to { opacity: 1; transform: scale(1) rotate(0deg); } }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-ring { position: absolute; border: 1px solid rgba(201,64,144,0.2); border-radius: 50%; top: 50%; left: 50%; animation: ringPulse 4s ease-in-out infinite; }
.hero-ring-1 { width: 420px; height: 420px; margin: -210px 0 0 -210px; }
.hero-ring-2 { width: 460px; height: 460px; margin: -230px 0 0 -230px; animation-delay: -1.5s; }
.hero-ring-3 { width: 500px; height: 500px; margin: -250px 0 0 -250px; animation-delay: -3s; }
@keyframes ringPulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.02); } }
.hero-float-icon { position: absolute; font-size: 1.2rem; opacity: 0.6; animation: floatIcon 6s ease-in-out infinite; }
@keyframes floatIcon { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(10deg); } }
.hero-text { animation: heroTextIn 1s ease-out 0.3s both; }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-tagline { font-family: 'Sacramento', cursive; font-size: 1.5rem; color: var(--lavender); margin-bottom: 0.5rem; }
.hero-title { font-family: 'Cinzel Decorative', serif; font-size: 3.6rem; font-weight: 900; line-height: 1.1; margin-bottom: 1rem; background: linear-gradient(135deg, var(--hot-pink), var(--lavender), var(--soft-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: var(--text-dim); max-width: 460px; line-height: 1.8; margin-bottom: 2rem; font-weight: 400; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--magenta), var(--hot-pink)); color: #fff; padding: 0.9rem 2.2rem; border-radius: 40px; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none; border: none; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; letter-spacing: 0.03em; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,64,144,0.45); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--soft-pink); padding: 0.9rem 2.2rem; border-radius: 40px; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 1rem; text-decoration: none; border: 1px solid rgba(201,64,144,0.4); cursor: pointer; transition: all 0.3s; }
.btn-ghost:hover { background: rgba(201,64,144,0.1); border-color: var(--hot-pink); transform: translateY(-2px); }
section { padding: 6rem 2rem; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-family: 'Sacramento', cursive; color: var(--lavender); font-size: 1.4rem; margin-bottom: 0.3rem; }
.section-title { font-family: 'Cinzel Decorative', serif; font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, var(--hot-pink), var(--lavender)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--magenta), var(--lavender)); margin: 1rem auto 0; border-radius: 2px; }
.about { background: radial-gradient(ellipse 50% 40% at 80% 30%, rgba(74,45,94,0.3) 0%, transparent 60%), var(--dark-purple); }
.about-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-featured { border-radius: 20px; overflow: hidden; border: 2px solid rgba(201,64,144,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.about-featured img { width: 100%; display: block; transition: transform 0.6s; }
.about-featured:hover img { transform: scale(1.03); }
.about-text h3 { font-family: 'Cinzel Decorative', serif; font-size: 1.8rem; color: var(--hot-pink); margin-bottom: 1rem; }
.about-text p { color: var(--text-dim); line-height: 1.9; margin-bottom: 1rem; font-size: 1rem; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.about-stat { text-align: center; }
.about-stat-num { font-family: 'Cinzel Decorative', serif; font-size: 2rem; color: var(--hot-pink); font-weight: 700; }
.about-stat-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }
.portfolio { background: var(--dark); }

/* ─── GRID GALLERY ─── */
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 64, 144, 0.15);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

/* Spanning variations */
.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(
    135deg,
    rgba(201, 64, 144, 0.25) 0%,
    rgba(74, 45, 94, 0.4) 100%
  );
  backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  font-size: 1.8rem;
  color: var(--gold-spark);
  transform: translateY(10px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay-text {
  transform: translateY(0);
  opacity: 1;
}

/* Subtle glow on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(201, 64, 144, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  box-shadow: inset 0 0 0 2px rgba(201, 64, 144, 0.5), 0 8px 40px rgba(201, 64, 144, 0.2);
}


.services { background: radial-gradient(ellipse 60% 50% at 20% 70%, rgba(74,45,94,0.25) 0%, transparent 60%), var(--dark-purple); }
.services-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card { background: linear-gradient(145deg, rgba(45,31,61,0.6), rgba(26,16,37,0.8)); border: 1px solid rgba(201,64,144,0.15); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--magenta), var(--lavender)); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); border-color: rgba(201,64,144,0.35); box-shadow: 0 15px 50px rgba(0,0,0,0.3); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'Cinzel Decorative', serif; font-size: 1.2rem; color: var(--hot-pink); margin-bottom: 0.6rem; }
.service-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.service-price { font-family: 'Cinzel Decorative', serif; font-size: 1.6rem; color: var(--lavender); font-weight: 700; }
.service-price small { font-size: 0.7rem; color: var(--text-dim); font-family: 'Quicksand', sans-serif; font-weight: 400; display: block; margin-top: 0.2rem; }
.banner { background: linear-gradient(135deg, var(--plum), var(--mid-purple)); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.banner::before { content: '✦ ✦ ✦'; position: absolute; top: 1rem; left: 50%; transform: translateX(-50%); color: rgba(201,64,144,0.3); font-size: 0.8rem; letter-spacing: 1rem; }
.banner-quote { font-family: 'Sacramento', cursive; font-size: 2.2rem; color: var(--soft-pink); max-width: 700px; margin: 0 auto 1rem; line-height: 1.4; }
.banner-attr { color: var(--text-dim); font-size: 0.9rem; font-weight: 500; }
.contact { background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(74,45,94,0.2) 0%, transparent 60%), var(--dark); text-align: center; }
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-inner p { color: var(--text-dim); line-height: 1.8; margin-bottom: 2rem; font-size: 1.05rem; }
.contact-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.contact-link { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text-dim); text-decoration: none; font-size: 0.95rem; padding: 0.7rem 1.4rem; border: 1px solid rgba(201,64,144,0.2); border-radius: 40px; transition: all 0.3s; }
.contact-link:hover { color: var(--hot-pink); border-color: var(--hot-pink); background: rgba(201,64,144,0.08); }
.book-cta { display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(135deg, var(--magenta), var(--hot-pink)); color: #fff; padding: 1.1rem 3rem; border-radius: 50px; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.15rem; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; letter-spacing: 0.04em; }
.book-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 50px rgba(201,64,144,0.45); }

/* ─── FACEBOOK EMBED ─── */
.facebook-section {
  background: var(--dark-purple);
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.facebook-section .section-title {
  margin-bottom: 2rem;
  display: block;
  text-align: center;
}
#fb-wrapper {
  width: 500px;
  max-width: 100%;
}
#fb-wrapper iframe {
  display: block;
  width: 500px;
  max-width: 100%;
  height: 700px;
  border: none;
}

footer { background: rgba(13,10,18,0.95); border-top: 1px solid rgba(201,64,144,0.1); padding: 2rem; text-align: center; }
.footer-brand { font-family: 'Cinzel Decorative', serif; font-size: 1.1rem; color: var(--hot-pink); margin-bottom: 0.5rem; }
footer p { color: var(--text-dim); font-size: 0.8rem; }
.footer-sparkles { color: rgba(201,64,144,0.3); font-size: 0.7rem; letter-spacing: 0.8rem; margin-top: 0.8rem; }
.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: 900px) {
  .hero-content { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-image-frame { width: 280px; height: 280px; }
  .hero-ring-1 { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
  .hero-ring-2 { width: 350px; height: 350px; margin: -175px 0 0 -175px; }
  .hero-ring-3 { width: 380px; height: 380px; margin: -190px 0 0 -190px; }
  .hero-title { font-size: 2.6rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,10,18,0.98); justify-content: center; align-items: center; gap: 2.5rem; z-index: 150; }
  .nav-links.open a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .about-stats { flex-direction: column; gap: 1rem; }
  section { padding: 4rem 1.2rem; }

  /* Gallery responsive */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 0.75rem;
  }
  .gallery-item--tall {
    grid-row: span 1;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}