/* =========================================
   PROVEN MEMORIES — Dark Brand Design System
   Always dark: Black · Charcoal · Gold · White
   ========================================= */

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

/* ---------- DESIGN TOKENS ---------- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Work Sans', 'Helvetica Neue', sans-serif;

  --radius-sm:   0.25rem;
  --radius-md:   0.375rem;
  --radius-lg:   0.5rem;
  --radius-xl:   0.75rem;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* ===== WHITE + BLACK PALETTE ===== */
  --bg-primary:   #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-subtle:    #eeeeee;
  --bg-black:     #0a0a0a;   /* hero, CTA banner, footer only */

  --border:       #e0e0e0;
  --border-dark:  #cccccc;

  --text-primary:   #0a0a0a;
  --text-secondary: #222222;
  --text-muted:     #444444;
  --text-faint:     #666666;
  /* white/light — only used inside black sections (hero, footer, events, CTA) */
  --text-white:     #f5f5f5;
  --text-light:     #dddddd;

  /* Background aliases */
  --bg-dark:      #0a0a0a;
  --bg-charcoal:  #111111;
  --bg-graphite:  #1a1a1a;
  --bg-white:     #ffffff;
  --bg-off-white: #f7f7f7;
  --bg-light:     #eeeeee;
  --text-black:   #0a0a0a;
  --text-dark:    #222222;
  --text-gray:    #444444;
  --border-light: #e0e0e0;

  /* Accent on white = black; overridden to white inside dark sections */
  --gold:         #0a0a0a;
  --gold-light:   #222222;
  --gold-hover:   #333333;
  --gold-bg:      rgba(0,0,0,0.05);

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-dark-sm: 0 1px 4px rgba(0,0,0,0.5);
  --shadow-dark-md: 0 4px 20px rgba(0,0,0,0.6);
  --shadow-dark-lg: 0 12px 48px rgba(0,0,0,0.7);
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Force dark mode always — override system preference */
  color-scheme: dark;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.1; color: var(--text-primary); }
p, li, figcaption { text-wrap: pretty; max-width: 70ch; }
a { color: inherit; }

::selection { background: rgba(255, 255, 255, 0.2); color: var(--text-white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; color: inherit; }

/* ── UNIVERSAL TEXT RESET: everything black on white ── */
p, span, li, h1, h2, h3, h4, h5, h6, label, a {
  color: #0a0a0a;
}
/* Restore white text ONLY inside known dark sections */
.hero p, .hero span, .hero h1, .hero h2, .hero h3, .hero li,
.events p, .events span, .events h2, .events h3, .events li,
.cta-banner p, .cta-banner span, .cta-banner h2, .cta-banner h3,
.site-footer p, .site-footer span, .site-footer h2, .site-footer h3,
.site-footer li, .site-footer a,
.page-hero p, .page-hero span, .page-hero h1, .page-hero h2,
.pricing-section .pricing-card p,
.pricing-section .pricing-card span,
.pricing-section .pricing-card li,
.pricing-reminder-box p, .pricing-reminder-box span, .pricing-reminder-box a,
.addons-section .addon-card p, .addons-section .addon-card span,
.addons-section .addon-card h3 {
  color: #f5f5f5;
}
/* Nav links stay their own color */
.nav-links a { color: #111111; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: #000000; }
/* Muted helper text */
.text-muted, .section-label { color: #555555; }
/* Footer specific */
.site-footer .footer-brand-tagline { color: #888888; }
.site-footer .footer-col ul a { color: #aaaaaa; }
.footer-bottom p { color: #555555; }


/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}
.container--narrow { max-width: var(--content-default); }
.text-center { text-align: center; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }

.nav-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0a0a0a;
}

.nav-logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #555555;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: #0a0a0a; }

.nav-cta {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-6);
  background: #0a0a0a;
  color: #ffffff;
  border: 2px solid #0a0a0a;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}

.nav-cta:hover { background: #333333; border-color: #333333; }

.nav-controls { display: flex; align-items: center; gap: var(--space-3); }

.theme-toggle { display: none; } /* Dark only — no toggle needed */

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-light);
  background: transparent;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid #e0e0e0;
  display: block;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav a:hover { color: #000000; background: #f7f7f7; }

.mobile-nav-cta {
  background: #0a0a0a !important;
  color: #ffffff !important;
  border-bottom: none !important;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-8);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

.btn-white {
  background: var(--text-white);
  color: var(--bg-black);
  border-color: var(--text-white);
}
.btn-white:hover { background: #e0e0e0; border-color: #e0e0e0; }

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--text-white); background: rgba(255,255,255,0.08); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-bg); }

.btn-lg { font-size: var(--text-sm); padding: var(--space-4) var(--space-10); }

/* ---------- SECTION LABELS ---------- */
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: #0a0a0a;
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-base);
  color: #333333;
  max-width: 58ch;
  line-height: 1.75;
}

/* ---------- SECTIONS: alternating BG for visibility ---------- */
section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }

/* Hero → black */
/* Trust strip → dark */
/* Includes → charcoal */
/* Pricing → black */
/* Events → dark */
/* Testimonials → charcoal */
/* CTA → black with gold border */
/* Footer → black */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg-black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.hero-bg-pattern { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-right { display: none; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.hero-eyebrow span { display: inline-block; width: 24px; height: 1px; background: var(--gold); }

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
}

.hero-heading em { font-style: italic; color: var(--gold); display: block; }
.hero-heading strong { font-weight: 600; display: block; }

.hero-sub {
  font-size: var(--text-base);
  color: var(--text-light);
  max-width: 44ch;
  margin-bottom: var(--space-8);
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }

.hero-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: var(--space-6);
}

/* Hero right monogram card */
.hero-right { display: flex; justify-content: center; align-items: center; }

.hero-monogram-card {
  position: relative;
  width: 300px;
  height: 360px;
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  background: rgba(200,150,42,0.04);
}

.hero-monogram-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200,150,42,0.12);
  pointer-events: none;
}

.corner-tl, .corner-br {
  position: absolute;
  width: 36px; height: 36px;
}
.corner-tl { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.corner-br { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }

.hero-starting-price { text-align: center; }
.hero-starting-label { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: var(--space-1); }
.hero-price-number { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 300; color: var(--text-white); line-height: 1; }
.hero-price-detail { font-size: var(--text-xs); letter-spacing: 0.1em; color: var(--text-muted); margin-top: var(--space-2); }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-5);
}

.trust-strip-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-5) var(--space-10); }

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---------- INCLUDES — Charcoal bg, gold numbers ---------- */
.includes { background: var(--bg-primary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: var(--space-10);
}

.include-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-6);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.include-card:hover { background: var(--bg-subtle); }

.include-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.include-card h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
}

.include-card p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.65;
  max-width: none;
}

/* ---------- PRICING — Black bg ---------- */
.pricing-section { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.pricing-card {
  max-width: 820px;
  margin: var(--space-10) auto 0;
  border: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 640px) { .pricing-card { grid-template-columns: 1fr; } }

.pricing-card-price {
  padding: var(--space-10) var(--space-8);
  border-right: 1px solid rgba(200,150,42,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
@media (max-width: 640px) { .pricing-card-price { border-right: none; border-bottom: 1px solid rgba(200,150,42,0.2); } }

.pricing-from { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.pricing-amount { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 300; color: var(--text-white); line-height: 1; }
.pricing-duration { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.pricing-note { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.65; max-width: none; }

.pricing-card-features {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pricing-card-features ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-light);
  max-width: none;
}

.feat-dash { width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ---------- EVENTS — Dark bg with charcoal tiles ---------- */
.events { background: var(--bg-black); border-top: 1px solid var(--border); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: var(--space-10);
}

@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr 1fr; } }

.event-tile {
  padding: var(--space-8) var(--space-6);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: background var(--transition);
}
.event-tile:hover { background: var(--bg-charcoal); }

.event-icon { font-size: 2rem; line-height: 1; }

.event-name {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
}

/* ---------- TESTIMONIALS — Charcoal bg ---------- */
.testimonials { background: var(--bg-charcoal); border-top: 1px solid var(--border); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.testimonial-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }

.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: var(--text-base); }

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.5;
}

.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }

.testimonial-avatar {
  width: 38px; height: 38px;
  background: var(--bg-graphite);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-xs);
  color: var(--gold); letter-spacing: 0.05em; flex-shrink: 0;
}

.testimonial-name { font-size: var(--text-sm); font-weight: 700; color: var(--text-white); }
.testimonial-event { font-size: var(--text-xs); color: var(--text-muted); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--bg-black);
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-banner .section-title { margin-inline: auto; }
.cta-banner .section-sub { margin-inline: auto; text-align: center; margin-bottom: var(--space-8); }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-black);
  border-top: 2px solid var(--gold);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-12);
}

@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); } }

.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-brand-tagline { font-size: var(--text-sm); color: var(--text-muted); font-style: italic; line-height: 1.7; }

.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-2); }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }

.footer-col ul a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text-white); }

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); letter-spacing: 0.06em; color: var(--text-faint); }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  background: var(--bg-black);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: center;
  border-bottom: 2px solid var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.page-hero p { font-size: var(--text-base); color: var(--text-light); margin-inline: auto; text-align: center; }

.page-hero .pricing-hero-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--gold);
  line-height: 1;
  margin-block: var(--space-4);
}

/* ---------- PRICING PAGE SPECIFICS ---------- */
.what-included { background: var(--bg-charcoal); border-top: 1px solid var(--border); }

.included-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: var(--space-10);
  list-style: none;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--bg-charcoal);
  transition: background var(--transition);
  max-width: none;
}
.included-item:hover { background: var(--bg-graphite); }

.included-item-dash { width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; margin-top: 10px; }

.included-item-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}
.included-item-text span { font-size: var(--text-sm); color: var(--text-light); }

.extra-time { background: var(--bg-black); border-top: 1px solid var(--border); }

.extra-time-card {
  max-width: 680px;
  margin: var(--space-8) auto 0;
  border: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-10);
}
@media (max-width: 560px) { .extra-time-card { grid-template-columns: 1fr; } }

.extra-time-detail h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: var(--space-3);
}
.extra-time-detail p { font-size: var(--text-sm); color: var(--text-light); line-height: 1.7; }
.extra-time-cta { text-align: center; }
.extra-time-cta p { font-size: var(--text-xs); color: var(--text-faint); margin-top: var(--space-3); }

.addons-section { background: #ffffff; border-top: 1px solid #e0e0e0; }

.addon-contact-card {
  max-width: 640px;
  margin: var(--space-8) auto 0;
  background: #0a0a0a;
  border: 1px solid #333333;
  padding: var(--space-10) var(--space-12);
  text-align: center;
}

.addon-contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: #f5f5f5 !important;
  margin-bottom: var(--space-3);
}
.addon-contact-card p { font-size: var(--text-sm); color: #cccccc !important; margin-bottom: var(--space-6); max-width: 44ch; margin-inline: auto; }

.addon-examples { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2); margin-bottom: var(--space-8); }

.addon-tag {
  background: transparent;
  border: 1px solid #555555;
  color: #cccccc !important;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-4);
}

.faq-section { background: #ffffff; border-top: 1px solid #e0e0e0; }

.faq-list {
  max-width: 680px;
  margin: var(--space-10) auto 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.faq-item { background: #ffffff; border-bottom: 1px solid #e0e0e0; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #0a0a0a;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: #f7f7f7; }
.faq-question svg { flex-shrink: 0; color: #0a0a0a; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: var(--space-4) var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: #333333;
  line-height: 1.75;
  border-top: 1px solid #e0e0e0;
  background: #ffffff;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); background: #ffffff; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: var(--space-10); } }

.contact-info { display: flex; flex-direction: column; gap: var(--space-8); }

.contact-detail { display: flex; gap: var(--space-4); align-items: flex-start; }

.contact-detail-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border: 1px solid #e0e0e0;
  background: #f7f7f7;
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
}

.contact-detail h3 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact-detail p, .contact-detail a {
  font-size: var(--text-base);
  color: #0a0a0a;
  text-decoration: none;
}
.contact-detail a:hover { color: #333333; }

.pricing-reminder-box {
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  padding: var(--space-6);
}
.pricing-reminder-box .label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f5f5f5; margin-bottom: var(--space-2); }
.pricing-reminder-box p { font-size: var(--text-sm); color: #cccccc; }
.pricing-reminder-box a { display: inline-block; margin-top: var(--space-3); font-size: var(--text-sm); color: #ffffff; font-weight: 600; text-decoration: none; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border: 1px solid #e0e0e0;
  padding: var(--space-10);
  background: #f7f7f7;
}

.contact-form h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300; color: #0a0a0a; }
.contact-form > p { font-size: var(--text-sm); color: #555555; }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-group label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text-white);
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

/* Fix dropdown option colors */
.form-group select option { background: var(--bg-dark); color: var(--text-white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-submit {
  width: 100%;
  padding: var(--space-4);
  background: #0a0a0a;
  color: #ffffff !important;
  border: 2px solid #0a0a0a;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.form-submit:hover { background: #333333; border-color: #333333; }

.form-note { font-size: var(--text-xs); color: var(--text-faint); text-align: center; }
.form-note a { color: var(--gold); }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: none; }




/* ============================================
   GLOBAL OVERRIDES — white bg, black text
   ============================================ */

/* All sections default white */
section { background: var(--bg-primary); }

/* Hero stays black */
.hero { background: var(--bg-black) !important; }
.hero .section-label,
.hero .hero-eyebrow,
.hero .hero-headline,
.hero .hero-sub,
.hero p,
.hero h1, .hero h2 { color: var(--text-white); }

/* Events section stays black */
.events { background: var(--bg-black) !important; border-top: 1px solid #222; }
.events .section-label,
.events .section-title,
.events .section-sub,
.events h2, .events h3, .events p { color: var(--text-white); }
.events .event-tile { background: #1a1a1a; color: var(--text-white); }
.events .event-tile:hover { background: #222222; }
.events .event-tile h3,
.events .event-tile p { color: var(--text-white); }
.events .section-label::before,
.events .section-label::after { background: var(--text-white); }

/* CTA banner stays black */
.cta-banner { background: var(--bg-black) !important; }
.cta-banner .section-title,
.cta-banner .section-sub,
.cta-banner p, .cta-banner h2 { color: var(--text-white); }

/* Footer stays black */
.site-footer { background: var(--bg-black) !important; color: var(--text-white); }
.site-footer * { color: inherit; }
.site-footer a { color: var(--text-light); }
.site-footer a:hover { color: var(--text-white); }
.footer-tagline,
.footer-brand-tagline { color: var(--text-muted); }

/* Page hero (pricing / contact pages) stays black */
.page-hero { background: var(--bg-black) !important; }
.page-hero .section-title,
.page-hero .section-sub,
.page-hero h1, .page-hero p { color: var(--text-white); }

/* All other sections — black text on white */
.trust-strip,
.includes,
.pricing-section,
.what-included,
.extra-time,
.addons-section,
.faq-section,
.contact-section { background: var(--bg-primary); }

.trust-strip .trust-item { color: #444444; }

.includes .section-title,
.includes h2, .includes h3 { color: var(--text-primary); }
.includes .section-sub,
.includes p { color: #333333; }
.includes .section-label { color: var(--text-muted); }
.includes .section-label::before,
.includes .section-label::after { background: var(--text-primary); }
.includes .include-card { background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-primary); }
.includes .include-card:hover { background: var(--bg-subtle); }
.includes .include-icon,
.includes .include-title { color: var(--text-primary); }
.includes .include-desc { color: var(--text-muted); }

.pricing-section { background: var(--bg-secondary) !important; }
.pricing-section .section-title,
.pricing-section h2 { color: var(--text-primary); }
.pricing-section .section-sub,
.pricing-section p { color: var(--text-secondary); }
.pricing-section .section-label { color: var(--text-muted); }
.pricing-section .section-label::before,
.pricing-section .section-label::after { background: var(--text-primary); }
.pricing-section .pricing-card { background: var(--bg-black); color: var(--text-white); }
.pricing-section .pricing-card * { color: var(--text-white); }
.pricing-section .feat-dash { background: var(--text-white); }

.what-included .section-title,
.what-included h2 { color: var(--text-primary); }
.what-included .section-sub,
.what-included p { color: #0a0a0a; }
.what-included .section-label { color: var(--text-muted); }
.what-included .section-label::before,
.what-included .section-label::after { background: var(--text-primary); }
.what-included .included-item { background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-primary); }
.what-included .included-item:hover { background: var(--bg-subtle); }
.what-included .included-item-dash { background: var(--text-primary); }
.what-included .included-item-title { color: var(--text-primary); }
.what-included .included-item-desc { color: var(--text-muted); }

.extra-time .section-title,
.extra-time h2 { color: var(--text-primary); }
.extra-time .section-sub,
.extra-time p { color: #333333; }
.extra-time .section-label { color: var(--text-muted); }
.extra-time .section-label::before,
.extra-time .section-label::after { background: var(--text-primary); }

.addons-section .section-title,
.addons-section h2 { color: var(--text-primary); }
.addons-section .section-sub,
.addons-section p { color: #333333; }
.addons-section .section-label { color: var(--text-muted); }
.addons-section .section-label::before,
.addons-section .section-label::after { background: var(--text-primary); }
.addons-section .addon-card { background: var(--bg-black); color: var(--text-white); }
.addons-section .addon-card * { color: var(--text-white); }

.faq-section { background: var(--bg-secondary) !important; }
.faq-section .section-title,
.faq-section h2 { color: var(--text-primary); }
.faq-section .section-label { color: var(--text-muted); }
.faq-section .section-label::before,
.faq-section .section-label::after { background: var(--text-primary); }
.faq-section .faq-item { border-bottom-color: var(--border); }
.faq-section .faq-q { color: var(--text-primary); }
.faq-section .faq-a { color: var(--text-secondary); }
.faq-section .faq-icon { color: var(--text-primary); }

.contact-section .section-title,
.contact-section h1, .contact-section h2 { color: var(--text-primary); }
.contact-section .section-sub,
.contact-section p { color: var(--text-secondary); }
.contact-section .section-label { color: var(--text-muted); }
.contact-section .section-label::before,
.contact-section .section-label::after { background: var(--text-primary); }
.contact-section label { color: var(--text-secondary); }
.contact-section input,
.contact-section select,
.contact-section textarea {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-primary);
}
.contact-section input::placeholder,
.contact-section textarea::placeholder { color: var(--text-faint); }
.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
  border-color: var(--text-primary);
  background: var(--bg-primary);
  outline: none;
}
.contact-section .contact-info-card { background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-primary); }
.contact-section .contact-detail-label { color: #666666; }
.contact-section .contact-detail-value { color: #0a0a0a; }

/* Btn-gold now = black button on white bg */
.btn-gold {
  background: var(--bg-black) !important;
  color: #ffffff !important;
  border-color: var(--bg-black) !important;
}
.btn-gold:hover {
  background: #333333 !important;
  border-color: #333333 !important;
}

/* Monogram card in hero — keep black bg */
.hero-monogram-card { background: transparent; border-color: rgba(255,255,255,0.2); }

/* Section label lines on white sections */
.section-label::before,
.section-label::after { background: var(--text-muted); }

/* Hero eyebrow lines */
.hero-eyebrow span { background: var(--text-white); }

/* ============================================
   BLACK SECTION TEXT — force white explicitly
   ============================================ */
.hero,
.hero *:not(.hero-monogram-card .hero-price-number):not(button) { color: #f5f5f5; }
.hero .hero-sub,
.hero .hero-eyebrow { color: #cccccc; }
.hero-price-detail { color: #888888 !important; }
.hero-monogram-card { color: #f5f5f5; }

.events,
.events * { color: #f5f5f5; }
.events .section-label { color: #aaaaaa !important; }
.events .event-tile p { color: #cccccc !important; }

.cta-banner,
.cta-banner * { color: #f5f5f5; }

.site-footer,
.site-footer * { color: #f5f5f5; }
.site-footer .footer-brand-tagline { color: #888888; }
.site-footer .footer-col ul a { color: #aaaaaa; }
.site-footer .footer-col ul a:hover { color: #f5f5f5; }
.site-footer .footer-bottom p { color: #555555; }

.page-hero,
.page-hero * { color: #f5f5f5; }
.page-hero p { color: #cccccc !important; }

.pricing-reminder-box,
.pricing-reminder-box * { color: #f5f5f5; }
.pricing-reminder-box p { color: #cccccc !important; }

.pricing-section .pricing-card,
.pricing-section .pricing-card * { color: #f5f5f5; }
.pricing-section .pricing-card .pricing-duration,
.pricing-section .pricing-card .pricing-note { color: #aaaaaa !important; }

.addons-section .addon-card,
.addons-section .addon-card * { color: #f5f5f5; }

/* ── FINAL CATCH-ALL: everything in white sections is black ── */
/* White sections — black text */
.what-included *, .extra-time *, .faq-section *,
.includes *, .contact-section *, .trust-strip * { color: #0a0a0a; }
/* Addon section — white bg, but the card inside stays dark */
.addons-section .section-title,
.addons-section .section-label,
.addons-section h2 { color: #0a0a0a; }
.addon-contact-card, .addon-contact-card * { color: #f5f5f5 !important; }
.addon-tag { color: #cccccc !important; }
.pricing-section .pricing-card * { color: #f5f5f5; }
/* Secondary/muted text */
.what-included .included-item span,
.includes .include-desc,
.extra-time p,
.faq-section .faq-answer { color: #333333 !important; }
.faq-section .faq-question { color: #0a0a0a !important; }
.extra-time h2, .extra-time h3 { color: #0a0a0a !important; }
