/* ============================================================
   LOVE & FLOAT NJ — Main Stylesheet
   Palette: Blush · Champagne Gold · Lavender · Cream White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #fefcf8;
  --white:        #ffffff;
  --blush:        #f2d9d9;
  --blush-mid:    #e8b4b4;
  --blush-deep:   #d4888a;
  --gold:         #c9a96e;
  --gold-light:   #e8d5a8;
  --gold-pale:    #faf3e0;
  --lavender:     #c5b4e3;
  --lavender-mid: #a891d0;
  --lavender-pale:#f0ebf9;
  --coral:        #e8846a;
  --text:         #2c2420;
  --text-mid:     #6b5c52;
  --text-soft:    #a89890;
  --border:       rgba(201,169,110,0.2);
  --border-soft:  rgba(197,180,227,0.25);
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 8px 32px rgba(44,36,32,0.08);
  --shadow-sm:    0 4px 16px rgba(44,36,32,0.06);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: block;
  margin-bottom: 0.8rem;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lavender-mid);
  background: var(--lavender-pale);
  border: 1px solid rgba(197,180,227,0.4);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blush-mid));
  border-radius: 2px;
  margin: 1.2rem 0 1.6rem;
}
.divider.center { margin: 1.2rem auto 1.6rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.btn-primary:hover {
  background: var(--text);
  box-shadow: 0 6px 24px rgba(44,36,32,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--text);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--lavender-pale);
  color: var(--lavender-mid);
  border: 1px solid rgba(197,180,227,0.4);
}
.btn-ghost:hover {
  background: var(--lavender);
  color: var(--white);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(254,252,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: height 0.3s;
}
#navbar.scrolled .nav-inner { height: 58px; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--text);
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-logo span { font-size: 0.65rem; display: block; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-soft); font-family: 'DM Sans', sans-serif; font-weight: 400; }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--text-mid);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column; gap: 1.2rem;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem; color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── FLOATING CTA ── */
#fab {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 998;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.7rem;
}
#fab-menu {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
#fab-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.fab-option {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 0.6rem 1.2rem 0.6rem 0.9rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text);
  transition: all 0.25s;
  white-space: nowrap;
}
.fab-option:hover { background: var(--gold-pale); border-color: var(--gold-light); transform: translateX(-4px); }
.fab-option .fab-icon { font-size: 16px; }

.fab-label {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-soft); text-align: center;
}

#fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blush-mid));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(201,169,110,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#fab-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(201,169,110,0.5); }
#fab-btn svg { transition: transform 0.3s; }
#fab-btn.open svg { transform: rotate(45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #faf5f5 0%, #f8f0fa 35%, #fdf8ee 70%, #faf5f5 100%);
}
.hero-balloons { position: absolute; inset: 0; pointer-events: none; }
.bal {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  animation: floatBal ease-in-out infinite alternate;
}
.bal::after {
  content: '';
  position: absolute; bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 16px;
  background: rgba(201,169,110,0.25);
}
.bal-1  { width:72px;  height:84px;  background:rgba(242,217,217,0.55); top:12%; left:6%;    animation-duration:5s;   animation-delay:0s;   }
.bal-2  { width:52px;  height:62px;  background:rgba(197,180,227,0.45); top:18%; left:13%;   animation-duration:7s;   animation-delay:-2s;  }
.bal-3  { width:88px;  height:102px; background:rgba(232,213,168,0.4);  top:8%;  right:9%;   animation-duration:6s;   animation-delay:-1s;  }
.bal-4  { width:46px;  height:54px;  background:rgba(197,180,227,0.5);  top:28%; right:5%;   animation-duration:8s;   animation-delay:-3s;  }
.bal-5  { width:64px;  height:74px;  background:rgba(242,217,217,0.45); bottom:25%; left:4%; animation-duration:5.5s; animation-delay:-4s;  }
.bal-6  { width:40px;  height:46px;  background:rgba(232,213,168,0.4);  bottom:32%; right:4%;animation-duration:9s;   animation-delay:-1.5s;}
.bal-7  { width:56px;  height:64px;  background:rgba(197,180,227,0.4);  top:52%; left:2%;    animation-duration:6.5s; animation-delay:-5s;  }
.bal-8  { width:36px;  height:42px;  background:rgba(242,217,217,0.5);  top:58%; right:3%;   animation-duration:7.5s; animation-delay:-2.5s;}
.bal-9  { width:58px;  height:68px;  background:rgba(232,132,106,0.25); bottom:15%; left:15%;animation-duration:8.5s; animation-delay:-3.5s;}
.bal-10 { width:44px;  height:52px;  background:rgba(232,213,168,0.35); top:40%; left:8%;    animation-duration:6s;   animation-delay:-1s;  }

@keyframes floatBal {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-22px) rotate(2.5deg); }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero h1 {
  color: var(--text);
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.hero-sub {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 2.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-area {
  margin-top: 2.5rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft);
}
.hero-area strong { color: var(--gold); font-weight: 500; }

/* social proof bar */
.proof-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-mid);
}
.proof-icon { font-size: 1.1rem; }
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--gold);
}
.proof-sep {
  width: 1px; height: 32px;
  background: var(--border);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 0.9rem 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding: 0 2rem; white-space: nowrap;
}
.marquee-dot { color: var(--gold-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blush-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--lavender-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--gold-pale); }

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.84rem; color: var(--text-mid); }
.service-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--gold); margin-top: 1rem;
  transition: gap 0.25s;
}
.service-card:hover .service-link { gap: 0.6rem; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2.5rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--lavender-pale), var(--blush));
}
.gallery-item:nth-child(1) { background: linear-gradient(145deg, #f0ebf9, #f2d9d9); }
.gallery-item:nth-child(2) { background: linear-gradient(145deg, #faf3e0, #f0ebf9); aspect-ratio: 4/5; }
.gallery-item:nth-child(3) { background: linear-gradient(145deg, #f2d9d9, #faf3e0); }
.gallery-item:nth-child(4) { background: linear-gradient(145deg, #faf3e0, #f2d9d9); }
.gallery-item:nth-child(5) { background: linear-gradient(145deg, #f0ebf9, #faf3e0); }
.gallery-item:nth-child(6) { background: linear-gradient(145deg, #f2d9d9, #f0ebf9); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
}
.gallery-bal-cluster { display: flex; align-items: flex-end; gap: 5px; }
.gb { border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%; opacity: 0.6; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(44,36,32,0.45);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-sm);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption-text {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); font-weight: 500;
}

/* filter buttons */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-top: 0.5rem;
}
.filter-btn {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: var(--white); color: var(--text-mid);
  cursor: pointer; transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
}

/* lightbox */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(20,15,15,0.88);
  z-index: 2000;
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
#lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: white; font-size: 1.8rem; line-height: 1;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16% + 40px); right: calc(16% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), var(--lavender), var(--gold-light));
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--gold);
  position: relative; z-index: 2;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.84rem; color: var(--text-mid); }

/* ── TESTIMONIALS ── */
.testimonial-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
}
.testimonial-inner {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.5rem 2.8rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.testimonial-inner::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.5;
  color: var(--gold-light);
  position: absolute; top: 1.5rem; left: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.testimonial-text { font-style: italic; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; font-size: 0.95rem; }
.testimonial-author { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); }
.testimonial-type { font-size: 0.72rem; color: var(--gold); }

.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  cursor: pointer; border: none;
  transition: all 0.3s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── INSTA STRIP ── */
.insta-strip { background: var(--lavender-pale); border-top: 1px solid var(--border-soft); }
.insta-placeholder {
  background: var(--white);
  border: 2px dashed var(--lavender);
  border-radius: var(--radius);
  padding: 3rem; text-align: center;
  margin-top: 2rem;
}
.insta-placeholder p { color: var(--text-soft); font-size: 0.85rem; }
.insta-placeholder strong { color: var(--lavender-mid); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--text) 0%, #3d2e28 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p { color: rgba(255,255,255,0.65); margin: 1rem 0 2rem; font-size: 0.95rem; position: relative; }
.cta-banner .divider { background: linear-gradient(90deg, var(--gold-light), transparent); }
.cta-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer {
  background: #1e1815;
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.8rem;
}
.footer-logo em { font-style: italic; color: var(--gold-light); }
.footer-tagline { font-size: 0.82rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: white; }

.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.83rem; color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.83rem; line-height: 1.9; }
.footer-col a { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 0.72rem;
}

/* ── SERVICES PAGE ── */
.service-section { padding: 5rem 0; }
.service-section:nth-child(even) { background: var(--cream); }
.service-section:nth-child(odd) { background: var(--white); }
.service-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.service-split.reverse { direction: rtl; }
.service-split.reverse > * { direction: ltr; }
.service-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.service-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.service-occasions {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 1.5rem;
}
.occ-tag {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: var(--lavender-pale);
  color: var(--lavender-mid);
  border: 1px solid rgba(197,180,227,0.3);
}

/* ── ABOUT PAGE ── */
.about-split {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 6rem; align-items: center;
}
.about-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--lavender-pale), var(--blush));
  position: relative; overflow: hidden;
}
.about-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  padding: 2rem; text-align: center;
}

.differentiators {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 2.5rem;
}
.diff-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.diff-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.diff-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.diff-item p { font-size: 0.83rem; color: var(--text-mid); }

.area-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
}
.area-badge {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.area-badge:hover { background: var(--lavender-pale); border-color: var(--lavender); color: var(--lavender-mid); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
  margin-top: 1rem;
}
.contact-sidebar h3 {
  font-size: 1.4rem; margin-bottom: 1.5rem;
}
.contact-detail {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-label-sm {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 0.4rem;
}
.contact-val { font-size: 0.88rem; color: var(--text-mid); }
.contact-val a { color: var(--gold); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.hour-day { font-size: 0.72rem; color: var(--text-soft); }
.hour-time { font-size: 0.82rem; color: var(--text-mid); }

/* form */
.quote-form { }
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 0.5rem; font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: var(--white);
}
.form-row textarea { height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%; padding: 1.05rem;
  background: linear-gradient(135deg, var(--gold), var(--blush-mid));
  color: var(--white); border: none;
  border-radius: 100px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.45);
}

.form-success {
  display: none;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 2rem; text-align: center; margin-top: 1rem;
}
.form-success h3 { color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.88rem; color: var(--text-mid); }
.form-note { font-size: 0.75rem; color: var(--text-soft); margin-top: 0.8rem; text-align: center; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--lavender-pale) 50%, var(--gold-pale) 100%);
  position: relative; overflow: hidden;
}
.page-hero-balloons { position: absolute; inset: 0; pointer-events: none; }

/* ── FADE IN ON SCROLL ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-split.reverse { direction: ltr; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .proof-inner { gap: 1.5rem; }
  .proof-sep { display: none; }
  #fab { bottom: 1.2rem; right: 1.2rem; }
}
