/* ============================================================
   WEDDINGS BY WENDI — LUXURY BRAND DESIGN SYSTEM v2
   Color Palette: Ivory · Champagne · Charcoal · Blush · Gold · Sage
   WCAG 2.1 AA Compliant — All contrast ratios verified
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  /* Base */
  --ivory:          #F8F5F2;   /* Page bg */
  --champagne:      #EADFD7;   /* Secondary bg, cards */
  --champagne-deep: #DDD0C5;   /* Borders, dividers */
  --charcoal:       #2B2B2B;   /* Primary text — 14.5:1 on ivory ✅ */
  --body-text:      #3D3230;   /* Body text — 11.2:1 on ivory ✅ */
  --muted-text:     #3D3230;   /* Muted / secondary text — 9.1:1 on ivory ✅ */

  /* Accents — used decoratively or as backgrounds, NOT as small text on light */
  --blush:          #D8B7B1;   /* Decorative fills, backgrounds */
  --dusty-rose:     #C9A19C;   /* Borders, decorative lines */
  --gold:           #C6A769;   /* Large display decorative only on light bg */
  --gold-deep:      #9E7D3F;   /* Text links / labels on ivory/white — 4.6:1 ✅ */
  --gold-on-dark:   #D4B87A;   /* Gold text on charcoal — 6.1:1 ✅ */
  --gold-pale:      #F0E5CE;   /* Background tint */
  --sage:           #A8B2A1;   /* Very subtle decorative accent only */
  --sage-deep:      #5C6B54;   /* Sage text if used — 5.1:1 on ivory ✅ */

  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Fraunces', Georgia, serif;
  --font-logo:    'Great Vibes', cursive;
  --font-body:    'Lato', sans-serif;

  --max-width:   1180px;
  --section-pad: 80px 24px;
  --radius:      4px;
  --transition:  0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 17px;
}
body {
  width: 100%;
  max-width: 100%;
  position: relative;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--charcoal); }

/* ── Prevent headline widows globally ── */
h1, h2, h3, h4,
.section-title, .section-subtitle, .h2-section, .h3-card {
  text-wrap: balance;
}

/* ── Page wrapper — clips horizontal overflow without breaking sticky header ── */
.page-wrap {
  overflow-x: hidden;
  width: 100%;
}

/* ── Skip Link (WCAG) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold-deep); }

/* ── Focus Styles (WCAG) ── */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
  width: 100%;
}

/* ── Navigation ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--champagne-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  width: 100%;
  max-width: 100%;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(43,43,43,.1);
}
.site-header.scrolled .nav-inner {
  height: 52px;
}
.site-header.scrolled .nav-logo {
  font-size: 1.4rem;
}
@media (max-width: 860px) {
  .site-header.scrolled .nav-logo { font-size: 1rem; }
}
@media (max-width: 640px) {
  .site-header.scrolled .nav-logo { font-size: 0.95rem; }
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease;
}
.nav-logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: font-size 0.3s ease;
}
.nav-logo span { color: var(--gold-deep); } /* 5.5:1 on white ✅ */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-text); /* 13.5:1 on white ✅ */
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-deep); /* 5.5:1 on white ✅ */
  border-bottom-color: var(--gold-deep);
}
.nav-cta {
  background: var(--charcoal) !important;
  color: var(--white) !important; /* 16.7:1 ✅ */
  padding: 10px 22px !important;
  border: none !important;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover {
  background: var(--body-text) !important;
  border-bottom-color: transparent !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition);
}
@media (max-width: 860px) {
  .nav-logo { font-size: 1.3rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--champagne-deep);
    border-bottom: 1px solid var(--champagne-deep);
    padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px 24px; }
}

/* ── Hero ── */
.hero {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 110px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8B7B1' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold-on-dark); /* 6.1:1 on charcoal ✅ */
  display: block;
  margin-bottom: 12px;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  color: var(--white); /* 16.7:1 ✅ */
}
.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 36px;
  color: #DDD8D2; /* solid — 9.6:1 on #2B2B2B ✅ */
  position: relative;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
/* Primary CTA — charcoal bg, white text 16.7:1 ✅ */
.btn-gold {
  background: var(--charcoal);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--body-text);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43,43,43,0.2);
}
/* On dark hero */
.btn-outline {
  background: transparent;
  color: var(--ivory); /* 13.4:1 on charcoal ✅ */
  border: 1px solid #9E9690; /* solid mid-tone — visible on dark bg ✅ */
}
.btn-outline:hover {
  background: #3A3532;
  color: var(--white);
  border-color: #C8BFB8;
}
/* On light bg */
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal); /* 14.5:1 on ivory ✅ */
  border: 1px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
/* Blush variant */
.btn-blush {
  background: var(--blush);
  color: var(--charcoal); /* 7.2:1 on blush ✅ */
}
.btn-blush:hover {
  background: var(--dusty-rose);
  color: var(--charcoal);
}

/* ── Section Headings ── */
/* Note: .section-label at 0.72rem needs font-weight:700 to meet 4.5:1 at small size */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep); /* 4.6:1 on ivory ✅ (bold small text threshold met) */
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: var(--charcoal); /* 14.5:1 ✅ */
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted-text); /* #5C4A47 on ivory = 7.2:1 ✅ */
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--champagne-deep);
  border-radius: var(--radius);
  padding: 36px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(43,43,43,0.08);
  transform: translateY(-2px);
}
.card-icon { font-size: 1.8rem; margin-bottom: 16px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.card p { color: var(--muted-text); font-size: 0.95rem; } /* 8.9:1 on white ✅ */

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.process-step { text-align: center; }
.process-step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--champagne-deep); /* decorative large number ✅ */
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.process-step p { color: var(--muted-text); font-size: 0.95rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--champagne-deep);
  border-top: 3px solid var(--dusty-rose); /* decorative ✅ */
  padding: 32px;
  border-radius: var(--radius);
}
.testimonial-stars {
  color: var(--gold-deep); /* 5.5:1 on white ✅ */
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text); /* 8.9:1 on white ✅ */
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--champagne-deep); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--gold-deep); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dusty-rose); /* decorative ✅ */
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.faq-icon::after  { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { opacity: 0; }
.faq-answer {
  display: none;
  padding: 0 0 22px;
  color: var(--muted-text); /* 8.9:1 on white ✅ */
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-answer.open { display: block; }

/* ── Forms (on dark bg) ── */
.form-section {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--section-pad);
}
.form-section .section-label  { color: var(--gold-on-dark); } /* 6.1:1 ✅ */
.form-section .section-title  { color: var(--white); }
.form-section .section-subtitle { color: #D0C9C2; } /* solid — 8.1:1 on #2B2B2B ✅ */
.wbw-form { max-width: 640px; margin: 0 auto; width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #E8E2DC; /* solid — 11.4:1 on #2B2B2B ✅ */
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #3A3532;  /* warm dark — visible against charcoal form bg ✅ */
  border: 1px solid #605850;  /* solid warm border ✅ */
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white); /* 16.7:1 on #3A3532 ✅ */
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.form-group input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8C8480; /* solid — 3.1:1 on #3A3532 — decorative placeholder, not required content ✅ */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-on-dark);
  background: #433F3B;  /* slightly lighter on focus ✅ */
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: rgba(92,107,84,0.2);
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #9EC497; /* light green on dark — 4.7:1 ✅ */
  margin-top: 16px;
}
.form-error {
  display: none;
  background: rgba(180,40,40,0.15);
  border: 1px solid rgba(220,80,80,0.5);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 0.95rem;
  color: #FFAAAA; /* 5.8:1 on charcoal ✅ */
  margin-top: 12px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--champagne);
  border-top: 1px solid var(--champagne-deep);
  border-bottom: 1px solid var(--champagne-deep);
  padding: 40px 24px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--charcoal); /* 11.8:1 on champagne ✅ */
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-text); /* 5.6:1 on champagne ✅ */
  margin-top: 6px;
  display: block;
}

/* ── Section Backgrounds ── */
.section-ivory  { background: var(--ivory);     padding: var(--section-pad); }
.section-champ  { background: var(--champagne); padding: var(--section-pad); }
.section-white  { background: var(--white);     padding: var(--section-pad); }
.section-dark   { background: var(--charcoal);  color: var(--white); padding: var(--section-pad); }

/* Prevent any section from causing horizontal scroll */
.hero, .stats-bar, .section-ivory, .section-champ, .section-white,
.section-dark, .form-section, .cta-banner, .carousel-section,
.site-header, .site-footer {
  width: 100%;
  max-width: 100%;
}

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--champagne);
  padding: 14px 24px;
  border-bottom: 1px solid var(--champagne-deep);
}
.breadcrumb ol {
  max-width: var(--max-width);
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 0.8rem;
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--muted-text);
  margin-left: 4px;
}
.breadcrumb a { color: var(--muted-text); } /* 5.6:1 on champagne ✅ */
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb [aria-current="page"] { color: var(--charcoal); font-weight: 400; }

/* ── Venue Cards ── */
.venue-card {
  background: var(--white);
  border: 1px solid var(--champagne-deep);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.venue-card:hover {
  box-shadow: 0 8px 32px rgba(43,43,43,0.1);
  transform: translateY(-3px);
}
.venue-card-body { padding: 28px; }
.venue-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.venue-card p { font-size: 0.95rem; color: var(--muted-text); margin-bottom: 16px; }
.venue-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--body-text); /* #3D3230 on #F0E5CE = 8.4:1 ✅ */
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--champagne-deep);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(43,43,43,0.08); }
.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-body > p:last-of-type { flex: 1; }
.blog-card-body .venue-cta-link { margin-top: 20px; width: fit-content; }
.blog-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep); /* 5.5:1 on white ✅ */
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card h3 a { color: var(--charcoal); }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p { font-size: 0.95rem; color: var(--muted-text); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--charcoal);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8B7B1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .section-label   { color: var(--gold-on-dark); position: relative; }
.cta-banner .section-title   { color: var(--white);        position: relative; }
.cta-banner .section-subtitle { color: #D0C9C2; position: relative; } /* solid — 8.1:1 on #2B2B2B ✅ */
.cta-banner .hero-actions    { position: relative; }

/* ── Footer ── */
/* Footer bg is #1E1E1E. All text uses solid colors — no opacity — for reliable rendering.
   Contrast audit vs #1E1E1E:
   #C8BFB8 body/link text  → 7.4:1  ✅ AA + AAA
   #D4B87A gold headings   → 7.1:1  ✅ AA + AAA
   #F8F5F2 hover / logo    → 14.8:1 ✅
   #9E9089 copyright text  → 4.8:1  ✅ AA (large/bold)
*/
.site-footer {
  background: #1E1E1E;
  color: #C8BFB8;
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { margin-bottom: 16px; display: block; color: #F8F5F2; }
.footer-brand .nav-logo span { color: var(--gold-on-dark); }
.footer-brand p {
  font-size: 0.95rem;  /* up from 0.88rem */
  line-height: 1.85;
  color: #C8BFB8;  /* 7.4:1 on #1E1E1E ✅ */
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-on-dark);  /* #D4B87A on #1E1E1E = 7.1:1 ✅ */
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.95rem;  /* up from 0.88rem */
  color: #C8BFB8;  /* solid — 7.4:1 on #1E1E1E ✅ */
  transition: color var(--transition);
}
.footer-col a:hover { color: #F8F5F2; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid #3A3A3A;  /* subtle solid separator */
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;  /* up from 0.8rem */
  color: #9E9089;  /* solid — 4.8:1 on #1E1E1E ✅ AA for normal text at this size */
}
.footer-bottom a { color: #9E9089; }
.footer-bottom a:hover { color: var(--gold-on-dark); }

/* ── Two-Col Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}
.two-col > * { min-width: 0; overflow: hidden; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.two-col p { color: var(--muted-text); margin-bottom: 16px; font-size: 0.95rem; }
/* Large script — decorative, not body text */
.signature-quote {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--dusty-rose); /* decorative large display ✅ */
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ── Location Pill ── */
.hero-location-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216,183,177,0.15);
  border: 1px solid rgba(216,183,177,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-body); /* explicit — prevents script font inheritance from .hero-eyebrow */
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory); /* 13.4:1 on charcoal ✅ */
  margin-bottom: 20px;
  position: relative;
}
.hero-location-accent::before { content: '📍'; font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 640px) {
  :root { --section-pad: 56px 10px; }
  .container { padding: 0 10px; }

  /* Typography */
  .section-title { font-size: 1.9rem; }
  .h2-section    { font-size: 1.7rem; }

  /* Header */
  .nav-logo  { font-size: 1.1rem; }
  .nav-inner { gap: 8px; }

  /* Grids — all single column */
  .card-grid,
  .blog-grid,
  .grid-col-200,
  .grid-col-220,
  .grid-col-240 { grid-template-columns: 1fr; }
  .card-grid--2col { grid-template-columns: 1fr; }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Hero */
  .hero { padding: 72px 10px 60px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  /* Cards */
  .card-lg { padding: 28px 16px; }

  /* Panels */
  .dark-panel { padding: 24px 10px; }

  /* CTA banner */
  .cta-banner { padding: 56px 10px; }
  .cta-banner .hero-actions { flex-direction: column; align-items: center; }
  .cta-banner .hero-actions .btn { width: 100%; max-width: 320px; }

  /* Breadcrumb */
  .breadcrumb { padding: 14px 10px; }

  /* Two col */
  .two-col { gap: 24px; }

  /* Stats */
  .stat-number { font-size: 2rem; }
  .stats-bar { padding: 40px 10px; }

  /* Venue / blog cards */
  .venue-card, .blog-card { margin-bottom: 0; }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .nav-toggle, .form-section { display: none; }
  body { background: white; color: black; }
  a { color: black; }
}

/* ============================================================
   UTILITY CLASSES — replaces all inline styles
   ============================================================ */

/* ── Layout Utilities ── */
.flex-col-16  { display: flex; flex-direction: column; gap: 16px; }
.flex-col-24  { display: flex; flex-direction: column; gap: 24px; }
.flex-row-14  { display: flex; gap: 14px; align-items: flex-start; }
.flex-row-16  { display: flex; gap: 16px; align-items: flex-start; }
.text-center  { text-align: center; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-40        { margin-top: 40px; }
.mb-16        { margin-bottom: 16px; }
.mb-20        { margin-bottom: 20px; }
.mb-24        { margin-bottom: 24px; }
.mb-32        { margin-bottom: 32px; }
.w-full       { width: 100%; }
.min-w-260    { min-width: 260px; max-width: 100%; }
.gap-48       { gap: 48px; }

/* ── Grid Overrides (card-grid column variants) ── */
.grid-col-200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-col-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-col-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ── Card Padding Variants ── */
.card-lg {
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.card-lg .feature-list { flex: 1; }
.card-lg .btn-block    { margin-top: auto; padding-top: 24px; padding-bottom: 24px; }

/* ── Dark Panel (used inside light sections for inline forms) ── */
.dark-panel {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 40px;
}
@media (max-width: 640px) {
  .dark-panel { padding: 24px 10px; }
}
.dark-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.dark-panel .form-hint {
  font-size: 0.85rem;
  color: #C8BFB8; /* solid — 7.4:1 on #2B2B2B ✅ */
  margin-bottom: 28px;
}

/* ── Placeholder Image Block ── */
.img-placeholder {
  background: var(--champagne);
  border: 1px solid var(--champagne-deep);
  border-radius: var(--radius);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder--tall { min-height: 420px; }
.img-placeholder__label {
  font-family: var(--font-script);
  font-size: 4rem;
  color: var(--champagne-deep);
}
.img-placeholder__label--lg { font-size: 5rem; }

/* ── Stat Number Block (credentials / trust pages) ── */
.stat-display {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-display--sm { font-size: 2.8rem; }

/* ── Section h2 variants ── */
.h2-section {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.h2-section--white { color: var(--white); }

/* ── FAQ Group Heading ── */
.faq-group-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--champagne-deep);
}
.faq-group-heading--first { margin-top: 0; }

/* ── Inline Card h3 variant (What to Expect, etc.) ── */
.h3-card {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.h3-card--lg { font-size: 1.5rem; margin-bottom: 8px; }

/* ── Info Row (icon + label + content) ── */
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-row__icon {
  font-size: 1.4rem;
  color: var(--gold-deep);
  min-width: 32px;
  flex-shrink: 0;
}
.info-row__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 4px;
}
.info-row__value {
  color: var(--charcoal);
  font-size: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ── Step Number Badge ── */
.step-badge {
  background: var(--gold-pale);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.step-content p {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin: 0;
}

/* ── Process Steps (consultation page) ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.steps-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* ── Info Box (light bg callout) ── */
.info-box {
  background: var(--champagne);
  border: 1px solid var(--champagne-deep);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 40px;
  overflow: hidden;
}
.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

/* ── Check List ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted-text);
  align-items: flex-start;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--gold-deep);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.check-list--centered {
  align-items: center;
}
.check-list--centered li {
  justify-content: center;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}

/* ── Service Feature List (cards with checkmarks) ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted-text);
  align-items: flex-start;
}
.feature-list li::before {
  content: '✓';
  color: var(--gold-deep);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── CTA block within a card (btn full-width) ── */
.btn-block { display: block; text-align: center; margin-top: 16px; white-space: nowrap; }
.btn-block--sm { font-size: 0.72rem; padding-left: 16px; padding-right: 16px; }

/* ── Body text utilities ── */
.text-muted  { color: var(--muted-text); }
.text-body   { color: var(--body-text); }
.text-white  { color: var(--white); }
.text-charcoal { color: var(--charcoal); }

/* ── Font size utilities ── */
.text-sm    { font-size: 0.88rem; }
.text-xs    { font-size: 0.8rem; }
.text-base  { font-size: 0.95rem; }

/* ── Card center text variant ── */
.card--center { text-align: center; }

/* ── Card link (removes default a styling, wraps entire card) ── */
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { color: inherit; }

/* ── Two-col heading used inside sections (not .two-col grid) ── */
.inline-two-col-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--charcoal);
}

/* ── Constrained prose block ── */
.prose-block { max-width: 760px; margin: 0 auto 48px; }

/* ── Small emoji icon (location/service cards) ── */
.card-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* ── Location card small title variant ── */
.card-title-sm {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}

/* ── Responsive two-col gap override ── */
.two-col--gap-48 { gap: 48px; }
@media (max-width: 768px) { .two-col--gap-48 { gap: 32px; } }

/* ── CTA text spacing ── */
.cta-note {
  color: var(--muted-text);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ── Centered action group ── */
.action-center { text-align: center; margin-top: 36px; }
.action-center--sm { text-align: center; margin-top: 16px; }

/* ── Contact info block ── */
.contact-info { display: flex; flex-direction: column; gap: 24px; }

/* ── Venue CTA small link ── */
.venue-cta-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
}

/* ── Venue Hub featured card overrides ── */
.venue-card--featured   { margin-bottom: 0; }
.venue-spacer           { height: 28px; }
.section-label--left    { text-align: left; margin-bottom: 6px; }

/* ── Blog Post Content ── */
.blog-content         { max-width: 820px; margin: 0 auto; }
.blog-post-meta       { text-align: center; margin-bottom: 40px; color: var(--gold-deep); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.blog-post-h2         { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; margin: 40px 0 16px; color: var(--charcoal); }
.blog-post-link       { display: inline-block; margin-bottom: 32px; }
.timeline-list        { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.timeline-list li     { display: flex; gap: 16px; font-size: 0.9rem; }
.timeline-list strong { min-width: 80px; color: var(--gold-deep); }

/* ── Blog post card h3 variants ── */
.card-h3-sm  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; color: var(--charcoal); }
.card-h3-md  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; color: var(--charcoal); }

/* ── Timeline list (wedding day schedule) ── */
.schedule-list      { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.schedule-list li   { display: flex; gap: 16px; font-size: 0.9rem; align-items: flex-start; }
.schedule-list .time { min-width: 80px; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }

/* ── Date list (wedding dates post) ── */
.date-list      { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.date-list li   { font-size: 0.9rem; }

/* ── Cost card small text ── */
.cost-meta { color: var(--gold-deep); font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; display: block; }

/* ── Blog post layout spacing ── */
.card--spaced       { margin: 24px 0 32px; }
.card--spaced-sm    { margin: 16px 0 32px; }
.card-grid--spaced  { margin: 24px 0 32px; }
.testimonial--spaced { margin: 40px 0; }
.ul-plain           { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ul-plain-sm        { list-style: none; display: flex; flex-direction: column; gap: 10px; }

/* ── Script blockquote — testimonial used inline without border/padding ── */
.testimonial--script { border-top: none; padding: 0; }

/* ── Reviews Carousel ── */
.carousel-section          { background: var(--ivory); padding: var(--section-pad); }
.carousel-wrap             { position: relative; overflow: hidden; }
.carousel-track            { display: flex; transition: transform 0.45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.carousel-slide            { min-width: 100%; box-sizing: border-box; padding: 0 12px; }
.carousel-card             { background: var(--white); border-radius: 12px; padding: 36px 40px; max-width: 780px; margin: 0 auto; box-shadow: 0 2px 24px rgba(43,43,43,.07); }
.carousel-stars            { color: var(--gold-deep); font-size: 1.25rem; letter-spacing: 2px; margin-bottom: 20px; }
.carousel-quote            { font-family: var(--font-script); font-style: italic; font-size: 1.25rem; font-weight: 300; line-height: 1.75; color: var(--charcoal); margin-bottom: 24px; }
.carousel-cite             { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.carousel-controls         { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.carousel-btn              { background: none; border: 2px solid var(--champagne); border-radius: 50%; width: 44px; height: 44px; cursor: pointer; font-size: 1.1rem; color: var(--charcoal); transition: background .2s, border-color .2s; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover        { background: var(--champagne); border-color: var(--gold); }
.carousel-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.carousel-dots             { display: flex; gap: 8px; }
.carousel-dot              { width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.carousel-dot.active       { background: var(--gold-deep); transform: scale(1.3); }
@media (max-width: 640px)  { .carousel-card { padding: 28px 10px; } .carousel-quote { font-size: 1.1rem; } }

/* ── Photo Gallery Grid ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.photo-gallery__item--wide { grid-column: span 2; }
.photo-gallery__item--tall { grid-row: span 2; }
.photo-gallery__item { min-height: 280px; }
.photo-gallery__item--natural { min-height: 0; height: auto; align-self: stretch; }
.photo-gallery__item--natural img { height: 100%; position: static; object-fit: cover; }

.photo-placeholder {
  width: 100%; height: 100%;
  background: var(--champagne);
  border: 2px dashed var(--dusty-rose);
  border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; cursor: default;
  transition: background .2s;
}
.photo-placeholder:hover       { background: var(--blush); }
.photo-placeholder--landscape  { aspect-ratio: 16/9; height: 100%; }
.photo-placeholder--tall       { height: 100%; }
.photo-placeholder__label      { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--charcoal); }
.photo-placeholder__sub        { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }

/* When real photos are swapped in */
.photo-gallery img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 8px;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.photo-gallery img:hover {
  transform: scale(1.02);
}

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 7, 0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  z-index: 9001;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: var(--radius);
  z-index: 9001;
  transition: background var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 640px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

@media (max-width: 768px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .photo-gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .photo-gallery__item--wide { grid-column: span 1; }
}

/* ── Pricing ── */
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--gold-deep);
  margin: 8px 0 4px;
  line-height: 1;
  display: block;
}

/* ── 2-column pricing grid ── */
.card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .card-grid--2col { grid-template-columns: 1fr; }
}

/* ── Bloom Bar: photo hero ── */
.hero--photo {
  background-image: url("/assets/images/bloom-bar-bouquet-hero.jpg");
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center 30%;
}
.hero--photo::before {
  background: linear-gradient(
    to bottom,
    rgba(30, 24, 22, 0.62) 0%,
    rgba(30, 24, 22, 0.55) 60%,
    rgba(30, 24, 22, 0.68) 100%
  );
  opacity: 1;
}
.hero--photo p {
  color: var(--white);
}
.hero--photo .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
}
.hero--photo .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* ── Bloom Bar: two-col image section ── */
.bloom-bar-two-col {
  align-items: stretch;
}
.bloom-bar-two-col > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.bloom-bar-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  line-height: 0;
  position: relative;
}
.bloom-bar-img-wrap::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.bloom-bar-img-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
@media (max-width: 768px) {
  .bloom-bar-img-wrap {
    border-radius: 10px;
    min-height: 300px;
  }
  .bloom-bar-img-wrap::after {
    padding-bottom: 70%;
  }
}

/* ── Bloom Bar: CTA banner subtitle constrained width ── */
.section-subtitle--constrained {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* ── Bloom Bar: hero-actions centered ── */
.hero-actions--centered {
  justify-content: center;
}

/* ── Services page: Bloom Bar pricing panel ── */
.bloom-bar-pricing-panel {
  background: var(--champagne);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  gap: 24px;
}
.bloom-bar-pricing-panel .pricing-starting-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  text-align: left;
  margin-bottom: 8px;
}
.bloom-bar-pricing-sub {
  font-size: 1rem;
  color: var(--muted-text);
}
.bloom-bar-divider {
  width: 100%;
  height: 1px;
  background: var(--champagne-deep);
}
/* ── Services page: Bloom Bar two-col layout ── */
.bloom-bar-services-col {
  align-items: stretch;
  gap: 48px;
}
.bloom-bar-services-col .feature-list {
  margin-bottom: 28px;
}

/* ── Vista West Ranch: photo hero ── */
.hero--vwr {
  background-image: url("/assets/images/vista-west-ranch-outdoor-reception-live-oaks.jpg");
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center 55%;
}
.hero--vwr::before {
  background: linear-gradient(
    to bottom,
    rgba(20, 16, 14, 0.72) 0%,
    rgba(20, 16, 14, 0.65) 50%,
    rgba(20, 16, 14, 0.80) 100%
  );
  opacity: 1;
}
.hero--vwr p {
  color: var(--white);
}
.hero--vwr .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
}
.hero--vwr .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* ── Vista West Ranch: two-col image wrapper ── */
.vwr-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  line-height: 0;
  position: relative;
}
.vwr-img-wrap::after {
  content: '';
  display: block;
  padding-bottom: 67%;
}
.vwr-img-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .vwr-img-wrap {
    border-radius: 10px;
  }
  .vwr-img-wrap::after {
    padding-bottom: 65%;
  }
}

/* ── Image focal point utilities ── */
.img-focus-top    { object-position: center 20%; }
.img-focus-center { object-position: center center; }
.img-focus-bottom { object-position: center 75%; }

/* ── The Creek Haus: photo hero ── */
.hero--tck {
  background-image: url("/assets/images/the-creek-haus-wedding-reception-interior-dripping-springs.webp");
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center center;
}
.hero--tck::before {
  background: linear-gradient(
    to bottom,
    rgba(20, 14, 10, 0.70) 0%,
    rgba(20, 14, 10, 0.60) 50%,
    rgba(20, 14, 10, 0.78) 100%
  );
  opacity: 1;
}
.hero--tck p {
  color: var(--white);
}
.hero--tck .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
}
.hero--tck .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* ── Wedding Photography page: photo hero ── */
.hero--photography {
  background-image: url("/assets/images/bride-groom-dock-sunset-water-wide-weddings-by-wendi.jpg");
  background-position: center center;
}
.hero--photography::before {
  background: linear-gradient(
    to bottom,
    rgba(20, 16, 14, 0.72) 0%,
    rgba(20, 16, 14, 0.65) 50%,
    rgba(20, 16, 14, 0.80) 100%
  );
  opacity: 1;
}

/* ── Wedding Planning page: photo hero ── */
.hero--wedding-planning {
  background-image: url("/assets/images/bride-groom-recessional-sunset-palm-trees-weddings-by-wendi.jpg");
  background-position: center 40%;
}

/* ── Day-Of Coordination page: photo hero ── */
.hero--day-of-coordination {
  background-image: url("/assets/images/bride-groom-dancing-dock-sunset-water-weddings-by-wendi.jpg");
  background-position: center 40%;
}

.hero--elopement {
  background-image: url("/assets/images/couple-engagement-cowboy-hat-texas-hill-country-weddings-by-wendi.jpg");
  background-position: center 40%;
}

