/*
Theme Name: Citrus Town Event Center
Theme URI: https://citrustowneventcenter.com
Author: Citrus Town Event Center
Author URI: https://citrustowneventcenter.com
Description: Custom WordPress theme for Citrus Town Event Center — a premium banquet and event venue in Citrus Heights, California. Features a video hero, single-page scrolling layout, gallery filters, FAQ accordion, and quote-request form. White-charcoal-gold palette with Cormorant Garamond, Manrope, and Tangerine fonts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: citrus-town
Tags: one-page, custom-menu, custom-logo, threaded-comments, translation-ready
*/

/* ============================================
   CITRUS TOWN EVENT CENTER — PREMIUM REDESIGN
   ============================================ */

:root {
  /* === MINIMAL & MODERN: WHITE + CHARCOAL + GOLD ACCENT ===
     Three colors only. White for everything except one dark feature
     section. Gold reserved for CTAs and small accents. */

  /* Primary base — white everywhere */
  --bg:             #FFFFFF;   /* Pure white */
  --bg-soft:        #FAFAF8;   /* Whisper off-white for subtle alternation */
  --bg-card:        #FFFFFF;   /* White cards */
  --blush:          #F5F1EC;   /* Subtle warm gray (kept for tiny accents) */

  /* Single dark — used sparingly for ONE feature section */
  --navy:           #161413;   /* Near-black charcoal */
  --navy-soft:      #2D2A28;   /* Softer charcoal */
  --navy-deep:      #0F0D0C;   /* Deepest black — footer */

  /* Single accent — champagne gold for CTAs only */
  --gold:           #B89968;   /* Refined champagne gold */
  --gold-deep:      #8E7548;   /* Hover */
  --gold-light:     #D9BE8E;   /* On dark backgrounds */

  /* Text & utility */
  --text:           #161413;   /* Same as --navy for visual unity */
  --text-soft:      #4A4744;   /* Body soft */
  --muted:          #7A7773;   /* Neutral muted */
  --line:           #ECECE8;   /* Subtle gray divider */
  --line-soft:      rgba(22, 20, 19, 0.06);
  --line-gold:      rgba(184, 153, 104, 0.28);

  /* Legacy variables — all map to white/charcoal/gold */
  --warm-white:     #FFFFFF;
  --ivory:          #FFFFFF;
  --cream:          #FAFAF8;
  --charcoal:       #161413;
  --charcoal-soft:  #2D2A28;
  --night:          #0F0D0C;
  --emerald-deep:   #161413;
  --emerald:        #161413;
  --gold-shimmer:   #D9BE8E;

  --display:        'Cormorant Garamond', 'Times New Roman', serif;
  --body:           'Manrope', -apple-system, sans-serif;
  --script:         'Tangerine', cursive;

  --radius:         2px;
  --transition:     0.5s cubic-bezier(0.22, 1, 0.36, 1);

  /* Typography scale — every font-size on the site should pick one of these */
  --fs-micro:       11px;  /* eyebrows, all-caps labels, small CTAs */
  --fs-button:      12px;  /* buttons */
  --fs-small:       14px;  /* compact card body, footer text */
  --fs-body:        16px;  /* default body, intros, form inputs */
  --fs-lead:        18px;  /* lead paragraphs, italic quotes */
}

body {
  color: var(--text);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ============================================
   SCROLL REVEAL — clean fade-up as elements enter viewport
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Subtle scale variant for image-led blocks */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-zoom.is-visible {
  opacity: 1;
  transform: scale(1);
}
/* Stagger children inside a reveal-stagger parent */
.reveal-stagger > .reveal { transition-delay: 0s; }
.reveal-stagger.is-visible > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > .reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > .reveal:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > .reveal:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > .reveal:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.is-visible > .reveal:nth-child(n+7) { transition-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-eyebrow, .hero h1, .hero p, .hero-ctas, .hero-trust,
  .hero-media video, .hero-media img {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Anchor offsets so sticky nav doesn't cover section headings on jump */
#weddings, #quinceaneras, #events, #packages, #gallery, #contact {
  scroll-margin-top: 96px;
}
.anchor-shim {
  position: absolute;
  top: -96px;
  visibility: hidden;
  pointer-events: none;
}
body {
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}
.script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--gold-deep);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--body);
  font-size: var(--fs-button);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: #FFFFFF;
  color: var(--navy);
  border-color: #FFFFFF;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  letter-spacing: 0.26em;
}
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--bg);
  letter-spacing: 0.26em;
}
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--navy);
  border-color: #FFFFFF;
  letter-spacing: 0.26em;
}
.btn-arrow::after {
  content: '→';
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   UTILITY BAR
   ============================================ */
.utility-bar {
  background: var(--navy);
  color: var(--bg);
  font-size: var(--fs-button);
  letter-spacing: 0.12em;
  padding: 10px 0;
  text-align: center;
}
.utility-bar a { color: var(--gold-light); margin-left: 8px; font-weight: 500; }
.utility-bar .divider { margin: 0 18px; opacity: 0.5; color: var(--gold); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
/* Offset sticky nav below the WordPress admin bar for logged-in users */
.admin-bar .nav-wrapper { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav-wrapper { top: 0; }
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-button);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.nav-phone i { color: var(--gold); margin-right: 8px; font-size: 14px; }
.btn-nav {
  padding: 12px 24px;
  background: var(--navy);
  color: var(--bg);
  font-size: var(--fs-button);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.btn-nav:hover { background: var(--gold); color: var(--navy); }
.menu-toggle { display: none; }

/* ============================================
   HERO — FULL-SCREEN VIDEO BACKGROUND
   Cinematic full-bleed video with overlay text
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Poster image as instant background — visible the moment HTML paints,
     before the video has buffered a single byte */
  background-image: url('https://wsrv.nl/?url=citrustowneventcenter.com/wp-content/uploads/2024/12/F4A86807-29FF-4FB8-B1A9-3C10FFC1887D-min-scaled.jpeg&w=1920&output=webp&q=78');
  background-size: cover;
  background-position: center;
  background-color: var(--navy-deep);
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.hero-media video {
  opacity: 0;
  transition: opacity 1.2s ease-out;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.hero-media video.is-ready { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Left-side directional shade behind text for guaranteed contrast */
    linear-gradient(
      90deg,
      rgba(15, 11, 9, 0.78) 0%,
      rgba(15, 11, 9, 0.55) 38%,
      rgba(15, 11, 9, 0.18) 70%,
      rgba(15, 11, 9, 0.10) 100%
    ),
    /* Vertical wash for top nav legibility + bottom trust bar lift */
    linear-gradient(
      180deg,
      rgba(15, 11, 9, 0.45) 0%,
      rgba(15, 11, 9, 0.20) 35%,
      rgba(15, 11, 9, 0.55) 100%
    );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  /* Reserve space at bottom so CTAs never collide with the trust bar */
  padding: 90px 48px 110px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--bg);
}
.hero-eyebrow { margin-bottom: 24px; }
.hero p { margin-bottom: 36px; }
.hero-eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.4s forwards;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  margin-right: 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 16ch;
  color: #FFFFFF;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1.1s ease-out 0.6s forwards;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 6px 30px rgba(0, 0, 0, 0.4);
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  max-width: 540px;
  color: #FFFFFF;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.8s forwards;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 4px 20px rgba(0, 0, 0, 0.35);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.3s ease-out 1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust strip pinned to bottom of hero */
.hero-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 22px 48px;
  opacity: 0;
  animation: fadeUp 1.4s ease-out 1.2s forwards;
}
.hero-trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
}
.hero-trust .trust-item .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 130px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-header .eyebrow { display: block; margin-bottom: 24px; }
.section-header h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
}
.section-header h2 .accent {
  font-style: italic;
  color: var(--gold);
}
.section-header p {
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   EVENT TYPES GRID
   ============================================ */
.events-section { background: var(--cream); max-width: none; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.event-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.event-card:hover img { transform: scale(1.06); }
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 13, 12, 0) 30%,
    rgba(15, 13, 12, 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--warm-white);
}
.event-card h3 {
  font-size: 32px;
  color: var(--warm-white);
  margin-bottom: 8px;
  font-weight: 400;
}
.event-card p {
  font-size: var(--fs-small);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
}
.event-card:hover p {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 16px;
}
.event-card .cta {
  font-size: var(--fs-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.event-card .cta::after {
  content: '→';
  transition: transform 0.3s ease;
}
.event-card:hover .cta::after { transform: translateX(4px); }

/* ============================================
   VENUE HIGHLIGHTS
   ============================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.highlight {
  padding: 56px 40px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.highlight:hover { background: var(--cream); }
.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 28px 0;
  color: var(--gold);
}
.highlight h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.highlight .number {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.highlight p {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   FEATURE SECTION (Weddings & Quinceañeras)
   ============================================ */
.feature-section {
  background: var(--navy);
  color: var(--bg);
  max-width: none;
  position: relative;
  overflow: hidden;
}
.feature-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.feature-section::after { display: none; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.feature-images {
  position: relative;
  aspect-ratio: 4 / 5;
}
.feature-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  object-fit: cover;
  z-index: 2;
}
.feature-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 56%;
  object-fit: cover;
  z-index: 3;
  border: 8px solid var(--navy);
}
.feature-img-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 78%;
  height: 78%;
  border: 1px solid var(--gold);
  z-index: 1;
}
.feature-content .eyebrow { color: var(--gold-light); margin-bottom: 28px; display: block; }
.feature-content .eyebrow::before { background: var(--gold-light); }
.feature-content h2 {
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--bg);
  font-weight: 400;
  margin-bottom: 32px;
}
.feature-content h2 .accent {
  font-style: italic;
  color: var(--gold-light);
}
.feature-content > p {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 32px;
}
.feature-list {
  list-style: none;
  margin: 32px 0;
}
.feature-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(184, 153, 104, 0.22);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.92);
}
.feature-list li::before {
  content: '✦';
  color: var(--gold-light);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section { background: var(--bg-soft); max-width: none; padding: 130px 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.packages-inner { max-width: 1100px; margin: 0 auto; }
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--warm-white);
  border: 1px solid var(--line);
  margin: 60px 0;
}
.package-col {
  padding: 56px 48px;
}
.package-col + .package-col {
  border-left: 1px solid var(--line);
}
.package-col h4 {
  font-family: var(--body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.package-list {
  list-style: none;
}
.package-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
}
.package-list li:last-child { border-bottom: none; }
.package-list li::after {
  content: '✓';
  color: var(--gold);
  font-size: 14px;
  font-family: var(--body);
  font-weight: 500;
}
.packages-cta {
  text-align: center;
  margin-top: 48px;
}
.packages-cta p {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 12px 24px;
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  border: 1px solid var(--line-soft);
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.gallery-filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter.active {
  background: var(--navy);
  color: var(--bg);
  border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--charcoal);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-cta {
  text-align: center;
  margin-top: 60px;
}
.gallery-cta p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--ivory); max-width: none; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial {
  background: var(--warm-white);
  padding: 48px 40px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 32px;
  font-family: var(--display);
  font-size: 96px;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.testimonial-stars {
  color: var(--gold);
  font-size: var(--fs-small);
  letter-spacing: 4px;
  margin-bottom: 24px;
  margin-top: 32px;
}
.testimonial p {
  font-family: var(--display);
  font-size: var(--fs-lead);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.author-initial {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 20px;
  color: var(--gold-deep);
  font-weight: 500;
}
.author-info .name {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--charcoal);
}
.author-info .event {
  font-size: var(--fs-button);
  color: var(--muted);
  font-style: italic;
}

/* ============================================
   LOCATION
   ============================================ */
.location-section { max-width: none; padding: 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 600px;
}
.location-info {
  padding: 100px 80px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .eyebrow { display: block; margin-bottom: 24px; }
.location-info h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 32px;
  font-weight: 300;
}
.location-info h2 .accent { font-style: italic; color: var(--gold); }
.address-block {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.address-block .label {
  font-size: var(--fs-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.address-block .value {
  font-family: var(--display);
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1.4;
}
.location-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.location-meta-item .label {
  font-size: var(--fs-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.location-meta-item .value {
  font-family: var(--display);
  font-size: var(--fs-lead);
  color: var(--charcoal);
}
.location-map {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(0.95);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-question {
  width: 100%;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.4s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 16px; height: 1px; }
.faq-icon::after { width: 1px; height: 16px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-answer-inner {
  padding-bottom: 32px;
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   FINAL CTA + FORM
   ============================================ */
.cta-section {
  background: var(--navy);
  color: var(--bg);
  max-width: none;
  padding: 0;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}
.cta-content {
  padding: 110px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content .eyebrow { color: var(--gold-light); margin-bottom: 28px; display: block; }
.cta-content .eyebrow::before { background: var(--gold-light); }
.cta-content h2 {
  font-size: clamp(40px, 4.5vw, 60px);
  color: var(--bg);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.1;
}
.cta-content h2 .accent {
  font-style: italic;
  color: var(--gold-light);
}
.cta-content > p {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.cta-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 153, 104, 0.22);
}
.cta-quick-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.88);
}
.cta-quick-item .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 14px;
}
.cta-quick-item a { color: var(--bg); font-weight: 500; }

.cta-form {
  background: var(--navy-deep);
  padding: 100px 80px;
  border-left: 1px solid rgba(184, 153, 104, 0.22);
}
.cta-form h3 {
  font-size: 28px;
  color: var(--bg);
  margin-bottom: 8px;
  font-weight: 400;
}
.cta-form .form-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--bg);
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D9BE8E'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  cursor: pointer;
}
.form-select option { background: var(--navy); color: var(--bg); }
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--body);
  font-size: var(--fs-button);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, letter-spacing 0.3s ease;
}
.form-submit:hover {
  background: var(--gold-light);
  letter-spacing: 0.32em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 48px 32px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184, 153, 104, 0.18);
}
.footer-brand img.brand-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 24px 0;
}
.footer-brand p {
  margin-top: 0;
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--body);
  font-size: var(--fs-micro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; font-size: var(--fs-small); }
.footer-col a { color: rgba(255, 255, 255, 0.6); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item { margin-bottom: 16px; font-size: var(--fs-small); line-height: 1.6; }
.footer-contact-item .label {
  font-size: var(--fs-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  display: block;
}
.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-button);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* ============================================
   STICKY MOBILE CALL & WHATSAPP BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 20, 38, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(11, 20, 38, 0.28);
}
.float-btn svg { width: 28px; height: 28px; }
.float-whatsapp {
  background: #25D366;
  color: #fff;
}
.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.15); opacity: 0; }
}
.float-call {
  background: var(--gold);
  color: var(--navy);
  display: none;
}

.mobile-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 96px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
  font-size: var(--fs-button);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(11, 20, 38, 0.25);
}
.mobile-call::before {
  content: '☎';
  margin-right: 10px;
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Mobile: nav links hidden by default, slide in as overlay panel when open */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -10px 0 40px rgba(22, 20, 19, 0.08);
    z-index: 200;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    font-size: var(--fs-small);
    letter-spacing: 0.22em;
    padding: 6px 0;
  }
  /* Click-outside scrim */
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(22, 20, 19, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
  body.nav-locked { overflow: hidden; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    z-index: 210;
    position: relative;
  }
  .menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  section { padding: 90px 32px; }

  /* Hero on tablet — keep full-bleed video, just reduce the min-height
     so the trust bar isn't pushed off-screen on shorter viewports */
  .hero {
    min-height: 600px;
    height: auto;
    max-height: none;
  }
  .hero-content {
    padding: 100px 40px 140px;
  }
  .hero-trust-inner {
    justify-content: center;
    text-align: center;
  }

  .events-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid,
  .cta-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .cta-content,
  .cta-form,
  .location-info {
    padding: 70px 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .package-col + .package-col {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 720px) {
  .utility-bar { font-size: 11px; padding: 8px 0; }
  .utility-bar .divider:first-of-type { display: none; }
  .utility-bar span:first-of-type { display: none; }
  nav { padding: 16px 20px; }
  .nav-phone { display: none; }
  .logo img { height: 50px; margin: 0; }
  .btn-nav { display: none; }

  /* Hero — tighter padding, scrollable trust bar so 5 items fit any width */
  .hero {
    min-height: 560px;
    max-height: none;
  }
  .hero-content {
    padding: 80px 24px 130px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before { width: 24px; margin-right: 12px; }
  .hero h1 { margin-bottom: 20px; max-width: 100%; }
  .hero p { margin-bottom: 36px; font-size: 16px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-trust { padding: 14px 0; }
  .hero-trust-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 24px;
    gap: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .hero-trust-inner::-webkit-scrollbar { display: none; }
  .hero-trust .trust-item {
    flex-shrink: 0;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  section { padding: 70px 20px; }
  .section-header { margin-bottom: 50px; }
  .section-header h2 { font-size: clamp(32px, 8vw, 44px); }
  .events-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-filters { gap: 8px; flex-wrap: wrap; }
  .gallery-filter { font-size: 11px; padding: 8px 14px; }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-content,
  .cta-form,
  .location-info {
    padding: 60px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-content h2,
  .cta-content h2 { font-size: clamp(30px, 7vw, 40px); }
  .events-section section,
  .packages-section { padding: 70px 20px !important; }
  .feature-section section { padding: 80px 20px !important; }
  .feature-images { aspect-ratio: 1 / 1; }
  .package-col { padding: 40px 28px; }
  .testimonial-card { padding: 32px 24px; }

  /* Show floating call button on mobile only */
  .float-call { display: flex; }

  body { padding-bottom: 100px; }
  .faq-question { font-size: 18px; }
}
@media (max-width: 480px) {
  nav { padding: 14px 16px; }
  .logo img { height: 44px; margin: 0; }
  .utility-bar { font-size: 10px; padding: 7px 8px; gap: 6px; }
  .utility-bar .divider { display: none; }
  section { padding: 60px 18px; }
  .hero-content { padding: 70px 20px 110px; }
  .hero h1 { font-size: clamp(34px, 11vw, 56px); }
  .gallery-grid { gap: 6px; grid-auto-rows: 140px; grid-auto-flow: dense; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-grid > .gallery-item:nth-child(4) { grid-column: span 1; }
  .cta-quick-item { gap: 14px; }
  .footer-brand img.brand-logo { width: 180px; margin: 0 0 20px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-submit { width: 100%; }
}
@media (min-width: 1600px) {
  .nav-wrapper nav,
  .section-inner,
  .footer-grid,
  .footer-bottom { max-width: 1480px; }
}