/* ═══════════════════════════════════════════════
   GMC LUXURY — main.css
   Golden Memories Co. Custom Theme
   ═══════════════════════════════════════════════ */

/* ─────── TOKENS ─────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2BC62;
  --gold-glow:   rgba(201,168,76,0.15);
  --black:       #080808;
  --dark:        #0c0c0c;
  --card:        #111111;
  --card-hover:  #151515;
  --border:      #1e1e1e;
  --border-gold: rgba(201,168,76,0.25);
  --white:       #F4EFE6;
  --off-white:   #e8e2d6;
  --muted:       #c4b8a8;
  --dim:         #8a7f6f;
  --nav-h:       72px;
}

/* ─────── RESET ─────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }

/* ─────── BASE ─────── */
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
p { color: var(--muted); font-weight: 400; }
button, input, textarea, select { font-family: inherit; }

/* ─────── LAYOUT ─────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 3.5px;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .8rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-sep {
  width: 100%; max-width: 960px;
  margin: 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .15;
}

/* ─────── HEADER / NAV ─────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,8,8,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  display: flex; align-items: center;
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.nav-primary { justify-self: center; }
.nav-right    { justify-self: end; }
.nav-right { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.nav-phone {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 1.5px;
  color: var(--muted); transition: color .3s;
}
.nav-phone:hover { color: var(--gold); }
.site-logo {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.3;
}
.site-logo span { display: block; font-size: .55rem; letter-spacing: 5px; color: var(--dim); }
.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-logo-img { height: 40px; }
}
.nav-primary ul { display: flex; gap: 2.5rem; align-items: center; }
.nav-primary a {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: 2.5px;
  color: var(--off-white);
  text-transform: uppercase;
  transition: color .3s;
}
.nav-primary a:hover, .nav-primary .current-menu-item > a { color: var(--gold); }

/* ── Dropdown ── */
.nav-primary .menu-item-has-children { position: relative; }
.nav-primary .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: .5rem;
  opacity: .6;
  vertical-align: middle;
}
.nav-primary .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,.97);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  padding: .8rem 0;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  margin-top: 0;
}
.nav-primary .menu-item-has-children { padding-bottom: 1.5rem; margin-bottom: -1.5rem; }
.nav-primary .menu-item-has-children:hover .sub-menu { display: flex; }
.nav-primary .sub-menu li { width: 100%; }
.nav-primary .sub-menu a {
  display: block;
  padding: .65rem 1.4rem;
  font-size: .55rem;
  letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-primary .sub-menu a:hover { color: var(--gold); background: rgba(201,168,76,.05); }
.mobile-nav-quote-btn { display: none; }
.nav-cta {
  font-family: 'Cinzel', serif !important;
  font-size: .6rem !important;
  letter-spacing: 2px !important;
  padding: .55rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 0 !important;
  transition: all .3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--white); transition: all .3s; }
.site-content { padding-top: var(--nav-h); }

/* ─────── HERO ─────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .65rem; letter-spacing: 4px;
  color: var(--gold); display: block; margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.3rem; color: var(--gold-light);
  margin: 0 auto .6rem; font-weight: 400; letter-spacing: 1px;
}
.hero-tagline {
  font-size: 1.05rem; color: var(--muted);
  max-width: 520px; margin: 0 auto 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; padding: 1rem 2.8rem;
  background: var(--gold); color: var(--black);
  font-family: 'Cinzel', serif; font-size: .65rem;
  letter-spacing: 2.5px; font-weight: 600;
  transition: background .3s;
}
.btn-primary:hover { background: var(--gold-light); color: var(--black); }
.btn-outline {
  display: inline-block; padding: 1rem 2.8rem;
  border: 1px solid var(--border-gold); color: var(--gold);
  font-family: 'Cinzel', serif; font-size: .65rem;
  letter-spacing: 2.5px; transition: all .3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.hero-trust {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem; font-family: 'Cinzel', serif; font-size: .55rem;
  letter-spacing: 2px; color: var(--dim);
}

/* ─────── ABOUT STRIP ─────── */
.about-strip { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; text-align: center; }
.about-strip p { font-size: 1.2rem; max-width: 680px; margin: 0 auto; line-height: 1.8; font-weight: 400; color: var(--off-white); }
.about-strip p em { font-style: italic; color: var(--gold-light); }

/* ─────── SERVICES OVERVIEW ─────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  max-width: 960px; margin: 0 auto;
}
.service-card {
  background: var(--card); padding: 2rem 1.8rem;
  transition: background .3s;
}
.service-card:hover { background: var(--card-hover); }
.service-icon { font-size: 1.4rem; margin-bottom: 1rem; color: var(--gold); }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--white); margin-bottom: .5rem;
}
.service-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ─────── PRICING CARDS ─────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; padding: 2rem 1.5rem;
  display: flex; flex-direction: column; position: relative;
  transition: border-color .4s, background .4s;
}
.pricing-card:hover { border-color: var(--border-gold); background: var(--card-hover); }
.pricing-card.featured { border-color: var(--gold); background: rgba(201,168,76,.04); padding-top: 2.8rem; }
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: 0; left: 0; right: 0;
  background: var(--gold); color: var(--black); text-align: center;
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: 2px; padding: 6px 0; font-weight: 600;
}
.card-tier { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: 2.5px; color: var(--gold); margin-bottom: .3rem; }
.card-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; color: var(--white); margin-bottom: .6rem; }
.card-duration { font-size: .9rem; color: var(--muted); font-style: italic; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.card-price-note { font-size: .85rem; color: var(--muted); font-style: italic; margin-bottom: 1.2rem; }
.card-features { flex: 1; }
.card-features li { font-size: .95rem; color: var(--muted); padding: .35rem 0 .35rem 1.2rem; position: relative; line-height: 1.6; }
.card-features li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .55rem; top: .5rem; opacity: .6; }
.pricing-cta-row {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-gold);
  background: var(--card);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-cta-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 400;
  font-style: italic;
}
.vogue-delivery {
  display: inline-block; font-family: 'Cinzel', serif; font-size: .5rem;
  letter-spacing: 1.5px; padding: 3px 10px; border: 1px solid var(--border); color: var(--muted); margin-bottom: 1rem;
}
.sparkler-detail { font-size: .95rem; color: var(--off-white); margin-bottom: .2rem; font-weight: 500; }

/* ─────── BUNDLE CARDS ─────── */
.bundles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; max-width: 960px; margin: 0 auto 2rem;
}
.bundle-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; padding: 2rem 1.5rem; position: relative; transition: border-color .4s;
}
.bundle-card:hover { border-color: var(--border-gold); }
.bundle-card.featured { border-color: var(--gold); background: rgba(201,168,76,.04); padding-top: 2.8rem; }
.bundle-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: 0; left: 0; right: 0;
  background: var(--gold); color: var(--black); text-align: center;
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: 2px; padding: 6px 0; font-weight: 600;
}
.bundle-name { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.bundle-includes li { font-size: .95rem; color: var(--muted); padding: .3rem 0 .3rem 1rem; position: relative; line-height: 1.6; }
.bundle-includes li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .5; }

/* ─────── PREMIUM BUNDLE CARDS ─────── */
.premium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 960px; margin: 0 auto; }
.premium-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 2px;
  padding: 2rem; display: block; transition: border-color .4s;
}
.premium-card:hover { border-color: var(--border-gold); }
.premium-card.ultimate { border-color: var(--gold); background: rgba(201,168,76,.04); }
.premium-left { flex: 1; }
.premium-name { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 2px; color: var(--gold); margin-bottom: .5rem; }
.premium-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.premium-right { text-align: right; flex-shrink: 0; }

/* ─────── ADD-ONS ─────── */
.addons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.addon-card { background: var(--card); border: 1px solid var(--border); border-radius: 2px; padding: 1.5rem 1.2rem; text-align: center; transition: border-color .4s; }
.addon-card:hover { border-color: var(--border-gold); }
.addon-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white); margin-bottom: .5rem; font-weight: 500; }
.addon-sub { font-size: .78rem; color: var(--dim); margin-top: .4rem; line-height: 1.5; }
.addon-badge { display: inline-block; font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: 2px; padding: .2rem .6rem; border-radius: 2px; margin-top: .4rem; }
.addon-badge.free { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid var(--border-gold); }
.addon-badge.included { background: rgba(255,255,255,.05); color: var(--muted); border: 1px solid var(--border); }

/* ─────── TESTIMONIALS ─────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; padding: 2rem 1.8rem;
}
.testimonial-stars { color: var(--gold); font-size: .7rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-quote { font-size: 1rem; color: var(--off-white); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 2px; color: var(--muted); }

/* ─────── FINAL CTA ─────── */
.cta-section { text-align: center; padding: 6rem 2rem; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem; font-weight: 400; }
.cta-contact { margin-top: 2rem; font-size: .9rem; color: var(--dim); }
.cta-contact a { color: var(--muted); border-bottom: 1px solid var(--border); transition: color .3s; }
.cta-contact a:hover { color: var(--gold); }

/* ─────── FOOTER ─────── */
.site-footer { background: var(--dark); border-top: 1px solid var(--border); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; }
.footer-brand .footer-logo { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo-img { height: 52px; width: auto; display: block; object-fit: contain; }
.footer-brand p { font-size: .9rem; color: var(--muted); line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { font-size: .9rem; color: var(--muted); transition: color .3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; }
.footer-col address p { font-size: .9rem; color: var(--muted); margin-bottom: .5rem; line-height: 1.6; }
.footer-col address a { color: var(--muted); transition: color .3s; }
.footer-col address a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1rem; }
.footer-social a { font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: 2px; color: var(--muted); border: 1px solid var(--border); padding: 6px 12px; transition: all .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-locations { border-top: 1px solid var(--border); padding: 1rem 0; text-align: center; }
.footer-locations p { font-size: .72rem; color: var(--dim); line-height: 1.8; }
.footer-locations a { color: var(--dim); text-decoration: none; transition: color .2s; }
.footer-locations a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: var(--dim); }
.footer-bottom a { color: var(--dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─────── CONTACT PAGE ─────── */

/* Hero */
.contact-hero {
  min-height: 52vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.contact-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-pulse 7s ease-in-out infinite;
}
.contact-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.contact-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.contact-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin: 1rem 0 1.2rem;
}
.contact-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.contact-trust-pills {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  font-family: 'Cinzel', serif; font-size: .52rem;
  letter-spacing: 2px; color: var(--dim);
}

/* Main layout */
.contact-main-section { padding: 4rem 0 5rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Form column */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-form-header { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.contact-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--white); margin: .6rem 0 .6rem;
}
.contact-form-header p { font-size: .95rem; color: var(--muted); }

/* Fallback form */
.contact-fallback-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-family: 'Cinzel', serif; font-size: .58rem;
  letter-spacing: 1.8px; color: var(--muted); text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--dark); border: 1px solid var(--border);
  color: var(--white); -webkit-text-fill-color: var(--white);
  padding: .85rem 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  border-radius: 0; transition: border-color .25s;
  appearance: none; -webkit-appearance: none;
}
.form-field input[type="date"] {
  color-scheme: dark;
  -webkit-text-fill-color: var(--white);
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); opacity: .6;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--dim); font-style: italic; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-field select option { background: var(--card); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-checkboxes {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .5rem .8rem; margin-top: .2rem;
}
.checkbox-label {
  display: flex; align-items: center; gap: .55rem;
  font-family: 'Cormorant Garamond', serif; font-size: .95rem;
  color: var(--muted); cursor: pointer; transition: color .2s;
}
.checkbox-label:hover { color: var(--gold); }
.checkbox-label input[type="checkbox"] {
  width: 14px; height: 14px; flex-shrink: 0;
  background: var(--dark); border: 1px solid var(--border);
  appearance: none; -webkit-appearance: none;
  cursor: pointer; transition: background .2s, border-color .2s;
  padding: 0;
}
.checkbox-label input[type="checkbox"]:checked {
  background: var(--gold); border-color: var(--gold);
}
.form-note {
  font-size: .78rem; color: var(--dim);
  text-align: center; line-height: 1.6;
  margin-top: .2rem;
}

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--card); border: 1px solid var(--border); padding: 1.8rem;
}
.sidebar-card-title {
  font-family: 'Cinzel', serif; font-size: .6rem;
  letter-spacing: 2.5px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.4rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.contact-info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: background .2s;
  margin: 0 -.2rem; padding-left: .2rem; padding-right: .2rem;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row:hover .contact-info-value { color: var(--gold); }
.contact-info-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--gold);
  transition: background .2s;
}
.contact-info-row:hover .contact-info-icon { background: var(--gold-glow); }
.contact-info-label {
  font-family: 'Cinzel', serif; font-size: .5rem;
  letter-spacing: 1.8px; color: var(--dim); margin-bottom: .2rem;
  text-transform: uppercase;
}
.contact-info-value { font-size: .95rem; color: var(--muted); transition: color .2s; }

/* What happens next steps */
.contact-steps { display: flex; flex-direction: column; gap: 0; }
.contact-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-step:last-child { border-bottom: none; padding-bottom: 0; }
.contact-step-num {
  font-family: 'Cinzel', serif; font-size: 1.1rem;
  color: var(--gold); font-weight: 700; line-height: 1;
  flex-shrink: 0; width: 28px;
  opacity: .7;
}
.contact-step-title {
  font-family: 'Playfair Display', serif; font-size: .95rem;
  color: var(--white); margin-bottom: .3rem; font-weight: 500;
}
.contact-step-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Service area card */
.sidebar-area-card { border-left: 3px solid var(--gold); }
.sidebar-area-label {
  font-family: 'Cinzel', serif; font-size: .55rem;
  letter-spacing: 2px; color: var(--gold);
  display: block; margin-bottom: .6rem; text-transform: uppercase;
}
.sidebar-area-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* Sidebar testimonial */
.sidebar-testimonial {
  background: rgba(201,168,76,.04);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
}
.sidebar-stars { color: var(--gold); font-size: .7rem; letter-spacing: 3px; margin-bottom: .8rem; }
.sidebar-quote {
  font-size: .95rem; color: var(--off-white);
  line-height: 1.7; font-style: italic; margin-bottom: 1rem;
}
.sidebar-attribution {
  font-family: 'Cinzel', serif; font-size: .52rem;
  letter-spacing: 1.5px; color: var(--dim);
}

/* FAQ */
.contact-faq-section { background: var(--dark); border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--white);
  padding: 1.3rem 2.5rem 1.3rem 0;
  cursor: pointer;
  position: relative;
  transition: color .2s;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif; font-size: 1rem;
  color: var(--gold); transition: transform .3s;
  font-weight: 300;
}
.faq-item[open] .faq-q { color: var(--gold-light); }
.faq-item[open] .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  font-size: .98rem; color: var(--muted);
  line-height: 1.8; padding-bottom: 1.4rem;
  max-width: 680px;
}

/* Service hero (used on service detail pages) */
.service-hero { text-align: center; padding: 6rem 2rem 4rem; background: var(--dark); border-bottom: 1px solid var(--border); }

/* Split hero — text left, video right */
.service-hero--split { text-align: left; padding: 5rem 2rem 4rem; }
.service-hero-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
.service-hero-split--video-left {
  grid-template-columns: 340px 1fr;
}
.service-hero-split--video-left .service-hero-video { order: -1; }
.service-hero-text { display: flex; flex-direction: column; justify-content: center; }
.service-hero-video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.service-hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .service-hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-hero--split { text-align: center; }
  .service-hero-text { align-items: center; }
  .service-hero-video-wrap {
    width: min(320px, 80vw);
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   EVENT GALLERY PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.gallery-hero {
  padding: 7rem 0 4rem;
  text-align: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

/* Filter bar */
.gallery-filter-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  position: sticky; top: 72px; z-index: 50;
}
.gallery-filters {
  display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center;
}
.gallery-filter-btn {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  background: transparent; border: 1px solid var(--border);
  padding: .5rem 1.1rem; border-radius: 2px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--gold); border-color: var(--gold);
  background: rgba(201,168,76,.06);
}

/* Gallery grid — masonry-style columns */
.gallery-section { background: var(--black); }
.gallery-grid {
  columns: 3; column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  position: relative; overflow: hidden;
  border-radius: 3px; cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
.gallery-item:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.gallery-lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 3px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed; background: transparent; border: none;
  color: rgba(255,255,255,.7); cursor: pointer;
  transition: color .2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 2.5rem; line-height: 1; }
.lightbox-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); font-size: 3.5rem; line-height: 1; }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3.5rem; line-height: 1; }

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}
@media (max-width: 540px) {
  .gallery-grid { columns: 1; }
  .gallery-filter-bar { top: 60px; }
}

/* ─────── FAQ CATEGORY ─────── */
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--white); margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}

/* ─────── PRIVACY POLICY CONTENT ─────── */
.privacy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--white); margin: 2rem 0 .8rem;
}
.privacy-content p,
.privacy-content li {
  font-size: .95rem; color: var(--muted);
  line-height: 1.8; margin-bottom: .6rem;
}
.privacy-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.privacy-content a { color: var(--gold); text-decoration: none; }
.privacy-content a:hover { text-decoration: underline; }

/* ─────── WPFORMS DARK SKIN ─────── */
.contact-form-wrap .wpforms-container input,
.contact-form-wrap .wpforms-container textarea,
.contact-form-wrap .wpforms-container select {
  background: var(--dark) !important; border: 1px solid var(--border) !important;
  color: var(--white) !important; border-radius: 0 !important;
  padding: .85rem 1rem !important; font-size: 1rem !important;
  font-family: 'Cormorant Garamond', serif !important;
  transition: border-color .25s !important;
}
.contact-form-wrap .wpforms-container input:focus,
.contact-form-wrap .wpforms-container textarea:focus,
.contact-form-wrap .wpforms-container select:focus {
  border-color: var(--gold) !important; outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.08) !important;
}
.contact-form-wrap .wpforms-container input::placeholder,
.contact-form-wrap .wpforms-container textarea::placeholder { color: var(--dim) !important; font-style: italic !important; }
.contact-form-wrap .wpforms-container input[type="date"] {
  color-scheme: dark !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}
.contact-form-wrap .wpforms-container input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) !important; opacity: .6;
}
.contact-form-wrap .wpforms-container textarea {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  opacity: 1 !important;
}
.contact-form-wrap .wpforms-container input,
.contact-form-wrap .wpforms-container textarea {
  -webkit-text-fill-color: var(--white) !important;
}
.contact-form-wrap .wpforms-container label {
  color: var(--muted) !important; font-family: 'Cinzel', serif !important;
  font-size: .58rem !important; letter-spacing: 1.8px !important;
  text-transform: uppercase !important; margin-bottom: .4rem !important;
}
.contact-form-wrap .wpforms-field { margin-bottom: 1.2rem !important; }
.contact-form-wrap .wpforms-submit-container { margin-top: 1.5rem !important; }
.contact-form-wrap .wpforms-submit-container .wpforms-submit {
  background: var(--gold) !important; color: var(--black) !important;
  font-family: 'Cinzel', serif !important; font-size: .65rem !important;
  letter-spacing: 2.5px !important; border: none !important;
  padding: 1.1rem 2.8rem !important; border-radius: 0 !important;
  cursor: pointer !important; transition: background .3s !important;
  width: 100% !important;
}
.contact-form-wrap .wpforms-submit-container .wpforms-submit:hover { background: var(--gold-light) !important; }
.contact-form-wrap .wpforms-field-error { color: #e57373 !important; font-size: .8rem !important; margin-top: .3rem !important; }

/* Override WPForms CSS variables */
.contact-form-wrap .wpforms-container {
  --wpforms-label-color:            #c4b8a8;
  --wpforms-field-label-color:      #c4b8a8;
  --wpforms-field-sublabel-color:   #8a7f6f;
  --wpforms-field-description-color:#8a7f6f;
  --wpforms-field-text-color:       #F4EFE6;
  --wpforms-field-background-color: #0c0c0c;
  --wpforms-field-border-color:     #1e1e1e;
  --wpforms-field-font-family:      'Cormorant Garamond', Georgia, serif;
  --wpforms-field-font-size:        1rem;
}
/* Force all label/option text inside WPForms to match theme */
.contact-form-wrap .wpforms-container label,
.contact-form-wrap .wpforms-container .wpforms-field-label,
.contact-form-wrap .wpforms-container .wpforms-field-sublabel,
.contact-form-wrap .wpforms-container ul li label,
.contact-form-wrap .wpforms-container .wpforms-field-label-inline {
  color: #c4b8a8 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
}
/* ── Custom WPForms checkboxes ── */
.contact-form-wrap .wpforms-container .wpforms-field-checkbox ul,
.contact-form-wrap .wpforms-container .wpforms-field-radio ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: .6rem .8rem !important;
  padding: 0 !important;
  margin: 0 !important;
}
.contact-form-wrap .wpforms-container .wpforms-field-checkbox ul li,
.contact-form-wrap .wpforms-container .wpforms-field-radio ul li {
  display: flex !important;
  align-items: center !important;
  gap: .6rem !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* Hide the native checkbox/radio and replace with custom box */
.contact-form-wrap .wpforms-container .wpforms-field-checkbox ul li input[type="checkbox"],
.contact-form-wrap .wpforms-container .wpforms-field-radio ul li input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  background: var(--dark) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  position: relative !important;
  top: 0 !important;
  transition: background .2s, border-color .2s !important;
}
.contact-form-wrap .wpforms-container .wpforms-field-checkbox ul li input[type="checkbox"]:checked,
.contact-form-wrap .wpforms-container .wpforms-field-radio ul li input[type="radio"]:checked {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
/* Gold checkmark via background SVG */
.contact-form-wrap .wpforms-container .wpforms-field-checkbox ul li input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23080808' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px !important;
}

/* But keep the main field label (question title) in Cinzel */
.contact-form-wrap .wpforms-container .wpforms-field-label {
  font-family: 'Cinzel', serif !important;
  font-size: .58rem !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  color: #c4b8a8 !important;
}

/* ─────── CONTACT RESPONSIVE ─────── */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .sidebar-testimonial { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .contact-hero { min-height: 44vh; padding: 5.5rem 1.5rem 3.5rem; }
  .contact-hero-inner h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .contact-trust-pills { flex-direction: column; gap: .4rem; font-size: .48rem; align-items: center; }
  .contact-main-section { padding: 2.5rem 0 3rem; }
  .contact-form-wrap { padding: 1.8rem; }
  .contact-form-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .sidebar-testimonial { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .form-checkboxes { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form-wrap { padding: 1.4rem; }
  .faq-q { font-size: .95rem; padding: 1.1rem 2rem 1.1rem 0; }
}

/* ─────── RESPONSIVE ─────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .site-header .container { display: flex; justify-content: space-between; }
  .nav-right { display: none; }
  .nav-primary {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--border);
  }
  .nav-primary.open { display: block; }
  .nav-primary .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(201,168,76,.3);
    background: transparent;
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: auto;
    padding: .25rem 0 .75rem 1.25rem;
  }
  .nav-primary .sub-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .pricing-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    max-width: 100%;
    scrollbar-width: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }
  .pricing-card.featured { padding-top: 2.8rem; }
  .bundles-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .premium-grid, .testimonials-grid, .contact-grid { grid-template-columns: 1fr; }
  .premium-card { flex-direction: column; text-align: center; gap: 1rem; }
  .premium-right { text-align: center; }
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; padding: 5rem 1.5rem 4rem; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .addons-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-phone { display: none; }
  .hero-trust { gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ─────── STATS STRIP ─────── */
.stats-strip { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 800px; margin: 0 auto; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: 2px; color: var(--dim); margin-top: .4rem; }

/* ─────── WHY BRANDS ─────── */
/* ─────── HOW IT WORKS ─────── */
.how-it-works-section { background: var(--black); }
.how-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.how-step { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--border); border-radius: 2px; transition: border-color .3s; }
.how-step:hover { border-color: var(--border-gold); }
.how-number { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold); font-weight: 700; margin-bottom: .75rem; line-height: 1; }
.how-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: .6rem; font-weight: 500; }
.how-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.how-arrow { font-size: 1.5rem; color: var(--gold); opacity: .6; text-align: center; }

/* ── Legacy why-section (service pages) ── */
.why-section { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.why-card { padding: 1.8rem 1.4rem; border: 1px solid var(--border); border-radius: 2px; transition: border-color .3s; }
.why-card:hover { border-color: var(--border-gold); }
.why-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: .6rem; font-weight: 500; }
.why-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════════════
   WHY V2 — homepage interactive section
   ════════════════════════════════════════ */
.why-section-v2 {
  position: relative; overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3.5rem;
}
.why-bg-word {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700; letter-spacing: .1em;
  color: rgba(201,168,76,.03);
  white-space: nowrap; pointer-events: none;
  user-select: none; line-height: 1;
}

/* Header */
.why-v2-header {
  text-align: center;
  margin-bottom: 2rem;
}
.why-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white); font-weight: 400;
  line-height: 1.25; margin-top: .5rem;
}
.why-v2-title em { color: var(--gold); font-style: italic; }

/* Panels — horizontal accordion */
.why-v2-panels {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 2rem;
  height: 240px;
}
.why-v2-panel {
  flex: 0 0 100px;
  position: relative; cursor: pointer;
  border-right: 1px solid var(--border);
  background: var(--dark);
  transition: flex .55s cubic-bezier(.4,0,.2,1), background .35s;
  overflow: hidden;
}
.why-v2-panel:last-child { border-right: none; }
.why-v2-panel.active {
  flex: 1 1 auto;
  background: linear-gradient(135deg, #0d0d0d 0%, #111 60%, #0d0a05 100%);
}

/* Panel header — desktop: stacked vertically (num on top, toggle at bottom) */
.why-v2-panel-header {
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between;
  padding: 1rem .8rem;
  flex-shrink: 0; height: 100%;
  position: absolute; top: 0; left: 0; width: 100px;
  box-sizing: border-box;
}
.why-v2-panel-num {
  font-family: 'Cinzel', serif;
  font-size: .55rem; letter-spacing: 3px;
  color: var(--gold); opacity: .5;
  white-space: nowrap; flex-shrink: 0;
  transition: opacity .3s;
}
.why-v2-panel.active .why-v2-panel-num { opacity: 1; }

/* Collapsed title — vertical on desktop */
.why-v2-panel-collapsed-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .85rem; color: var(--muted);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: 1;
  line-height: 1;
  opacity: 1;
  transition: opacity .3s;
  overflow: hidden;
}
.why-v2-panel.active .why-v2-panel-collapsed-title {
  opacity: 0; pointer-events: none;
}

/* + / × toggle icon */
.why-v2-panel-toggle {
  width: 18px; height: 18px; flex-shrink: 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.why-v2-panel-toggle span {
  position: absolute;
  display: block; background: rgba(201,168,76,.6);
  border-radius: 1px;
  transition: transform .35s, background .3s;
}
.why-v2-panel-toggle span:first-child { width: 10px; height: 1.5px; }
.why-v2-panel-toggle span:last-child  { width: 1.5px; height: 10px; }
.why-v2-panel.active .why-v2-panel-toggle span { background: var(--gold); }
.why-v2-panel.active .why-v2-panel-toggle span:first-child { transform: rotate(45deg); }
.why-v2-panel.active .why-v2-panel-toggle span:last-child  { transform: rotate(45deg); }

/* Inner content — offset to clear the 100px fixed header column */
.why-v2-panel-inner {
  margin-left: 100px;
  padding: 1rem 1.5rem 1rem 1rem;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .4s .1s, transform .4s .1s;
  height: 100%; display: flex; flex-direction: column;
  justify-content: center; pointer-events: none; min-width: 0;
  box-sizing: border-box;
}
.why-v2-panel.active .why-v2-panel-inner {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
}
.why-v2-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--white); font-weight: 400;
  line-height: 1.25; margin-bottom: .6rem;
}
.why-v2-panel-desc {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 400px;
}

/* Gold line accent on active panel */
.why-v2-panel.active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Stats row */
.why-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.why-v2-stat {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .3s;
}
.why-v2-stat:last-child { border-right: none; }
.why-v2-stat:hover { background: rgba(201,168,76,.04); }
.why-v2-stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold); display: inline;
  line-height: 1;
}
.why-v2-stat-suffix {
  font-family: 'Cinzel', serif;
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  color: var(--gold); display: inline;
}
.why-v2-stat-label {
  font-family: 'Cinzel', serif;
  font-size: .55rem; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  margin-top: .6rem;
}

/* ── Mobile: vertical accordion, same interaction ── */
@media (max-width: 860px) {
  .why-v2-panels {
    flex-direction: column; height: auto;
  }
  .why-v2-panel {
    flex: unset !important;
    border-right: none; border-bottom: 1px solid var(--border);
  }
  .why-v2-panel:last-child { border-bottom: none; }

  /* Header: horizontal row on mobile */
  .why-v2-panel-header {
    position: static; width: auto; height: auto;
    flex-direction: row; align-items: center; justify-content: flex-start;
    padding: .9rem 1rem; gap: .6rem;
  }

  /* Show collapsed title inline on mobile */
  .why-v2-panel-collapsed-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: .85rem; color: var(--muted);
    flex: 1; opacity: 1; transition: opacity .3s;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .why-v2-panel.active .why-v2-panel-collapsed-title { opacity: .4; }

  .why-v2-panel-toggle { margin-left: auto; }

  /* Collapsed: hide content via max-height */
  .why-v2-panel-inner {
    margin-left: 0;
    max-height: 0; overflow: hidden;
    padding: 0 1.2rem;
    opacity: 0; transform: none;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s, padding .3s;
  }
  .why-v2-panel.active .why-v2-panel-inner {
    max-height: 300px; opacity: 1; padding: .2rem 1.2rem 1.2rem;
  }

  .why-v2-panel-title { font-size: 1rem; }
  .why-v2-panel-desc  { font-size: .82rem; }

  .why-v2-stats { grid-template-columns: repeat(2, 1fr); }
  .why-v2-stat:nth-child(2) { border-right: none; }
  .why-v2-stat:nth-child(3),
  .why-v2-stat:nth-child(4) { border-top: 1px solid var(--border); }
  .why-v2-stat:nth-child(4) { border-right: none; }
}
@media (max-width: 480px) {
  .why-v2-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─────── PRODUCT CARDS ─────── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; max-width: 1100px; margin: 0 auto;
}
.products-load-more { display: none; text-align: center; margin-top: 2rem; }
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden; transition: border-color .4s, transform .3s;
}
.product-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.product-img {
  height: 160px; background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.product-img:not(:has(img))::after {
  content: '✦'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--border-gold);
}
.product-body { padding: 1.4rem 1.2rem; }
.product-name {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 500; color: var(--white); margin-bottom: .6rem;
}
.product-link {
  display: inline-block; font-family: 'Cinzel', serif;
  font-size: .55rem; letter-spacing: 2px; color: var(--gold);
  border-bottom: 1px solid var(--border-gold); padding-bottom: 2px;
  margin-bottom: .8rem; transition: color .3s;
}
.product-link:hover { color: var(--gold-light); }
.product-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ─────── CLIENTS MARQUEE ─────── */
/* ─────── INSTAGRAM PORTFOLIO ─────── */
.instagram-section { background: var(--black); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.instagram-tile {
  aspect-ratio: 1 / 1;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: pointer;
}
.instagram-tile:hover { border-color: var(--border-gold); transform: scale(1.02); }
.instagram-tile::after {
  content: '✦';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--border-gold);
}

.clients-section { padding: 3rem 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.clients-section .section-header { margin-bottom: 2rem; }
.clients-marquee-wrap { overflow: hidden; }
.clients-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: clients-scroll 30s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  width: 140px; height: 56px; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px;
}
@keyframes clients-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────── EVENT FINDER ─────── */
.event-finder-section { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.event-finder { max-width: 600px; margin: 0 auto; text-align: center; }
.event-select {
  width: 100%; padding: 1rem 1.4rem;
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; border-radius: 0; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.2rem center;
}
.event-select:focus { outline: none; border-color: var(--gold); }
.event-select option { background: var(--card); color: var(--white); }
.event-result {
  margin-top: 2rem; background: var(--card);
  border: 1px solid var(--border-gold); padding: 2rem;
  text-align: left; animation: fadeIn .3s ease;
}
.event-result-inner h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--white); margin-bottom: .8rem;
}
.event-result-inner p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
@keyframes fadeIn { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform: translateY(0); } }

/* ─────── TESTIMONIALS MARQUEE ─────── */
.testimonials-section { overflow: hidden; }
.testimonials-section .section-header { padding: 0 2rem; }
.marquee-wrap { overflow: hidden; margin-top: 2rem; }
.marquee-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: testimonial-scroll 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track .testimonial-card {
  width: 320px; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; padding: 2rem;
}
.testimonial-meta { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-glow); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: .75rem; color: var(--gold); flex-shrink: 0;
}
.testimonial-name { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 1.5px; color: var(--white); }
.testimonial-role { font-size: .8rem; color: var(--dim); margin-top: .1rem; }
@keyframes testimonial-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────── BRANDS / LOGO STRIP ─────── */
.brands-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  overflow: hidden;
}
.brands-header {
  text-align: center;
  margin-bottom: 2rem;
}
.brands-header .section-label { display: block; margin-bottom: .4rem; }
.brands-sub {
  font-size: .82rem;
  color: var(--dim);
  margin: 0;
  letter-spacing: .04em;
}
.brands-marquee-wrap { overflow: hidden; }
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brands-scroll 35s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.2rem;
  height: 72px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: opacity .3s;
}
.brand-logo a { display: flex; align-items: center; }
.brand-logo img {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  /*
   * invert(1) turns white backgrounds → black
   * mix-blend-mode: screen makes black transparent against the dark site bg
   * grayscale keeps all logos visually consistent
   */
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
  opacity: .5;
  transition: opacity .3s;
}
.brand-logo:hover img {
  opacity: 1;
}

/* ─────── CTA SECTION (updated) ─────── */
.cta-phone { margin-top: 1.2rem; font-size: 1rem; color: var(--dim); }
.cta-phone a { color: var(--muted); border-bottom: 1px solid var(--border); }
.cta-phone a:hover { color: var(--gold); }
.cta-trust {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.2rem; font-family: 'Cinzel', serif;
  font-size: .55rem; letter-spacing: 2px; color: var(--dim);
}

/* ─────── RESPONSIVE (additions) ─────── */
@media (max-width: 1024px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .how-grid::-webkit-scrollbar { display: none; }
  .how-step {
    flex: 0 0 80vw;
    scroll-snap-align: center;
  }
  .how-arrow { display: none; }
}
@media (max-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-right .nav-phone { display: none; }
  .hero-sub { font-size: 1.1rem; }
  .marquee-track .testimonial-card { width: 280px; }
  .product-card.hidden-mobile { display: none; }
  .products-load-more { display: block; }
}

/* ══════════════════════════════════════════════
   DESIGN ENHANCEMENTS
   ══════════════════════════════════════════════ */

/* ─────── PAGE TRANSITIONS ─────── */
body {
  opacity: 1;
  transition: opacity .22s ease;
}
body.page-exit { opacity: 0; }

/* ─────── BACK TO TOP ─────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 42px; height: 42px;
  background: var(--gold);
  border: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--black);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .back-to-top { bottom: 5.5rem; right: 1rem; width: 38px; height: 38px; }
}

/* ─────── COOKIE CONSENT BANNER ─────── */
.cookie-consent {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(8,8,8,.97);
  border-top: 1px solid var(--border-gold);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.cookie-consent.visible { transform: translateY(0); }
.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-consent-text { flex: 1; }
.cookie-consent-title {
  font-family: 'Cinzel', serif;
  font-size: .6rem; letter-spacing: 2px;
  color: var(--gold); display: block;
  margin-bottom: .4rem; text-transform: uppercase;
}
.cookie-consent-text p {
  font-size: .85rem; color: var(--muted);
  line-height: 1.6; margin: 0;
}
.cookie-consent-text a { color: var(--gold); border-bottom: 1px solid var(--border-gold); }
.cookie-consent-actions {
  display: flex; gap: .8rem; flex-shrink: 0;
}
.cookie-btn-decline {
  font-family: 'Cinzel', serif; font-size: .58rem;
  letter-spacing: 1.8px; padding: .7rem 1.4rem;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-decline:hover { border-color: var(--muted); color: var(--white); }
.cookie-btn-accept {
  font-family: 'Cinzel', serif; font-size: .58rem;
  letter-spacing: 1.8px; padding: .7rem 1.6rem;
  background: var(--gold); border: none;
  color: var(--black); font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .cookie-consent-inner { flex-direction: column; gap: 1rem; padding: 1.2rem 1.2rem 1.5rem; }
  .cookie-consent-actions { width: 100%; }
  .cookie-btn-decline, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* ─────── 404 PAGE ─────── */
.not-found-section {
  min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.not-found-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 65%);
  pointer-events: none;
}
.not-found-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.not-found-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.25);
  letter-spacing: -4px;
  margin-bottom: .5rem;
  display: block;
}
.not-found-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400; margin: .8rem 0 1rem;
}
.not-found-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.7; max-width: 480px;
  margin: 0 auto 2.5rem;
}
.not-found-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.not-found-links-label {
  font-family: 'Cinzel', serif; font-size: .55rem;
  letter-spacing: 2px; color: var(--dim);
  margin-bottom: 1.2rem;
}
.not-found-link-grid {
  display: flex; flex-wrap: wrap;
  gap: .6rem; justify-content: center;
}
.not-found-link-grid a {
  font-family: 'Cinzel', serif; font-size: .52rem;
  letter-spacing: 1.5px; color: var(--muted);
  border: 1px solid var(--border); padding: .5rem 1rem;
  transition: border-color .2s, color .2s;
}
.not-found-link-grid a:hover { border-color: var(--border-gold); color: var(--gold); }
@media (max-width: 480px) {
  .not-found-actions { flex-direction: column; align-items: stretch; }
  .not-found-actions .btn-primary,
  .not-found-actions .btn-outline { text-align: center; }
}

/* ─────── CUSTOM SCROLLBAR ─────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ─────── SCROLL REVEAL ─────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─────── BTN PRIMARY SHINE ─────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
}
.btn-primary:hover::after {
  animation: btn-shine .55s ease forwards;
}
@keyframes btn-shine {
  from { left: -80%; }
  to   { left: 160%; }
}

/* ─────── SECTION LABEL SHIMMER ─────── */
.section-label {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: label-shimmer 5s linear infinite;
}
@keyframes label-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ─────── HERO PULSE + DOT GRID ─────── */
@keyframes hero-pulse {
  0%, 100% { opacity: 1;  transform: translateX(-50%) scale(1);    }
  50%       { opacity: .5; transform: translateX(-50%) scale(1.18); }
}
.hero::before { animation: hero-pulse 7s ease-in-out infinite; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
}

/* ─────── HEADER SCROLLED STATE ─────── */
.site-header { transition: background .4s, border-color .4s, box-shadow .4s; }
.site-header.scrolled {
  background: rgba(8,8,8,1);
  border-bottom-color: rgba(201,168,76,.22);
  box-shadow: 0 2px 32px rgba(0,0,0,.65);
}

/* ─────── PRODUCT IMG GRADIENT ─────── */
.product-img {
  background: linear-gradient(145deg, var(--dark) 0%, #0d0d0d 55%, #131313 100%);
}

/* ─────── FULL-SUITE BUNDLE BANNER ─────── */
.product-bundle-banner {
  height: 160px;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0a05 100%);
  border-bottom: 1px solid var(--border-gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem; position: relative; overflow: hidden;
}
.product-bundle-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.product-bundle-icons {
  font-size: .75rem; color: var(--gold); letter-spacing: 6px; position: relative;
}
.product-bundle-label {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 3px;
  color: rgba(201,168,76,.7); text-transform: uppercase; position: relative;
}

/* ─────── WHY CARD ICON BOXED ─────── */
.why-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .3s, border-color .3s;
}
.why-card:hover .why-icon {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
}

/* ─────── OUR STORY ─────── */
.our-story-section { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.our-story-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.our-story-aside { display: flex; flex-direction: column; gap: 2rem; }
.our-story-pull {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.8rem;
}
.our-story-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: .8;
  color: var(--gold); opacity: .4;
  margin-bottom: .5rem;
}
.our-story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--off-white); line-height: 1.7;
  margin-bottom: 1.2rem;
}
.our-story-attr {
  font-family: 'Cinzel', serif;
  font-size: .52rem; letter-spacing: 2px;
  color: var(--dim);
}
.our-story-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--border);
}
.our-story-stat {
  text-align: center;
  padding: 1.4rem .8rem;
  border-right: 1px solid var(--border);
}
.our-story-stat:last-child { border-right: none; }
.our-story-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--gold);
  font-weight: 700; line-height: 1;
  margin-bottom: .3rem;
}
.our-story-stat-label {
  font-family: 'Cinzel', serif;
  font-size: .45rem; letter-spacing: 1.5px;
  color: var(--dim); line-height: 1.4;
}
@media (max-width: 960px) {
  .our-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
  .our-story-quote { font-size: 1.05rem; }
  .our-story-body  { font-size: .97rem; }
}

/* ─────── HOW NUMBER HOVER GLOW ─────── */
.how-step:hover .how-number { text-shadow: 0 0 24px rgba(201,168,76,.5); }

/* ─────── CTA SECTION AMBIENT GLOW ─────── */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 420px;
  background: radial-gradient(ellipse, rgba(201,168,76,.065) 0%, transparent 68%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   MOBILE IMPROVEMENTS
   ══════════════════════════════════════════════ */

/* ─────── STICKY MOBILE CTA BAR ─────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(8,8,8,.97);
  border-top: 1px solid var(--border-gold);
  padding: .75rem 1.25rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar a.mobile-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .95rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  transition: background .3s;
}
.mobile-cta-bar a.mobile-cta-btn:hover { background: var(--gold-light); color: var(--black); }

/* ─────── SWIPE HINTS ─────── */
.swipe-hint {
  display: none;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-top: 1rem;
}

/* ─────── SCROLL GRADIENT — right-edge fade on snap containers ─────── */
.snap-scroll-wrap {
  position: relative;
}
.snap-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(8,8,8,.85));
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s;
}
.snap-scroll-wrap.at-end::after { opacity: 0; }

/* ─────── 768px ─────── */
@media (max-width: 768px) {
  /* Show sticky bar */
  .mobile-cta-bar { display: block; }

  /* Push page content above sticky bar */
  .site-footer { padding-bottom: 4.5rem; }
  .cta-section  { padding-bottom: 5rem; }

  /* ── Hamburger → X ── */
  .nav-toggle {
    display: flex;
    position: relative;
    width: 44px; height: 44px;
    padding: 0; gap: 0;
    justify-content: center; align-items: center;
    background: none; border: none; cursor: pointer;
  }
  .nav-toggle span {
    position: absolute;
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform .32s ease, opacity .2s ease;
  }
  .nav-toggle span:nth-child(1) { transform: translateY(-8px); }
  .nav-toggle span:nth-child(2) { }
  .nav-toggle span:nth-child(3) { transform: translateY(8px); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

  /* ── Mobile nav drawer ── */
  .nav-primary {
    padding: 0 1.75rem 2rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-primary > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-primary > ul > li {
    border-bottom: 1px solid var(--border);
    padding: 0;
  }
  .nav-primary > ul > li:last-child { border-bottom: none; }
  .nav-primary > ul > li > a {
    display: block;
    font-size: .82rem;
    letter-spacing: 2.5px;
    color: var(--white);
    padding: 1.2rem 0;
    width: 100%;
  }
  .nav-primary > ul > li > a:active { color: var(--gold); }

  /* Get a Quote button */
  .mobile-nav-quote-btn {
    display: block;
    margin: 1.5rem 0 .5rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    border-radius: 2px;
    font-weight: 700;
  }

  /* Services dropdown indicator */
  .nav-primary .menu-item-has-children > a::after {
    content: ' +';
    font-size: .7rem;
    float: right;
    color: var(--gold);
    transition: transform .25s;
  }
  .nav-primary .menu-item-has-children.open > a::after { content: ' −'; }

  /* Sub-menu links */
  .nav-primary .sub-menu a {
    display: block;
    padding: .85rem 0;
    font-size: .75rem;
    letter-spacing: 2px;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .nav-primary .sub-menu li:last-child a { border-bottom: none; }
  .nav-primary .sub-menu a:active { color: var(--gold); }

  /* ── Hero ── */
  .hero { min-height: 88vh; padding: 5rem 1.5rem 4.5rem; }
  .hero-eyebrow { font-size: .58rem; letter-spacing: 2.5px; margin-bottom: 1.4rem; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 3rem); margin-bottom: 1.1rem; }
  .hero-sub { font-size: 1rem; letter-spacing: .5px; }
  .hero-tagline { font-size: .95rem; margin-bottom: 1.8rem; }
  .hero-trust {
    flex-direction: column;
    gap: .5rem;
    margin-top: 2rem;
    font-size: .5rem;
    letter-spacing: 1.5px;
    align-items: center;
  }

  /* ── Section ── */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.2rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .section-sub { font-size: .93rem; }

  /* ── Stats strip — bordered 2×2 ── */
  .stats-strip { padding: 0; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: none;
  }
  .stat-item {
    padding: 1.8rem 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(2n)   { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
  .stat-number { font-size: 1.9rem; }

  /* ── Products ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-img, .product-bundle-banner { height: 120px; }

  /* ── Why grid ── */
  .why-grid { grid-template-columns: 1fr; max-width: 480px; gap: 1rem; }

  /* ── Brands ── */
  .brand-logo     { padding: 0 2rem; height: 60px; }
  .brand-logo img { height: 38px; max-width: 140px; }

  /* ── Addons ── */
  .addons-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .addon-card  { padding: 1.2rem 1rem; }

  /* ── How step width ── */
  .how-step { flex: 0 0 82vw; }

  /* ── Footer ── */
  .footer-grid { padding-bottom: 2rem; }

  /* ── Swipe hints visible ── */
  .swipe-hint { display: block; }
}

/* ─────── 480px ─────── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* ── Hero ── */
  .hero { padding: 4.5rem 1rem 4rem; min-height: 90vh; }
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .hero-tagline { font-size: .9rem; max-width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    padding: 1.1rem 1rem;
    box-sizing: border-box;
  }

  /* ── Section ── */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.8rem; }
  .section-title { font-size: clamp(1.3rem, 6.5vw, 1.7rem); }
  .section-sub { font-size: .88rem; }

  /* ── Stats ── */
  .stat-number { font-size: 1.65rem; }
  .stat-label  { font-size: .48rem; }

  /* ── Products — horizontal snap scroll ── */
  .products-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .8rem;
    padding: 0 1rem 1rem;
    scrollbar-width: none;
    max-width: 100%;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .product-card {
    flex: 0 0 76vw !important;
    scroll-snap-align: center;
    transform: none !important;
    min-width: 0;
  }
  .product-card.hidden-mobile {
    display: flex !important;
    flex-direction: column;
  }
  .products-load-more { display: none !important; }

  /* ── Why grid — 1 col ── */
  .why-grid { max-width: 100%; grid-template-columns: 1fr; }

  /* ── How step ── */
  .how-step { flex: 0 0 88vw; padding: 1.5rem 1.2rem; }

  /* ── Brands ── */
  .brand-logo     { padding: 0 1.5rem; height: 52px; }
  .brand-logo img { height: 30px; max-width: 110px; }
  .brands-section { padding: 1.8rem 0; }

  /* ── Pricing ── */
  .pricing-card { flex: 0 0 87vw; }

  /* ── Bundles ── */
  .bundles-grid { gap: .8rem; }

  /* ── Addons ── */
  .addons-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .addon-card  { padding: 1.1rem .9rem; }
  .addon-name  { font-size: .9rem; }

  /* ── CTA ── */
  .cta-section { padding: 3rem 1rem 5rem; }
  .cta-section h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); margin-bottom: .8rem; }
  .cta-section p  { font-size: .95rem; margin-bottom: 1.8rem; }
  .cta-section .btn-primary { display: block; width: 100%; text-align: center; }
  .cta-trust { flex-direction: column; gap: .3rem; font-size: .48rem; }
  .cta-trust span:nth-child(2n) { display: none; } /* hide · separators */

  /* ── Footer ── */
  .site-footer { padding: 2.5rem 0 0; }

  /* ── Hide decorative separators ── */
  .section-sep { display: none; }
}

/* ═══════════════════════════════════════════════════
   HERO VIDEO BACKGROUND
   ═══════════════════════════════════════════════════ */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.55) 0%,
    rgba(8,8,8,.45) 50%,
    rgba(8,8,8,.75) 100%
  );
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════
   SERVICE PAGE VIDEO SHOWCASE
   ═══════════════════════════════════════════════════ */
.service-video-section {
  padding: 3rem 0;
  background: var(--black);
}
.service-video-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  /* Portrait container — matches 9:16 */
  width: min(420px, 92vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}
.service-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-video-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  z-index: 2;
}
.service-video-wrap--landscape {
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  .service-video-section { padding: 2rem 0; }
  .service-video-wrap { width: 85vw; }
  .service-video-wrap--landscape { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   SERVICE PAGE — SHARED COMPONENTS
   ═══════════════════════════════════════════════════ */

/* Stats strip */
.service-stats-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.service-stats-row {
  display: flex;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.service-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}
.service-stat-item:last-child { border-right: none; }
.service-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.service-stat-label {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Narrative / "What to Expect" */
.service-narrative-section { padding: 5rem 0; }
.service-narrative--bg {
  position: relative;
}
.service-narrative--bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--narrative-bg);
  background-size: cover;
  background-position: center;
  opacity: .07;
  pointer-events: none;
}
.service-narrative-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.service-narrative-label { display: block; margin-bottom: .75rem; }
.service-narrative-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.service-narrative-title em { color: var(--gold); font-style: normal; }
.service-narrative-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-narrative-body:last-of-type { margin-bottom: 0; }
.service-narrative-aside {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem;
}
/* Our Story team photo */
.our-story-photo {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.our-story-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Service narrative photo (above the aside list) */
.service-narrative-photo {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.service-narrative-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.service-aside-title {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-aside-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-aside-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.4;
}
.service-aside-list li::before {
  content: '◈';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: .18rem;
}

/* "Perfect For" event types */
.service-events-section { padding: 4.5rem 0; background: var(--dark); }
.service-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.service-event-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  transition: border-color .25s, background .25s;
}
.service-event-card:hover {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.04);
}
.service-event-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}
.service-event-name {
  font-family: 'Cinzel', serif;
  font-size: .73rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}

/* How It Works steps */
.service-steps-section { padding: 5rem 0; }
.service-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.service-step {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.service-step:last-child { border-right: none; }
.service-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
  margin-bottom: .5rem;
}
.service-step-title {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.service-step-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Testimonial */
.service-testimonial-section {
  padding: 5rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-testimonial-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.service-testimonial-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .2em;
  margin-bottom: 1.5rem;
}
.service-testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}
.service-testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: -.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.service-testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-testimonial-venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--dim);
  margin-top: .3rem;
}

/* Service FAQ */
.service-faq-section { padding: 5rem 0; }
.service-faq { max-width: 780px; margin: 2.5rem auto 0; }
.service-faq .faq-item {
  border-bottom: 1px solid var(--border);
}
.service-faq .faq-q {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color .2s;
}
.service-faq .faq-q:hover { color: var(--gold); }
.service-faq .faq-q::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  position: absolute;
  right: 0;
  transition: transform .25s;
}
.service-faq details[open] .faq-q::after { transform: rotate(45deg); }
.service-faq .faq-a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 0 1.25rem;
}

/* Safety callout (Sparklers page) */
.service-safety-section { padding: 4rem 0; }
.service-safety-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,.25);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.service-safety-title {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-safety-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.service-safety-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}
.service-safety-list li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: .85rem;
}

/* Responsive — service pages */
@media (max-width: 900px) {
  .service-narrative-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .service-step:nth-child(2) { border-right: none; }
  .service-step:nth-child(1),
  .service-step:nth-child(2) { border-bottom: 1px solid var(--border); }
  .service-events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-stats-row { flex-direction: column; gap: 1.5rem; }
  .service-stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
  .service-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .service-steps-grid { grid-template-columns: 1fr; }
  .service-step { border-right: none; border-bottom: 1px solid var(--border); }
  .service-step:last-child { border-bottom: none; }
  .service-events-grid { grid-template-columns: 1fr 1fr; }
  .service-narrative-section,
  .service-events-section,
  .service-steps-section,
  .service-testimonial-section,
  .service-faq-section { padding: 3rem 0; }
}

/* ═══════════════════════════════════════════════════
   URGENCY BANNER
   ═══════════════════════════════════════════════════ */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #0c0c0c 0%, #1a1200 50%, #0c0c0c 100%);
  border-bottom: 1px solid rgba(201,168,76,.3);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.urgency-banner.visible { transform: translateY(0); }
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  padding: .5rem 3rem .5rem 1.25rem;
  min-height: 38px;
  position: relative;
}
.urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.urgency-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--white);
}
.urgency-cta {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.5);
  padding: .2rem .65rem;
  border-radius: 2px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.urgency-cta:hover { background: var(--gold); color: var(--black); }
.urgency-close {
  position: absolute;
  right: .6rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: .2rem .4rem;
  transition: color .2s;
}
.urgency-close:hover { color: var(--white); }
@media (max-width: 480px) {
  .urgency-inner { padding: .5rem 2.5rem .5rem 1rem; gap: .4rem .5rem; }
  .urgency-text  { font-size: .82rem; }
  .urgency-cta   { font-size: .64rem; padding: .18rem .5rem; }
}
/* When banner is visible, push site header down */
.has-banner .site-header { top: var(--banner-h, 38px); }

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute;
  left: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: .8rem;
  white-space: nowrap;
  padding: .35rem .7rem;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 480px) {
  .whatsapp-btn { bottom: 5.5rem; left: 1rem; width: 46px; height: 46px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }
}

/* ═══════════════════════════════════════════════════
   MOBILE POPUP
   ═══════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 9990;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.popup-modal {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 16px 16px 0 0;
  padding: 2.5rem 1.75rem 2.25rem;
  width: 100%;
  position: relative;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.popup-overlay.active .popup-modal { transform: translateY(0); }
.popup-modal::before {
  content: '';
  display: block;
  width: 40px; height: 4px;
  background: rgba(201,168,76,.3);
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.popup-close:hover { background: rgba(201,168,76,.15); color: var(--white); }
.popup-modal .section-label { display: block; margin-bottom: .6rem; }
.popup-modal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.popup-modal h2 em { color: var(--gold); font-style: normal; }
.popup-modal p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.popup-modal .btn-primary { display: block; text-align: center; width: 100%; margin-bottom: .9rem; }
.popup-fine {
  font-size: .78rem !important;
  text-align: center;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════
   AS SEEN AT — VENUE STRIP
   ═══════════════════════════════════════════════════ */
.venues-section {
  padding: 3.5rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.venues-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.venues-track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.venues-track {
  display: flex;
  gap: 0;
  animation: venue-scroll 60s linear infinite;
  width: max-content;
}
.venues-track:hover { animation-play-state: paused; }
@keyframes venue-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.venue-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.4rem;
  margin: 0 .5rem;
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 3px;
  white-space: nowrap;
  cursor: default;
  transition: border-color .25s, background .25s;
  background: rgba(201,168,76,.03);
}
.venue-pill:hover {
  border-color: rgba(201,168,76,.45);
  background: rgba(201,168,76,.07);
}
.venue-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .55;
  flex-shrink: 0;
}
.venue-pill-name {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
}
.venue-pill:hover .venue-pill-name { color: var(--white); }
@media (max-width: 768px) {
  .venues-section { padding: 2.5rem 0; }
  .venues-track { animation-duration: 45s; }
}

/* ── Service Areas Strip ── */
.service-areas-section {
  padding: 3rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-areas-section .section-header { margin-bottom: 1.8rem; }
.service-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.service-area-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.service-area-link::before {
  content: '◈';
  color: var(--gold);
  font-size: .65rem;
  opacity: .7;
}
.service-area-link:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201,168,76,.05);
}
