/* ============================================================
   BABY ME BAHAMAS — v2 "Confetti & Cream"
   Event Decor · Party Rentals · Party Supplies · Room Decor
   Nassau, Bahamas · Prizmek Web Design Mockup
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --pink:    #FF6FB4;
  --pink2:   #e85a9e;
  --lav:     #B8A9F0;
  --lav2:    #9d8de0;
  --lemon:   #FFE566;
  --mint:    #7DDFC3;
  --peach:   #FFAD8A;
  --sky:     #9DD9F3;
  --rose:    #FF9EC4;
  --cream:   #FFFAF8;
  --white:   #FFFFFF;
  --charcoal:#2D2340;
  --muted:   #7A6E80;
  --border:  rgba(45,35,64,0.08);
  --shadow:  0 8px 40px rgba(45,35,64,0.08);
  --shadow-lg: 0 20px 60px rgba(45,35,64,0.12);
  --r-sm:    12px;
  --r-md:    20px;
  --r-lg:    32px;
  --r-pill:  100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.display { font-family: 'Fraunces', serif; line-height: 1.05; }
h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.08; }

/* ── UTILITY ── */
.text-pink { color: var(--pink); }
.text-lav  { color: var(--lav); }
.text-mint { color: var(--mint); }
.italic { font-style: italic; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,250,248,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-logo-blob {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  border-radius: 50% 38% 62% 38% / 46% 52% 48% 54%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; animation: blobWobble 5s ease-in-out infinite;
}

@keyframes blobWobble {
  0%,100% { border-radius: 50% 38% 62% 38% / 46% 52% 48% 54%; }
  33%  { border-radius: 60% 40% 55% 45% / 52% 44% 56% 48%; }
  66%  { border-radius: 42% 58% 46% 54% / 58% 46% 54% 42%; }
}

.nav-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-wordmark em {
  font-style: italic;
  color: var(--pink);
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }

.nav-book {
  background: var(--charcoal); color: white;
  padding: 10px 22px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}
.nav-book:hover { background: var(--pink); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: white; z-index: 999; padding: 20px 5%; border-top: 1.5px solid var(--border); flex-direction: column; gap: 0; box-shadow: 0 8px 24px rgba(45,35,64,0.1); }
.mobile-menu a { color: var(--charcoal); font-size: 15px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }

/* ── HERO — EDITORIAL SPLIT ── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Confetti dots — CSS only */
.confetti-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dot {
  position: absolute;
  border-radius: 50%;
  animation: floatDot linear infinite;
  opacity: 0.55;
}

.dot-0  { width:18px; height:18px; background:var(--pink);  left:7%;  top:15%; animation-duration:14s; animation-delay:-2s; }
.dot-1  { width:12px; height:12px; background:var(--lemon); left:15%; top:65%; animation-duration:10s; animation-delay:-5s; }
.dot-2  { width:10px; height:10px; background:var(--lav);   left:28%; top:25%; animation-duration:16s; animation-delay:-1s; }
.dot-3  { width:16px; height:16px; background:var(--mint);  left:33%; top:78%; animation-duration:12s; animation-delay:-8s; }
.dot-4  { width: 8px; height: 8px; background:var(--peach); left:45%; top:10%; animation-duration:18s; animation-delay:-3s; }
.dot-5  { width:14px; height:14px; background:var(--sky);   left:60%; top:55%; animation-duration:11s; animation-delay:-6s; }
.dot-6  { width:20px; height:20px; background:var(--pink);  left:72%; top:20%; animation-duration:15s; animation-delay:-9s; }
.dot-7  { width:10px; height:10px; background:var(--lemon); left:80%; top:80%; animation-duration:13s; animation-delay:-4s; }
.dot-8  { width:14px; height:14px; background:var(--lav);   left:88%; top:35%; animation-duration:17s; animation-delay:-7s; }
.dot-9  { width: 8px; height: 8px; background:var(--mint);  left:5%;  top:90%; animation-duration: 9s; animation-delay:-2s; }
.dot-10 { width:12px; height:12px; background:var(--peach); left:52%; top:88%; animation-duration:14s; animation-delay:-5s; }
.dot-11 { width:16px; height:16px; background:var(--sky);   left:92%; top:60%; animation-duration:11s; animation-delay:-3s; }
/* Star shapes */
.star { border-radius: 0; background: none; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.star-0 { width:24px; height:24px; left:22%; top:45%; animation-duration:12s; animation-delay:-4s; color:var(--lemon); }
.star-1 { width:20px; height:20px; left:58%; top:15%; animation-duration:16s; animation-delay:-7s; color:var(--pink); }
.star-2 { width:22px; height:22px; left:76%; top:70%; animation-duration:14s; animation-delay:-2s; color:var(--lav); }

@keyframes floatDot {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-20px) rotate(45deg); }
  50%  { transform: translateY(-8px) rotate(90deg); }
  75%  { transform: translateY(-30px) rotate(135deg); }
  100% { transform: translateY(0px) rotate(180deg); }
}

/* Hero left — content */
.hero-left {
  padding: 120px 6% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  box-shadow: var(--shadow);
}

.hero-eyebrow span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }

.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 .wavy {
  position: relative;
  display: inline-block;
  color: var(--pink);
}

/* hand-drawn underline via SVG */
.hero h1 .wavy::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2,8 Q25,2 50,8 Q75,14 100,8 Q125,2 150,8 Q175,14 198,8' stroke='%23FF6FB4' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}

/* Colourful service tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.htag {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 6px;
}
.htag-pink   { background: #FFE8F3; color: var(--pink2); }
.htag-lav    { background: #EDE9FF; color: var(--lav2); }
.htag-mint   { background: #DFF7F1; color: #4fbe9e; }
.htag-peach  { background: #FFF0E8; color: #d47a50; }

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-pill-pink {
  background: var(--pink);
  color: white;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(255,111,180,0.35);
}
.btn-pill-pink:hover { background: var(--pink2); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255,111,180,0.4); }

.btn-pill-outline {
  background: white;
  color: var(--charcoal);
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
}
.btn-pill-outline:hover { border-color: var(--pink); color: var(--pink); }

/* Hero right — floating card mosaic */
.hero-right {
  background: linear-gradient(145deg, #FFF0F8 0%, #F0ECFF 50%, #E8FBF6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 100px 5% 60px;
  overflow: hidden;
}

/* Big decorative circle */
.hero-circle-bg {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-mosaic {
  position: relative;
  width: 320px; height: 400px;
  z-index: 2;
}

.hm-card {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}

.hm-card:hover { transform: translateY(-6px) rotate(0deg) !important; }

.hm-card-1 {
  top: 0; left: 0;
  width: 160px;
  transform: rotate(-4deg);
}
.hm-card-2 {
  top: 30px; right: 0;
  width: 145px;
  transform: rotate(3deg);
  background: var(--charcoal);
}
.hm-card-3 {
  bottom: 60px; left: 10px;
  width: 140px;
  transform: rotate(2deg);
  background: linear-gradient(135deg, var(--lemon), #ffda00);
}
.hm-card-4 {
  bottom: 20px; right: 10px;
  width: 150px;
  transform: rotate(-3deg);
}

.hm-emoji { font-size: 32px; margin-bottom: 8px; }
.hm-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--charcoal); }
.hm-card-2 .hm-title { color: white; }
.hm-card-3 .hm-title { color: #7a5a00; }
.hm-sub { font-size: 11px; color: var(--muted); font-weight: 500; }
.hm-card-2 .hm-sub { color: rgba(255,255,255,0.6); }
.hm-card-3 .hm-sub { color: rgba(100,70,0,0.7); }

/* Pink pill badge */
.hm-badge {
  position: absolute;
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.hm-badge-1 { top: 185px; left: 50%; transform: translateX(-50%); }
.hm-badge-2 { top: -12px; right: 20px; background: var(--mint); color: #2d6d5a; }

/* ── WAVE DIVIDER ── */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--pink), var(--lav), var(--mint), var(--peach), var(--lemon), var(--sky), var(--pink));
  background-size: 400% 100%;
  animation: gradientShift 8s ease infinite;
  padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.marquee-inner { display: inline-flex; animation: mscroll 28s linear infinite; }
.marquee-inner span { color: white; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 22px; text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.marquee-inner span::before { content: '✦'; margin-right: 22px; opacity: 0.7; font-size: 9px; }
@keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 90px 5%; }
.section-white { background: white; }
.section-cream { background: var(--cream); }
.section-pink  { background: #FFF0F8; }
.section-lav   { background: #F4F0FF; }

.section-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--charcoal); color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.section-h {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-p {
  font-size: 16px; color: var(--muted);
  max-width: 520px; line-height: 1.8;
  font-weight: 300; margin-bottom: 52px;
}

/* ── OCCASION PICKER — the unique centerpiece ── */
.occasions-intro {
  text-align: center;
  margin-bottom: 48px;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.occ-card {
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.occ-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.occ-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: white; }
.occ-card:hover::before { opacity: 0.15; }

.oc-0 { background: linear-gradient(145deg, #FFE8F3, #FFC8E4); }
.oc-1 { background: linear-gradient(145deg, #EDE9FF, #D4CBFF); }
.oc-2 { background: linear-gradient(145deg, #DFF7F1, #C0EDE3); }
.oc-3 { background: linear-gradient(145deg, #FFF4CC, #FFE999); }
.oc-4 { background: linear-gradient(145deg, #FFE8DC, #FFD0BA); }
.oc-5 { background: linear-gradient(145deg, #E0F4FF, #C0E8FF); }

.occ-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 14px;
  position: relative; z-index: 2;
  transition: transform 0.3s;
}
.occ-card:hover .occ-emoji { transform: scale(1.2) rotate(8deg); }

.occ-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 5px;
  position: relative; z-index: 2;
}

.occ-hint {
  font-size: 12px; color: var(--muted); font-weight: 500;
  position: relative; z-index: 2;
}

/* ── SERVICES — STAGGERED MAGAZINE LAYOUT ── */
.services-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-mag-card {
  border-radius: var(--r-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-mag-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Alternating heights via grid row span */
.svc-mag-card.tall { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: space-between; }

.smc-0 { background: linear-gradient(145deg, #FFE8F3 0%, #FFC8E4 100%); }
.smc-1 { background: var(--charcoal); }
.smc-2 { background: linear-gradient(145deg, #EDE9FF 0%, #D4CBFF 100%); }
.smc-3 { background: linear-gradient(145deg, #DFF7F1 0%, #B8F0E3 100%); }

.smc-icon {
  font-size: 44px; margin-bottom: 20px; display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.smc-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Fraunces', serif; font-size: 80px; font-weight: 900;
  opacity: 0.07; color: var(--charcoal); line-height: 1;
  pointer-events: none;
}
.smc-1 .smc-num { color: white; opacity: 0.08; }

.svc-mag-card h3 {
  font-size: 28px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px;
}
.smc-1 h3 { color: white; }

.svc-mag-card p {
  font-size: 14.5px; color: var(--muted); line-height: 1.7;
}
.smc-1 p { color: rgba(255,255,255,0.6); }

/* tag list inside service card */
.smc-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.smc-tag {
  background: rgba(255,255,255,0.5);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: var(--charcoal);
}
.smc-1 .smc-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--pink);
  margin-top: 20px;
}

.smc-1 .svc-link { color: var(--lemon); }

/* ── GALLERY — BUBBLE SHAPES ── */
.bubble-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: start;
}

.bubble {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  cursor: pointer;
  transition: transform 0.35s;
}

/* Each bubble has a unique shape */
.bubble:nth-child(1) { border-radius: 50% 50% 46% 54% / 52% 48% 52% 48%; aspect-ratio: 1; }
.bubble:nth-child(2) { border-radius: var(--r-lg); aspect-ratio: 4/5; }
.bubble:nth-child(3) { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; aspect-ratio: 1; }
.bubble:nth-child(4) { border-radius: var(--r-lg); aspect-ratio: 4/3; grid-column: 1/3; }
.bubble:nth-child(5) { border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%; aspect-ratio: 1; }

.bubble:hover { transform: scale(1.04); z-index: 2; }
.bubble:hover .bubble-overlay { opacity: 1; }

.bubble-bg-0 { background: linear-gradient(145deg, #FFE8F3, #FFB8D8); }
.bubble-bg-1 { background: linear-gradient(145deg, #EDE9FF, #C8BEFF); }
.bubble-bg-2 { background: linear-gradient(145deg, #DFF7F1, #A8EDDA); }
.bubble-bg-3 { background: linear-gradient(145deg, #FFF0CC, #FFD980); }
.bubble-bg-4 { background: linear-gradient(145deg, #E0F4FF, #AADCF8); }

.bubble-overlay {
  position: absolute; inset: 0;
  background: rgba(255,111,180,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; border-radius: inherit;
}
.bubble-overlay span { font-size: 24px; color: white; }

.bubble-label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}
.bubble-label strong { font-family: 'Fraunces',serif; font-size: 15px; display: block; color: var(--charcoal); }
.bubble-label span { font-size: 11px; color: var(--muted); }

/* ── STATS ROW — PILL STYLE ── */
.stats-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 5%;
  background: white;
}

.stat-pill {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 20px 36px;
  text-align: center;
  transition: all 0.3s;
  flex: 1; min-width: 180px; max-width: 220px;
}

.stat-pill:hover {
  border-color: var(--pink);
  background: #FFF0F8;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stat-pill .num {
  font-family: 'Fraunces', serif;
  font-size: 46px; font-weight: 700;
  color: var(--pink); line-height: 1;
  font-style: italic;
}

.stat-pill .lbl {
  font-size: 12px; color: var(--muted);
  letter---letter-spacing: 0.06em; margin-top: 4px;
  font-weight: 500;
}

/* ── HOW IT WORKS — HORIZONTAL FLOW ── */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* connecting dashed line */
.flow::before {
  content: '';
  position: absolute;
  top: 48px; left: 14%; right: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--pink) 0, var(--pink) 8px, transparent 8px, transparent 18px);
  z-index: 0;
}

.flow-step {
  text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}

.flow-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 700;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.fn-0 { background: var(--pink); }
.fn-1 { background: var(--lav); }
.fn-2 { background: var(--mint); color: #2d6d5a; }
.fn-3 { background: var(--peach); color: #7a4020; }

.flow-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 8px;
}

.flow-step p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIALS — STICKER CARDS ── */
.testi-stickers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sticker-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.sticker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.sticker-0::before { background: var(--pink); }
.sticker-1::before { background: var(--lav); }
.sticker-2::before { background: var(--mint); }

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

.sticker-quote {
  font-family: 'Fraunces', serif;
  font-size: 56px; color: var(--pink); line-height: 0.5;
  margin-bottom: 14px; opacity: 0.3;
}

.sticker-card p {
  font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 20px;
  font-style: italic;
}

.sticker-stars { font-size: 14px; letter-spacing: 2px; color: var(--lemon); margin-bottom: 8px; }

.sticker-author strong { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.sticker-author span { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; }

/* ── DIAGONAL DIVIDER ── */
.diagonal-section {
  position: relative;
  background: var(--charcoal);
  padding: 80px 5% 100px;
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
  margin: -30px 0;
  z-index: 2;
}

.diagonal-section h2 { font-size: clamp(36px, 5vw, 64px); color: white; margin-bottom: 14px; }
.diagonal-section p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 36px; }

.diagonal-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.d-social {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.d-social:hover { background: var(--pink); border-color: var(--pink); color: white; }

/* ── NEWSLETTER ── */
.nl-section {
  background: linear-gradient(145deg, #FFF0F8, #F4F0FF, #F0FFFB);
  border-radius: var(--r-lg);
  padding: 64px 60px;
  margin: 0 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nl-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,111,180,0.12) 2px, transparent 2px),
    radial-gradient(circle, rgba(184,169,240,0.10) 2px, transparent 2px);
  background-size: 40px 40px, 70px 70px;
  background-position: 0 0, 20px 20px;
}

.nl-section > * { position: relative; z-index: 2; }

.nl-section h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 12px; }
.nl-section p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

.nl-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-form input {
  flex: 1; min-width: 200px;
  padding: 13px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--charcoal);
  background: white; outline: none;
  box-shadow: var(--shadow);
}
.nl-form input:focus { border-color: var(--pink); }
.nl-form button {
  background: var(--pink); color: white; border: none;
  padding: 13px 24px; border-radius: var(--r-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 14px rgba(255,111,180,0.35);
  white-space: nowrap;
}
.nl-form button:hover { background: var(--pink2); }

/* ── CONTACT & BOOKING PAGE ── */
.contact-hero-new {
  min-height: 44vh;
  background: linear-gradient(145deg, #FFE8F3, #EDE9FF, #DFF7F1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 5% 70px;
  position: relative; overflow: hidden;
}

.contact-hero-new h1 { font-size: clamp(44px, 7vw, 88px); color: var(--charcoal); margin-bottom: 16px; }
.contact-hero-new h1 em { font-style: italic; color: var(--pink); }
.contact-hero-new p { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.75; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  padding: 80px 5%;
  align-items: start;
}

.contact-sidebar h2 { font-size: 36px; color: var(--charcoal); margin-bottom: 16px; }
.contact-sidebar > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.ci {
  display: flex; gap: 14px; align-items: center;
  background: white; border-radius: var(--r-md);
  padding: 18px 20px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow); transition: all 0.2s;
}
.ci:hover { border-color: var(--pink); transform: translateX(4px); }

.ci-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: #FFE8F3;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.ci-text strong { display: block; font-size: 11px; font-weight: 700; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.ci-text a, .ci-text span { font-size: 14.5px; font-weight: 600; color: var(--charcoal); }
.ci-text a:hover { color: var(--pink); }

/* Booking form card */
.booking-form-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.booking-form-card h3 { font-size: 38px; color: var(--charcoal); margin-bottom: 6px; }
.booking-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.form-group { margin-bottom: 18px; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}

input, textarea, select {
  width: 100%; padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--charcoal);
  background: white; transition: border-color 0.2s; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--pink); }
textarea { resize: vertical; min-height: 110px; }

.form-submit-new {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: white; border: none;
  padding: 15px; border-radius: var(--r-pill);
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(255,111,180,0.3);
}
.form-submit-new:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,111,180,0.4); }

/* ── CTA — PARTY BAND ── */
.party-cta {
  background: linear-gradient(135deg, var(--pink), var(--lav), var(--mint));
  background-size: 300% 300%;
  animation: gradientFlow 6s ease infinite;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.party-cta::before {
  content: '🎉 🎈 ✨ 🎊 💖 🎀 🎉 🎈 ✨ 🎊 💖 🎀';
  position: absolute;
  top: 14px; left: 0; right: 0;
  text-align: center; font-size: 20px;
  opacity: 0.2; letter-spacing: 8px;
}

.party-cta h2 { font-size: clamp(38px, 5.5vw, 72px); color: white; margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.party-cta p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 34px; max-width: 440px; margin-left: auto; margin-right: auto; }

.btn-white-pill {
  background: white; color: var(--pink2);
  padding: 15px 36px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 700;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white-pill:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.15); }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 64px 5% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 700;
  color: white; margin-bottom: 12px;
}
.footer-brand-name em { font-style: italic; color: var(--pink); }

.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 240px; }

.footer-socials-row { display: flex; gap: 10px; margin-top: 20px; }
.fs-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px;
  transition: all 0.2s;
}
.fs-link:hover { background: var(--pink); color: white; }

.f-col h5 { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.f-col a:hover { color: var(--pink); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: #25D366; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── SERVICES PAGE HERO ── */
.svc-hero-new {
  min-height: 42vh;
  background: linear-gradient(145deg, #FFF0F8, #EDE9FF);
  display: flex; align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative; overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; }
  .services-magazine { grid-template-columns: 1fr; }
  .svc-mag-card.tall { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .occasions-grid { grid-template-columns: repeat(2,1fr); }
  .flow { grid-template-columns: 1fr 1fr; gap: 40px; }
  .flow::before { display: none; }
  .testi-stickers { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nl-section { padding: 44px 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .hero-left { padding: 120px 5% 60px; }
  .hero-right { display: none; }
  .bubble-gallery { grid-template-columns: 1fr 1fr; }
  .bubble:nth-child(4) { grid-column: auto; }
  .testi-stickers { grid-template-columns: 1fr; }
  .booking-form-card { padding: 28px 20px; }
  .form-2 { grid-template-columns: 1fr; }
  .diagonal-section { clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0% 100%); }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .stats-pills { flex-direction: column; align-items: center; }
}
