@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --cream:    #FAF6F1;
  --bone:     #F2EBE1;
  --blush:    #F5DCE1;
  --rose:     #C0185E;
  --rose-lt:  #E8256C;
  --gold:     #C9A84C;
  --gold-lt:  #E2C060;
  --charcoal: #1C1C1C;
  --ink:      #2E2E2E;
  --mid:      #6B6B6B;
  --light:    #A8A8A8;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --radius:       16px;
  --shadow:       0 16px 60px rgba(0,0,0,0.10);
  --shadow-sm:    0 6px 24px rgba(0,0,0,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,246,241,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.20);
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5% 0 3%;
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.logo-image {
  display: flex;
  align-items: center;
  height: 72px;
}

.logo-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.87rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--rose); }
nav a:hover::after { width: 100%; }

.nav-book {
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 26px !important;
  border-radius: 30px;
  transition: all 0.3s !important;
  white-space: nowrap;
}

.nav-book::after { display: none !important; }

.nav-book:hover {
  background: var(--gold) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.35s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 2px;
  transition: color 0.2s;
}

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

.mobile-nav .nav-book {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
}

.mobile-close {
  position: absolute;
  top: 26px;
  right: 24px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

/* ═══════════════════════════════════════════════
   PAGE HEADER BANNER (used on inner pages)
═══════════════════════════════════════════════ */
.page-banner {
  text-align: center;
  padding: 110px 8% 80px;
  background: linear-gradient(160deg, #FAF6F1 0%, #F5E9F0 100%);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 18px;
}

.gold-divider {
  width: 180px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
}

.page-banner .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--mid);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose), var(--rose-lt));
  color: white;
  padding: 15px 42px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 8px 28px rgba(192,24,94,0.28);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(192,24,94,0.38);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--rose);
  padding: 14px 40px;
  border-radius: 40px;
  border: 1.5px solid var(--rose);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--rose);
  color: white;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: white;
  padding: 15px 42px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 8px 28px rgba(201,168,76,0.32);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.45);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  /* Safety: if JS never fires, fade in after 1.2s */
  animation: revealFallback 0s 1.2s forwards;
}

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

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  animation: revealFallback 0s 1.2s forwards;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  animation: revealFallback 0s 1.2s forwards;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: #aaa;
  text-align: center;
  padding: 70px 8% 50px;
  font-size: 0.88rem;
  line-height: 2;
}

.footer-logo {
  height: 60px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0 30px;
}

.footer-social a {
  color: #888;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: var(--font-body);
}

.footer-social a:hover { color: var(--gold); }

footer .footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 28px auto;
}

footer p {
  margin: 6px 0;
}

footer a {
  color: #bbb;
  transition: color 0.3s;
}

footer a:hover { color: var(--gold); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: #eee;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════
   ──── HOME PAGE ────
═══════════════════════════════════════════════ */

/* HERO */
.hero {
  position: relative;
  height: 92vh;
  min-height: 680px;
  background: url('images/gabby 2.jpeg') center 20% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.42) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 5%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: white;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
}

.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s 1.05s ease forwards;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--blush);
  margin-top: 50px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 0.9s 1.3s ease forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* INTRO STRIP */
.intro-strip {
  background: var(--rose);
  padding: 22px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.intro-strip-item {
  color: white;
}

.intro-strip-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.intro-strip-item .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.strip-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ABOUT TEASER */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-teaser-img {
  overflow: hidden;
  position: relative;
}

.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-teaser-img:hover img { transform: scale(1.04); }

.about-teaser-text {
  background: var(--bone);
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-teaser-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-teaser-text p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 18px;
  font-weight: 300;
}

/* SERVICES PREVIEW */
.services-preview {
  padding: 110px 7%;
  background: var(--cream);
  text-align: center;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-heading span { color: var(--rose); }

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto 60px;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.service-tile {
  background: white;
  border-radius: var(--radius);
  padding: 48px 28px 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-tile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-tile:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 10px;
}

.service-tile p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

/* BOOK CTA */
.book-cta {
  background: var(--ink);
  color: white;
  padding: 110px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,24,94,0.12) 0%, transparent 70%);
}

.book-cta .section-tag { color: var(--gold-lt); }

.book-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.book-cta p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.book-cta .btn-primary {
  position: relative;
  z-index: 1;
}

/* EVENTS SECTION */
.events-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.events-img {
  overflow: hidden;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.events-img img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.events-img:hover img { transform: scale(1.05) rotate(1deg); }

.events-text {
  background: var(--bone);
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 22px;
  line-height: 1.2;
}

.events-text p {
  font-size: 1.02rem;
  color: var(--mid);
  margin-bottom: 16px;
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials {
  padding: 110px 7%;
  background: var(--cream);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial-card cite {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   ──── OUR STORY PAGE ────
═══════════════════════════════════════════════ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
}

.story-section.reverse { direction: rtl; }
.story-section.reverse > * { direction: ltr; }

.story-img-wrap {
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-img-wrap:hover img { transform: scale(1.04); }

.story-text-wrap {
  padding: 80px 8%;
  background: var(--bone);
}

.story-section:nth-child(odd) .story-text-wrap { background: var(--cream); }

.story-text-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 24px;
  line-height: 1.25;
}

.story-text-wrap p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 18px;
  font-weight: 300;
}

.story-intro-block {
  text-align: center;
  padding: 80px 8%;
  background: var(--cream);
}

.logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 40px;
  box-shadow: 0 12px 40px rgba(192,24,94,0.18);
  border: 4px solid var(--blush);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-intro-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--mid);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   ──── SERVICES PAGE ────
═══════════════════════════════════════════════ */
.pricing-section {
  padding: 90px 7% 110px;
  background: var(--cream);
}

.pricing-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.pricing-category:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pricing-category.flip .cat-img { order: 2; }
.pricing-category.flip .cat-content { order: 1; }

.cat-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cat-img:hover img { transform: scale(1.04); }

/* Placeholder if image missing */
.cat-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blush), var(--bone));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.cat-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 10px;
}

.cat-content .cat-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-family: var(--font-body);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.price-table tr:last-child { border-bottom: none; }
.price-table tr:hover { background: rgba(192,24,94,0.03); }

.price-table td {
  padding: 13px 8px;
  font-size: 0.98rem;
  color: var(--ink);
}

.price-table td:first-child { font-weight: 400; }

.price-table td:last-child {
  text-align: right;
  color: var(--rose);
  font-weight: 600;
  white-space: nowrap;
}

.services-cta-block {
  text-align: center;
  padding: 70px 8%;
  background: var(--bone);
  border-radius: var(--radius);
  margin: 60px 7% 0;
}

.services-cta-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--mid);
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════════
   ──── GALLERY PAGE ────
═══════════════════════════════════════════════ */
.gallery-intro {
  text-align: center;
  padding: 0 8% 60px;
  background: var(--cream);
}

.gallery-intro p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.gallery-masonry {
  padding: 0 5% 100px;
  background: var(--cream);
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '✦';
  position: absolute;
  inset: 0;
  background: rgba(192,24,94,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.gallery-social-cta {
  text-align: center;
  padding: 60px 8% 100px;
  background: var(--bone);
}

.gallery-social-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rose);
  margin-bottom: 16px;
}

.gallery-social-cta p {
  color: var(--mid);
  margin-bottom: 36px;
  font-size: 1rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.social-pill.instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: white;
}

.social-pill.tiktok {
  background: #010101;
  color: white;
}

.social-pill.facebook {
  background: #1877F2;
  color: white;
}

.social-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ═══════════════════════════════════════════════
   ──── CONTACT PAGE ────
═══════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 680px;
}

.contact-info {
  background: var(--ink);
  color: white;
  padding: 80px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: white;
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item .item-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.contact-item .item-value {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}

.contact-item .item-value a {
  color: rgba(255,255,255,0.88);
  transition: color 0.3s;
}

.contact-item .item-value a:hover { color: var(--gold-lt); }

.contact-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 40px 0;
}

.contact-form-wrap {
  background: var(--bone);
  padding: 80px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192,24,94,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ═══════════════════════════════════════════════
   ──── BOOK PAGE ────
═══════════════════════════════════════════════ */
.book-layout {
  padding: 60px 7% 110px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

.book-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: var(--shadow);
}

.book-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 36px;
}

.book-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: var(--bone);
  border-radius: 18px;
  padding: 44px 36px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 18px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card ul li {
  font-size: 0.93rem;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-card ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sidebar-card p {
  font-size: 0.93rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7;
}

.sidebar-card .contact-link {
  color: var(--rose);
  font-weight: 500;
  font-size: 0.93rem;
}

/* Success banner */
.success-msg {
  display: none;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #a9d7b6;
  color: #155724;
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.success-msg.show { display: block; }

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-teaser,
  .events-section,
  .story-section,
  .pricing-category,
  .contact-layout,
  .book-layout { grid-template-columns: 1fr; }

  .story-section.reverse .cat-img { order: 0; }
  .story-section.reverse .cat-content { order: 0; }
  .pricing-category.flip .cat-img { order: 0; }
  .pricing-category.flip .cat-content { order: 0; }

  .story-img-wrap,
  .about-teaser-img { min-height: 380px; }

  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .hero { height: 82vh; }

  .services-grid { grid-template-columns: 1fr; }

  .intro-strip { gap: 30px; }
  .strip-sep { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 1; }

  .book-layout { grid-template-columns: 1fr; }
  .book-form-wrap { padding: 40px 28px; }

  .form-row { grid-template-columns: 1fr; }

  .services-cta-block { margin: 60px 0 0; }
}

@media (max-width: 480px) {
  .page-banner { padding: 80px 6% 60px; }
  .book-form-wrap { padding: 30px 20px; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.50);
}
.wa-fab svg { width: 22px; height: 22px; fill: white; }

.wa-tooltip {
  position: fixed;
  bottom: 34px;
  right: 80px;
  z-index: 1999;
  background: var(--charcoal);
  color: white;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--charcoal);
}
.wa-fab:hover + .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════
   SPARKLE CURSOR CANVAS
═══════════════════════════════════════════════ */
#sparkle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
}

/* ═══════════════════════════════════════════════
   INSTAGRAM GRID
═══════════════════════════════════════════════ */
.insta-section {
  padding: 90px 7%;
  background: var(--cream);
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 48px auto 40px;
  max-width: 820px;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.insta-item::after {
  content: '\2665 Follow';
  position: absolute;
  inset: 0;
  background: rgba(192,24,94,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.insta-item:hover img { transform: scale(1.07); }
.insta-item:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════════
   TIKTOK SECTION
═══════════════════════════════════════════════ */
.tiktok-section {
  padding: 100px 7%;
  background: #0a0a0a;
  color: white;
  text-align: center;
}
.tiktok-section .section-tag { color: #69C9D0; }
.tiktok-section .section-heading { color: white; }
.tiktok-section .section-heading span { color: #EE1D52; }
.tiktok-section .section-sub { color: rgba(255,255,255,0.55); }
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 48px;
  justify-items: center;
}
.tiktok-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(145deg, #111 0%, #1a0a10 50%, #0d0d0d 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(238,29,82,0.2);
  max-width: 260px;
  margin: 0 auto;
}
.tiktok-placeholder .tt-icon { font-size: 3rem; }
.tiktok-placeholder p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-body);
}
.tiktok-placeholder a {
  color: #EE1D52;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   GOOGLE REVIEWS
═══════════════════════════════════════════════ */
.reviews-section {
  padding: 90px 7%;
  background: var(--bone);
  text-align: center;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 14px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}
.google-badge .g-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #4285F4;
  font-family: var(--font-body);
}
.google-badge .g-inner { text-align: left; }
.google-badge .g-rating {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1;
}
.google-badge .g-stars { color: #FBBC04; font-size: 1rem; letter-spacing: 2px; margin: 2px 0; }
.google-badge .g-count {
  font-size: 0.78rem;
  color: var(--mid);
  font-family: var(--font-body);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.reviewer-info .rev-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  font-family: var(--font-body);
}
.reviewer-info .rev-date {
  font-size: 0.75rem;
  color: var(--light);
  font-family: var(--font-body);
}
.review-stars { color: #FBBC04; font-size: 0.88rem; margin-bottom: 12px; }
.review-card blockquote {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   GOOGLE MAP EMBED
═══════════════════════════════════════════════ */
.gmap-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 36px;
}
.gmap-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════════════════════════
   DEPOSIT NOTICE & WA OPT-IN
═══════════════════════════════════════════════ */
.deposit-notice {
  background: linear-gradient(135deg, rgba(201,168,76,0.09), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
}
.wa-optin {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
}
.wa-optin input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #25D366;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.wa-optin label {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  cursor: pointer;
  font-family: var(--font-body);
}
.wa-optin label strong { color: #25D366; }

/* ═══════════════════════════════════════════════
   SOCIAL PILLS (gallery page)
═══════════════════════════════════════════════ */
.social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  font-family: var(--font-body);
  text-decoration: none;
}
.social-pill.instagram { background: linear-gradient(135deg,#F58529,#DD2A7B,#8134AF); color: white; }
.social-pill.tiktok    { background: #010101; color: white; }
.social-pill.facebook  { background: #1877F2; color: white; }
.social-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tiktok-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tiktok-grid  { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .insta-grid   { grid-template-columns: repeat(2, 1fr); }
  .wa-fab       { bottom: 16px; right: 14px; width: 42px; height: 42px; }
  .wa-fab svg   { width: 20px; height: 20px; }
  .wa-tooltip   { display: none; }
}

/* ═══════════════════════════════════════════════
   POLICY SECTION
═══════════════════════════════════════════════ */
.policy-section {
  padding: 70px 7%;
  background: var(--bone);
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.policy-section .policy-sub {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 32px;
  font-weight: 300;
  font-family: var(--font-body);
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  border-left: 3px solid var(--rose);
}

.policy-list li strong {
  color: var(--rose);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  min-width: 22px;
  font-family: var(--font-body);
}

.policy-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--light);
  font-style: italic;
  font-family: var(--font-body);
  text-align: center;
}